/third_party/node/deps/v8/src/builtins/ |
D | string-trim.tq | 16 macro IsWhiteSpaceOrLineTerminator(charCode: char16|char8): bool { 18 if (charCode == 0x0020) { 23 if (Unsigned(Convert<int32>(charCode) - 0x000E) < 0x0092) { 28 if (charCode < 0x0009) { 35 if (charCode <= 0x000D) { 40 if (charCode == 0x00A0) { 45 if (charCode == 0x1680) { 50 if (charCode < 0x2000) { 63 if (charCode <= 0x200A) { 68 if (charCode == 0x2028) { [all …]
|
/third_party/node/deps/npm/node_modules/iconv-lite/encodings/ |
D | internal.js | 117 var charCode = str.charCodeAt(i); 120 if (charCode < 0x80) 121 buf[bufIdx++] = charCode; 122 else if (charCode < 0x800) { 123 buf[bufIdx++] = 0xC0 + (charCode >>> 6); 124 buf[bufIdx++] = 0x80 + (charCode & 0x3f); 127 buf[bufIdx++] = 0xE0 + (charCode >>> 12); 128 buf[bufIdx++] = 0x80 + ((charCode >>> 6) & 0x3f); 129 buf[bufIdx++] = 0x80 + (charCode & 0x3f);
|
D | dbcs-codec.js | 203 var charCode = writeTable[curAddr - 1] + 1; 205 writeTable[curAddr++] = charCode++;
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/ |
D | BIG5Tool.java | 192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " in processDir() 209 charList.add(new Integer(c.charCode)); in processDir() 238 int charCode; field in BIG5Tool.ChEl 242 charCode = c; in ChEl() 250 return o.charCode == this.charCode; in equals() 256 return charCode; in hashCode()
|
D | EUCTool.java | 192 System.out.println(i + " " + Integer.toHexString(c.charCode) + " " in processDir() 209 charList.add(new Integer(c.charCode)); in processDir() 238 int charCode; field in EUCTool.ChEl 242 charCode = c; in ChEl() 250 return o.charCode == this.charCode; in equals() 256 return charCode; in hashCode()
|
/third_party/node/deps/undici/src/lib/cookies/ |
D | parse.js | 186 const charCode = attributeValue.charCodeAt(0) 188 if ((charCode < 48 || charCode > 57) && attributeValue[0] !== '-') {
|
/third_party/typescript/src/compiler/ |
D | path.ts | 18 export function isAnyDirectorySeparator(charCode: number): boolean { 19 return charCode === CharacterCodes.slash || charCode === CharacterCodes.backslash; 106 function isVolumeCharacter(charCode: number) { 107 return (charCode >= CharacterCodes.a && charCode <= CharacterCodes.z) || 108 (charCode >= CharacterCodes.A && charCode <= CharacterCodes.Z);
|
D | utilities.ts | 2325 export function isSingleOrDoubleQuote(charCode: number) { 2326 return charCode === CharacterCodes.singleQuote || charCode === CharacterCodes.doubleQuote; 4132 function encodeUtf16EscapeSequence(charCode: number): string { 4133 const hexCharCode = charCode.toString(16).toUpperCase(); 4185 function encodeJsxCharacterEntity(charCode: number): string { 4186 const hexCharCode = charCode.toString(16).toUpperCase(); 4217 function isQuoteOrBacktick(charCode: number) { 4218 return charCode === CharacterCodes.singleQuote || 4219 charCode === CharacterCodes.doubleQuote || 4220 charCode === CharacterCodes.backtick; [all …]
|
D | sourcemap.ts | 213 function appendMappingCharCode(charCode: number) { 214 mappingCharCodes.push(charCode);
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
D | textencoding_test.js | 53 static fromCharCode(charCode) { argument 54 return Pair.fromString(String.fromCharCode(charCode));
|
/third_party/skia/tools/fonts/ |
D | TestTypeface.cpp | 48 SkGlyphID SkTestFont::glyphForUnichar(SkUnichar charCode) const { in glyphForUnichar() 50 if (fCharCodes[index] == charCode) { in glyphForUnichar()
|
D | TestTypeface.h | 51 SkGlyphID glyphForUnichar(SkUnichar charCode) const;
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | webidl.js | 430 const charCode = x.charCodeAt(index) 432 if (charCode > 255) { 435 `index ${index} has a value of ${charCode} which is greater than 255.`
|
/third_party/node/test/parallel/ |
D | test-util-inspect.js | 861 for (let charCode = 0xD800; charCode < 0xDFFF; charCode++) { 862 const surrogate = String.fromCharCode(charCode); 866 `'\\u${charCode.toString(16)}'` 870 `'${'a'.repeat(200)}\\u${charCode.toString(16)}'` 874 `'\\u${charCode.toString(16)}${'a'.repeat(200)}'` 876 if (charCode < 0xdc00) { 878 const lowSurrogate = String.fromCharCode(charCode + 1024); 893 `'${edgeChar}\\u${charCode.toString(16)}${edgeChar}'`
|
/third_party/skia/src/ports/ |
D | SkFontHost_FreeType.cpp | 511 SkUnichar charCode = FT_Get_First_Char(face, &glyphIndex); in getGlyphToUnicodeMap() local 516 dstArray[glyphIndex] = charCode; in getGlyphToUnicodeMap() 518 charCode = FT_Get_Next_Char(face, charCode, &glyphIndex); in getGlyphToUnicodeMap()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/ |
D | lunr.js | 3060 var char, charCode 3064 charCode = char.charCodeAt(0) 3065 } while (charCode > 47 && charCode < 58)
|
/third_party/node/lib/internal/util/ |
D | inspect.js | 489 const charCode = StringPrototypeCharCodeAt(str); 490 return meta.length > charCode ? meta[charCode] : `\\u${NumberPrototypeToString(charCode, 16)}`;
|
/third_party/typescript/src/services/ |
D | textChanges.ts | 1409 const charCode = text.charCodeAt(position); constant 1410 if (isLineBreak(charCode)) { 1413 …if (position < text.length && charCode === CharacterCodes.carriageReturn && text.charCodeAt(positi…
|
D | completions.ts | 4606 function toUpperCharCode(charCode: number) { 4607 if (CharacterCodes.a <= charCode && charCode <= CharacterCodes.z) { 4608 return charCode - 32; 4610 return charCode;
|
/third_party/skia/third_party/externals/freetype/src/sfnt/ |
D | ttcmap.c | 3373 FT_UInt32 charCode ) in tt_cmap14_char_variants() argument 3393 charCode ) ) || in tt_cmap14_char_variants() 3396 charCode ) != 0 ) ) in tt_cmap14_char_variants()
|
/third_party/typescript/src/harness/ |
D | fourslashImpl.ts | 2001 const charCode = char.charCodeAt(0); 2003 return char === " " ? "•" : ts.isLineBreak(charCode) ? `↲${n}` : char; 2005 return ts.isLineBreak(charCode) ? char : " "; 3176 const charCode = openBraceMap.get(openingBrace); constant 3178 if (!charCode) { 3184 …his.languageService.isValidBraceCompletionAtPosition(this.activeFile.fileName, position, charCode);
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ |
D | parserRealSource11.ts | 167 var charCode = parseInt(name.substr(i + 2, 4), 16); 169 resolved += String.fromCharCode(charCode);
|
/third_party/typescript/tests/baselines/reference/ |
D | parserRealSource11.js | 168 var charCode = parseInt(name.substr(i + 2, 4), 16); variable 170 resolved += String.fromCharCode(charCode); 2537 var charCode = parseInt(name.substr(i + 2, 4), 16); 2539 resolved += String.fromCharCode(charCode);
|
D | parserRealSource11.types | 733 var charCode = parseInt(name.substr(i + 2, 4), 16); 734 >charCode : number 759 resolved += String.fromCharCode(charCode); 760 >resolved += String.fromCharCode(charCode) : string 762 >String.fromCharCode(charCode) : string 766 >charCode : number
|
/third_party/typescript/tests/lib/ |
D | react.d.ts | 310 charCode: number; property
|