Searched defs:StartChar (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/AsmParser/
H A DLLLexer.cpp429 const char *StartChar = CurPtr; local
430 const char *IntEnd = CurPtr[-1] == 'i' ? 0 : StartChar;
444 StrVal.assign(StartChar-1, CurPtr++);
451 if (IntEnd != StartChar) {
453 uint64_t NumBits = atoull(StartChar, CurPtr);
466 --StartChar;
467 unsigned Len = CurPtr-StartChar;
470 if (Len == strlen(#STR) && !memcmp(StartChar, #STR, strlen(#STR))) \
624 if (Len == strlen(STR) && !memcmp(StartChar, STR, strlen(STR))) { \
640 if (Len == strlen(#STR) && !memcmp(StartChar, #ST
[all...]

Completed in 53 milliseconds