Home
last modified time | relevance | path

Searched refs:charCode (Results 1 – 25 of 35) sorted by relevance

12

/third_party/node/deps/v8/src/builtins/
Dstring-trim.tq16 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/
Dinternal.js117 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);
Ddbcs-codec.js203 var charCode = writeTable[curAddr - 1] + 1;
205 writeTable[curAddr++] = charCode++;
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
DBIG5Tool.java192 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()
DEUCTool.java192 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/typescript/src/compiler/
Dpath.ts18 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);
Dutilities.ts2325 export function isSingleOrDoubleQuote(charCode: number) {
2326 return charCode === CharacterCodes.singleQuote || charCode === CharacterCodes.doubleQuote;
4142 function encodeUtf16EscapeSequence(charCode: number): string {
4143 const hexCharCode = charCode.toString(16).toUpperCase();
4195 function encodeJsxCharacterEntity(charCode: number): string {
4196 const hexCharCode = charCode.toString(16).toUpperCase();
4227 function isQuoteOrBacktick(charCode: number) {
4228 return charCode === CharacterCodes.singleQuote ||
4229 charCode === CharacterCodes.doubleQuote ||
4230 charCode === CharacterCodes.backtick;
[all …]
Dsourcemap.ts213 function appendMappingCharCode(charCode: number) {
214 mappingCharCodes.push(charCode);
/third_party/node/deps/undici/src/lib/cookies/
Dparse.js186 const charCode = attributeValue.charCodeAt(0)
188 if ((charCode < 48 || charCode > 57) && attributeValue[0] !== '-') {
/third_party/protobuf/js/experimental/runtime/kernel/
Dtextencoding_test.js53 static fromCharCode(charCode) { argument
54 return Pair.fromString(String.fromCharCode(charCode));
/third_party/skia/tools/fonts/
DTestTypeface.cpp48 SkGlyphID SkTestFont::glyphForUnichar(SkUnichar charCode) const { in glyphForUnichar()
50 if (fCharCodes[index] == charCode) { in glyphForUnichar()
DTestTypeface.h51 SkGlyphID glyphForUnichar(SkUnichar charCode) const;
/third_party/node/test/parallel/
Dtest-util-inspect.js861 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/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/
Dlunr.js3060 var char, charCode
3064 charCode = char.charCodeAt(0)
3065 } while (charCode > 47 && charCode < 58)
/third_party/skia/src/ports/
DSkFontHost_FreeType.cpp511 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/node/lib/internal/util/
Dinspect.js489 const charCode = StringPrototypeCharCodeAt(str);
490 return meta.length > charCode ? meta[charCode] : `\\u${NumberPrototypeToString(charCode, 16)}`;
/third_party/typescript/src/services/
DtextChanges.ts1409 const charCode = text.charCodeAt(position); constant
1410 if (isLineBreak(charCode)) {
1413 …if (position < text.length && charCode === CharacterCodes.carriageReturn && text.charCodeAt(positi…
Dcompletions.ts4606 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/
Dttcmap.c3373 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/
DfourslashImpl.ts2001 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/
DparserRealSource11.ts167 var charCode = parseInt(name.substr(i + 2, 4), 16);
169 resolved += String.fromCharCode(charCode);
/third_party/typescript/tests/baselines/reference/
DparserRealSource11.js168 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);
DparserRealSource11.types733 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/
Dreact.d.ts310 charCode: number; property
Dreact16.d.ts708 charCode: number;

12