Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp118 static bool isIdentifierChar(char C) { in isIdentifierChar() function
183 while (isIdentifierChar(C.peek())) in lexName()
300 while (isIdentifierChar(C.peek())) in maybeLexIdentifier()
332 while (isIdentifierChar(C.peek())) in maybeLexMachineBasicBlock()
370 while (isIdentifierChar(C.peek())) in maybeLexIndexAndName()
445 return isIdentifierChar(C) && C != '.'; in isRegisterChar()
518 while (isIdentifierChar(C.peek())) in maybeLexMCSymbol()
628 if (isdigit(C.peek()) || !isIdentifierChar(C.peek())) { in maybeLexExclaim()
632 while (isIdentifierChar(C.peek())) in maybeLexExclaim()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp228 static bool isIdentifierChar(char C, bool AllowAt, bool AllowHash) { in isIdentifierChar() function
240 if (!isIdentifierChar(*CurPtr, AllowAtInIdentifier, in LexIdentifier()
246 while (isIdentifierChar(*CurPtr, AllowAtInIdentifier, AllowHashInIdentifier)) in LexIdentifier()
H A DAsmParser.cpp2438 static bool isIdentifierChar(char c) { in isIdentifierChar() function
2500 while (I != End && isIdentifierChar(Body[I])) in expandMacro()
2546 if (!isIdentifierChar(Body[I]) || IsDarwin) { in expandMacro()
2552 while (++I && isIdentifierChar(Body[I])) { in expandMacro()
4678 while (isIdentifierChar(Body[I]) && I + 1 != End) in checkForBadMacro()