[ Index ] |
PHP Cross Reference of MediaWiki-1.24.0 |
[Summary view] [Print] [Text view]
1 <?php 2 /************************************************************************************* 3 * cpp.php 4 * ------- 5 * Author: Dennis Bayer ([email protected]) 6 * Contributors: 7 * - M. Uli Kusterer ([email protected]) 8 * - Jack Lloyd ([email protected]) 9 * Copyright: (c) 2004 Dennis Bayer, Nigel McNie (http://qbnz.com/highlighter) 10 * Release Version: 1.0.8.11 11 * Date Started: 2004/09/27 12 * 13 * C++ language file for GeSHi. 14 * 15 * CHANGES 16 * ------- 17 * 2008/05/23 (1.0.7.22) 18 * - Added description of extra language features (SF#1970248) 19 * 2004/XX/XX (1.0.2) 20 * - Added several new keywords (Jack Lloyd) 21 * 2004/11/27 (1.0.1) 22 * - Added StdCLib function and constant names, changed color scheme to 23 * a cleaner one. (M. Uli Kusterer) 24 * - Added support for multiple object splitters 25 * 2004/10/27 (1.0.0) 26 * - First Release 27 * 28 * TODO (updated 2004/11/27) 29 * ------------------------- 30 * 31 ************************************************************************************* 32 * 33 * This file is part of GeSHi. 34 * 35 * GeSHi is free software; you can redistribute it and/or modify 36 * it under the terms of the GNU General Public License as published by 37 * the Free Software Foundation; either version 2 of the License, or 38 * (at your option) any later version. 39 * 40 * GeSHi is distributed in the hope that it will be useful, 41 * but WITHOUT ANY WARRANTY; without even the implied warranty of 42 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 43 * GNU General Public License for more details. 44 * 45 * You should have received a copy of the GNU General Public License 46 * along with GeSHi; if not, write to the Free Software 47 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 48 * 49 ************************************************************************************/ 50 51 $language_data = array ( 52 'LANG_NAME' => 'C++', 53 'COMMENT_SINGLE' => array(1 => '//', 2 => '#'), 54 'COMMENT_MULTI' => array('/*' => '*/'), 55 'COMMENT_REGEXP' => array( 56 //Multiline-continued single-line comments 57 1 => '/\/\/(?:\\\\\\\\|\\\\\\n|.)*$/m', 58 //Multiline-continued preprocessor define 59 2 => '/#(?:\\\\\\\\|\\\\\\n|.)*$/m' 60 ), 61 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, 62 'QUOTEMARKS' => array("'", '"'), 63 'ESCAPE_CHAR' => '', 64 'ESCAPE_REGEXP' => array( 65 //Simple Single Char Escapes 66 1 => "#\\\\[abfnrtv\\\'\"?\n]#i", 67 //Hexadecimal Char Specs 68 2 => "#\\\\x[\da-fA-F]{2}#", 69 //Hexadecimal Char Specs 70 3 => "#\\\\u[\da-fA-F]{4}#", 71 //Hexadecimal Char Specs 72 4 => "#\\\\U[\da-fA-F]{8}#", 73 //Octal Char Specs 74 5 => "#\\\\[0-7]{1,3}#" 75 ), 76 'NUMBERS' => 77 GESHI_NUMBER_INT_BASIC | GESHI_NUMBER_INT_CSTYLE | GESHI_NUMBER_BIN_PREFIX_0B | 78 GESHI_NUMBER_OCT_PREFIX | GESHI_NUMBER_HEX_PREFIX | GESHI_NUMBER_FLT_NONSCI | 79 GESHI_NUMBER_FLT_NONSCI_F | GESHI_NUMBER_FLT_SCI_SHORT | GESHI_NUMBER_FLT_SCI_ZERO, 80 'KEYWORDS' => array( 81 1 => array( 82 'break', 'case', 'continue', 'default', 'do', 'else', 'for', 'goto', 'if', 'return', 83 'switch', 'throw', 'while' 84 ), 85 2 => array( 86 'NULL', 'false', 'true', 'enum', 'errno', 'EDOM', 87 'ERANGE', 'FLT_RADIX', 'FLT_ROUNDS', 'FLT_DIG', 'DBL_DIG', 'LDBL_DIG', 88 'FLT_EPSILON', 'DBL_EPSILON', 'LDBL_EPSILON', 'FLT_MANT_DIG', 'DBL_MANT_DIG', 89 'LDBL_MANT_DIG', 'FLT_MAX', 'DBL_MAX', 'LDBL_MAX', 'FLT_MAX_EXP', 'DBL_MAX_EXP', 90 'LDBL_MAX_EXP', 'FLT_MIN', 'DBL_MIN', 'LDBL_MIN', 'FLT_MIN_EXP', 'DBL_MIN_EXP', 91 'LDBL_MIN_EXP', 'CHAR_BIT', 'CHAR_MAX', 'CHAR_MIN', 'SCHAR_MAX', 'SCHAR_MIN', 92 'UCHAR_MAX', 'SHRT_MAX', 'SHRT_MIN', 'USHRT_MAX', 'INT_MAX', 'INT_MIN', 93 'UINT_MAX', 'LONG_MAX', 'LONG_MIN', 'ULONG_MAX', 'HUGE_VAL', 'SIGABRT', 94 'SIGFPE', 'SIGILL', 'SIGINT', 'SIGSEGV', 'SIGTERM', 'SIG_DFL', 'SIG_ERR', 95 'SIG_IGN', 'BUFSIZ', 'EOF', 'FILENAME_MAX', 'FOPEN_MAX', 'L_tmpnam', 96 'SEEK_CUR', 'SEEK_END', 'SEEK_SET', 'TMP_MAX', 'stdin', 'stdout', 'stderr', 97 'EXIT_FAILURE', 'EXIT_SUCCESS', 'RAND_MAX', 'CLOCKS_PER_SEC', 98 'virtual', 'public', 'private', 'protected', 'template', 'using', 'namespace', 99 'try', 'catch', 'inline', 'dynamic_cast', 'const_cast', 'reinterpret_cast', 100 'static_cast', 'explicit', 'friend', 'typename', 'typeid', 'class' 101 ), 102 3 => array( 103 'cin', 'cerr', 'clog', 'cout', 'delete', 'new', 'this', 104 'printf', 'fprintf', 'snprintf', 'sprintf', 'assert', 105 'isalnum', 'isalpha', 'isdigit', 'iscntrl', 'isgraph', 'islower', 'isprint', 106 'ispunct', 'isspace', 'isupper', 'isxdigit', 'tolower', 'toupper', 107 'exp', 'log', 'log10', 'pow', 'sqrt', 'ceil', 'floor', 'fabs', 'ldexp', 108 'frexp', 'modf', 'fmod', 'sin', 'cos', 'tan', 'asin', 'acos', 'atan', 'atan2', 109 'sinh', 'cosh', 'tanh', 'setjmp', 'longjmp', 110 'va_start', 'va_arg', 'va_end', 'offsetof', 'sizeof', 'fopen', 'freopen', 111 'fflush', 'fclose', 'remove', 'rename', 'tmpfile', 'tmpname', 'setvbuf', 112 'setbuf', 'vfprintf', 'vprintf', 'vsprintf', 'fscanf', 'scanf', 'sscanf', 113 'fgetc', 'fgets', 'fputc', 'fputs', 'getc', 'getchar', 'gets', 'putc', 114 'putchar', 'puts', 'ungetc', 'fread', 'fwrite', 'fseek', 'ftell', 'rewind', 115 'fgetpos', 'fsetpos', 'clearerr', 'feof', 'ferror', 'perror', 'abs', 'labs', 116 'div', 'ldiv', 'atof', 'atoi', 'atol', 'strtod', 'strtol', 'strtoul', 'calloc', 117 'malloc', 'realloc', 'free', 'abort', 'exit', 'atexit', 'system', 'getenv', 118 'bsearch', 'qsort', 'rand', 'srand', 'strcpy', 'strncpy', 'strcat', 'strncat', 119 'strcmp', 'strncmp', 'strcoll', 'strchr', 'strrchr', 'strspn', 'strcspn', 120 'strpbrk', 'strstr', 'strlen', 'strerror', 'strtok', 'strxfrm', 'memcpy', 121 'memmove', 'memcmp', 'memchr', 'memset', 'clock', 'time', 'difftime', 'mktime', 122 'asctime', 'ctime', 'gmtime', 'localtime', 'strftime' 123 ), 124 4 => array( 125 'auto', 'bool', 'char', 'const', 'double', 'float', 'int', 'long', 'longint', 126 'register', 'short', 'shortint', 'signed', 'static', 'struct', 127 'typedef', 'union', 'unsigned', 'void', 'volatile', 'extern', 'jmp_buf', 128 'signal', 'raise', 'va_list', 'ptrdiff_t', 'size_t', 'FILE', 'fpos_t', 129 'div_t', 'ldiv_t', 'clock_t', 'time_t', 'tm', 'wchar_t', 130 131 'int8', 'int16', 'int32', 'int64', 132 'uint8', 'uint16', 'uint32', 'uint64', 133 134 'int_fast8_t', 'int_fast16_t', 'int_fast32_t', 'int_fast64_t', 135 'uint_fast8_t', 'uint_fast16_t', 'uint_fast32_t', 'uint_fast64_t', 136 137 'int_least8_t', 'int_least16_t', 'int_least32_t', 'int_least64_t', 138 'uint_least8_t', 'uint_least16_t', 'uint_least32_t', 'uint_least64_t', 139 140 'int8_t', 'int16_t', 'int32_t', 'int64_t', 141 'uint8_t', 'uint16_t', 'uint32_t', 'uint64_t', 142 143 'intmax_t', 'uintmax_t', 'intptr_t', 'uintptr_t' 144 ), 145 ), 146 'SYMBOLS' => array( 147 0 => array('(', ')', '{', '}', '[', ']'), 148 1 => array('<', '>','='), 149 2 => array('+', '-', '*', '/', '%'), 150 3 => array('!', '^', '&', '|'), 151 4 => array('?', ':', ';') 152 ), 153 'CASE_SENSITIVE' => array( 154 GESHI_COMMENTS => false, 155 1 => true, 156 2 => true, 157 3 => true, 158 4 => true, 159 ), 160 'STYLES' => array( 161 'KEYWORDS' => array( 162 1 => 'color: #0000ff;', 163 2 => 'color: #0000ff;', 164 3 => 'color: #0000dd;', 165 4 => 'color: #0000ff;' 166 ), 167 'COMMENTS' => array( 168 1 => 'color: #666666;', 169 2 => 'color: #339900;', 170 'MULTI' => 'color: #ff0000; font-style: italic;' 171 ), 172 'ESCAPE_CHAR' => array( 173 0 => 'color: #000099; font-weight: bold;', 174 1 => 'color: #000099; font-weight: bold;', 175 2 => 'color: #660099; font-weight: bold;', 176 3 => 'color: #660099; font-weight: bold;', 177 4 => 'color: #660099; font-weight: bold;', 178 5 => 'color: #006699; font-weight: bold;', 179 'HARD' => '', 180 ), 181 'BRACKETS' => array( 182 0 => 'color: #008000;' 183 ), 184 'STRINGS' => array( 185 0 => 'color: #FF0000;' 186 ), 187 'NUMBERS' => array( 188 0 => 'color: #0000dd;', 189 GESHI_NUMBER_BIN_PREFIX_0B => 'color: #208080;', 190 GESHI_NUMBER_OCT_PREFIX => 'color: #208080;', 191 GESHI_NUMBER_HEX_PREFIX => 'color: #208080;', 192 GESHI_NUMBER_FLT_SCI_SHORT => 'color:#800080;', 193 GESHI_NUMBER_FLT_SCI_ZERO => 'color:#800080;', 194 GESHI_NUMBER_FLT_NONSCI_F => 'color:#800080;', 195 GESHI_NUMBER_FLT_NONSCI => 'color:#800080;' 196 ), 197 'METHODS' => array( 198 1 => 'color: #007788;', 199 2 => 'color: #007788;' 200 ), 201 'SYMBOLS' => array( 202 0 => 'color: #008000;', 203 1 => 'color: #000080;', 204 2 => 'color: #000040;', 205 3 => 'color: #000040;', 206 4 => 'color: #008080;' 207 ), 208 'REGEXPS' => array( 209 ), 210 'SCRIPT' => array( 211 ) 212 ), 213 'URLS' => array( 214 1 => '', 215 2 => '', 216 3 => '', 217 4 => '' 218 ), 219 'OOLANG' => true, 220 'OBJECT_SPLITTERS' => array( 221 1 => '.', 222 2 => '::' 223 ), 224 'REGEXPS' => array( 225 ), 226 'STRICT_MODE_APPLIES' => GESHI_NEVER, 227 'SCRIPT_DELIMITERS' => array( 228 ), 229 'HIGHLIGHT_STRICT_BLOCK' => array( 230 ), 231 'TAB_WIDTH' => 4, 232 'PARSER_CONTROL' => array( 233 'KEYWORDS' => array( 234 'DISALLOWED_BEFORE' => "(?<![a-zA-Z0-9\$_\|\#])", 235 'DISALLOWED_AFTER' => "(?![a-zA-Z0-9_\|%\\-])" 236 ) 237 ) 238 ); 239 240 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Nov 28 14:03:12 2014 | Cross-referenced by PHPXref 0.7.1 |