/external/chromium_org/third_party/WebKit/Source/core/svg/ |
SVGFontData.cpp | 112 // Estimate average character width. 116 // Estimate maximum character width. 273 // Each character here consists of a surrogate pair 311 UChar32 character; local 312 U16_NEXT(characters, i, length, character); 313 mirroredCharacters.append(mirroredChar(character));
|
/external/bison/src/ |
parse-gram.h | 188 unsigned char character; member in union:GRAM_STYPE
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
AtomicString.h | 119 bool startsWith(UChar character) const 120 { return m_string.startsWith(character); } 127 bool endsWith(UChar character) const 128 { return m_string.endsWith(character); }
|
/external/chromium_org/third_party/icu/source/i18n/ |
regexcst.pl | 81 # character [n] target-state [^push-state] [function-name] 84 # character is either a single quoted character e.g. '[' 85 # or a name of a character class, e.g. white_space 91 # First field, character class or literal character for this transition. 94 # We've got a quoted literal character. 98 # We've got the name of a character class. 101 print " rbbicsts: at line $line_num, bad character literal or character class name.\n" [all...] |
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-latin-1.js | 62 // Latin-1 whitespace character 68 // Latin-1 character that uppercases out of Latin-1.
|
regress-2570.js | 29 "\u00e6"]; // Latin-1 character.
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
CCombo3.java | 204 } else if (event.character == SWT.CR || event.character == ' ') { 278 e.character = event.character;
|
/external/icu4c/i18n/ |
regexcst.pl | 81 # character [n] target-state [^push-state] [function-name] 84 # character is either a single quoted character e.g. '[' 85 # or a name of a character class, e.g. white_space 91 # First field, character class or literal character for this transition. 94 # We've got a quoted literal character. 98 # We've got the name of a character class. 101 print " rbbicsts: at line $line_num, bad character literal or character class name.\n" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/ |
__init__.py | 95 getbaseclasses(character) 254 getbaseclasses(character) 290 'cha ' : character, 449 'cha ' : character,
|
/external/chromium_org/content/common/ |
child_process_sandbox_support_impl_linux.cc | 22 void GetFontFamilyForCharacter(int32_t character, 29 request.WriteInt(character);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
htmlediting.h | 245 inline bool isAmbiguousBoundaryCharacter(UChar character) 248 // If they are just typed, i.e. if they are immediately followed by a caret, we want to delay text checking until the next character has been typed. 250 return character == '\'' || character == rightSingleQuotationMark || character == hebrewPunctuationGershayim;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderFileUploadControl.cpp | 152 // (using "0" as the nominal character). 153 const UChar character = '0'; local 154 const String characterAsString = String(&character, 1);
|
/external/chromium_org/third_party/re2/doc/ |
mksyntaxgo | 8 /^Unicode character class/,$d
|
/external/regex-re2/doc/ |
mksyntaxgo | 8 /^Unicode character class/,$d
|
/external/v8/preparser/ |
preparser-process.cc | 88 fprintf(stderr, "Non-ASCII character in input: '%c'.", next_char); 143 int character = word(text_pos + i); local 144 buffer[i - 1] = character;
|
/external/chromium_org/v8/test/mjsunit/ |
regexp.js | 45 re = /^./gm; // any non-newline character at the beginning of a line 55 re = /.$/gm; // any non-newline character at the end of a line 65 re = /^[^]/gm; // *any* character at the beginning of a line 76 re = /[^]$/gm; // *any* character at the end of a line 96 // Test \c in character class 110 re = /^[\c1]$/; // Digit control characters are masked in character classes. 116 re = /^[\c_]$/; // Underscore control character is masked in character classes. 142 // character classes. 262 // Test that empty matches advance one character [all...] |
/external/v8/test/mjsunit/ |
regexp.js | 45 re = /^./gm; // any non-newline character at the beginning of a line 55 re = /.$/gm; // any non-newline character at the end of a line 65 re = /^[^]/gm; // *any* character at the beginning of a line 76 re = /[^]$/gm; // *any* character at the end of a line 96 // Test \c in character class 110 re = /^[\c1]$/; // Digit control characters are masked in character classes. 116 re = /^[\c_]$/; // Underscore control character is masked in character classes. 142 // character classes. 262 // Test that empty matches advance one character [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/ |
FusionDictionary.java | 375 final int[] codePoints = new int[Character.codePointCount(characters, 0, length)]; 376 int codePoint = Character.codePointAt(characters, 0); 378 for (int srci = Character.charCount(codePoint); 379 srci < length; srci += Character.charCount(codePoint), ++dsti) { 381 codePoint = Character.codePointAt(characters, srci); 573 * Custom comparison of two int arrays taken to contain character codes. 577 * This method does NOT test for the first character. It is taken to be equal. 580 * strings are equal. This works BECAUSE we don't look at the first character. 614 * Finds the insertion index of a character within a node array. 616 private static int findInsertionIndex(final PtNodeArray nodeArray, int character) { [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 456 character you write it as '%' + <2 character US-ASCII hex value>. The Python 457 code of ``'%' + hex(ord(<character>))[2:]`` escapes a character properly. 460 The various character sets specified are: [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_urllib.py | 456 character you write it as '%' + <2 character US-ASCII hex value>. The Python 457 code of ``'%' + hex(ord(<character>))[2:]`` escapes a character properly. 460 The various character sets specified are: [all...] |
/external/chromium_org/chrome_frame/test/ |
ie_event_sink.cc | 324 char character = codes[i]; local 327 if (character >= 'a' && character <= 'z') { 329 virtual_key = 'A' + (character - 'a'); 330 } else if (character >= '0' && character <= '9') { 332 virtual_key = character; 334 FAIL() << "Character value out of range at position " << i 340 << virtual_key << " for character at position "
|
/external/icu4c/test/cintltst/ |
cbiapts.c | 144 UBreakIterator *word, *sentence, *line, *character, *b, *bogus; local 191 character = ubrk_open(UBRK_CHARACTER, "en_US", text, u_strlen(text), &status); 193 log_err("FAIL: Error in ubrk_open() for character breakiterator: %s\n", myErrorName(status)); 197 log_verbose("PASS: Successfully opened character breakiterator\n"); 271 log_verbose("\nTesting the functions for character\n"); 272 ubrk_first(character); 273 pos = ubrk_following(character, 5); 275 log_err("error ubrk_following(character,5) did not return 6\n"); 276 log_verbose("Following (character,5) = %d\n", (int32_t)pos); 277 pos=ubrk_following(character, 18) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
jsunittest.js | 23 var character = String.specialChar[match[0]]; 24 return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16); [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/ |
keyboard_overlay.js | 161 * Converts a single hex number to a character. 284 * Returns true if a character is a ASCII character. 285 * @param {string} c A character to be checked. 286 * @return {boolean} True if the character is an ASCII character.
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/ |
jsunittest.js | 23 var character = String.specialChar[match[0]]; 24 return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16); [all...] |