Home
last modified time | relevance | path

Searched refs:isIdentifierChar (Results 1 – 11 of 11) sorted by relevance

/third_party/vk-gl-cts/framework/randomshaders/
DrsgPrettyPrinter.cpp135 inline bool isIdentifierChar (char c) in isIdentifierChar() function
142 bool prevIsIdentifierChar = m_line.length() > 0 && isIdentifierChar(m_line[m_line.length()-1]); in processToken()
190 if (prevIsIdentifierChar && isIdentifierChar(tokenStr[0])) in processToken()
/third_party/vk-gl-cts/framework/opengl/
DgluVarTypeUtil.cpp49 static inline bool isIdentifierChar (char c) { return isAlpha(c) || isNum(c) || c == '_'; } in isIdentifierChar() function
73 else if (isIdentifierChar(m_str[m_tokenStart])) in advance()
76 while (isIdentifierChar(m_str[m_tokenStart+m_tokenLen])) in advance()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp109 static bool isIdentifierChar(char C) { in isIdentifierChar() function
174 while (isIdentifierChar(C.peek())) in lexName()
265 while (isIdentifierChar(C.peek())) in maybeLexIdentifier()
297 while (isIdentifierChar(C.peek())) in maybeLexMachineBasicBlock()
335 while (isIdentifierChar(C.peek())) in maybeLexIndexAndName()
410 return isIdentifierChar(C) && C != '.'; in isRegisterChar()
483 while (isIdentifierChar(C.peek())) in maybeLexMCSymbol()
593 if (isdigit(C.peek()) || !isIdentifierChar(C.peek())) { in maybeLexExclaim()
597 while (isIdentifierChar(C.peek())) in maybeLexExclaim()
/third_party/vk-gl-cts/framework/xexml/
DxeXMLParser.cpp42 static inline bool isIdentifierChar (int ch) in isIdentifierChar() function
220 if (!isIdentifierChar(curChar)) in advance()
/third_party/node/deps/acorn/acorn/dist/
Dacorn.d.ts180 function isIdentifierChar(code: number, astral?: boolean): boolean
Dacorn.js83 function isIdentifierChar(code, astral) { function
827 while (isIdentifierChar(nextCh = this.input.charCodeAt(pos), true)) { ++pos; }
848 … !(isIdentifierChar(after = this.input.charCodeAt(next + 8)) || after > 0xd7ff && after < 0xdc00))
4107 …return isIdentifierChar(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ || ch === 0x200C /…
5414 if (isIdentifierChar(ch, astral)) {
5424 if (!(first ? isIdentifierStart : isIdentifierChar)(esc, astral))
5465 isIdentifierChar: isIdentifierChar, property
5509 exports.isIdentifierChar = isIdentifierChar;
Dacorn.mjs77 function isIdentifierChar(code, astral) { function
821 while (isIdentifierChar(nextCh = this.input.charCodeAt(pos), true)) { ++pos; }
842 … !(isIdentifierChar(after = this.input.charCodeAt(next + 8)) || after > 0xd7ff && after < 0xdc00))
4101 …return isIdentifierChar(ch, true) || ch === 0x24 /* $ */ || ch === 0x5F /* _ */ || ch === 0x200C /…
5408 if (isIdentifierChar(ch, astral)) {
5418 if (!(first ? isIdentifierStart : isIdentifierChar)(esc, astral))
5459 isIdentifierChar: isIdentifierChar, property
5494 …ocation, TokContext, Token, TokenType, defaultOptions, getLineInfo, isIdentifierChar, isIdentifier…
/third_party/node/deps/cjs-module-lexer/
Dlexer.js264 if (!isIdentifierChar(codePoint, true))
1107 function isIdentifierChar(code, astral) { function
1125 if (isIdentifierChar(ch, true)) {
/third_party/node/lib/
Drepl.js109 isIdentifierChar
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DAsmParser.cpp2383 static bool isIdentifierChar(char c) { in isIdentifierChar() function
2460 while (isIdentifierChar(Body[I]) && I + 1 != End) in expandMacro()
4554 while (isIdentifierChar(Body[I]) && I + 1 != End) in checkForBadMacro()
/third_party/node/tools/
Dlint-md.mjs12836 identifier.isIdentifierChar = isIdentifierChar;
12872 function isIdentifierChar(code) { function
12907 } else if (!isIdentifierChar(cp)) {
12965 Object.defineProperty(exports, "isIdentifierChar", {
12968 return _identifier.isIdentifierChar;