HomeSort by relevance Sort by last modified time
    Searched full:tokstart (Results 1 - 13 of 13) sorted by null

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 41 TokStart = nullptr;
91 StringRef(TokStart, CurPtr - TokStart));
117 return ReturnError(TokStart, "invalid hexadecimal floating-point constant: "
122 return ReturnError(TokStart, "invalid hexadecimal floating-point constant: "
135 return ReturnError(TokStart, "invalid hexadecimal floating-point constant: "
138 return AsmToken(AsmToken::Real, StringRef(TokStart, CurPtr - TokStart));
161 if (CurPtr == TokStart+1 && TokStart[0] == '.'
    [all...]
MCAsmLexer.cpp 16 TokStart(nullptr), SkipSpace(true) {
23 return SMLoc::getFromPointer(TokStart);
  /external/llvm/lib/AsmParser/
LLLexer.cpp 192 TokStart = CurPtr;
218 StrVal.assign(TokStart, CurPtr-1);
274 StrVal.assign(TokStart+2, CurPtr-1);
294 uint64_t Val = atoull(TokStart+1, CurPtr);
305 if (const char *Ptr = isLabelTail(TokStart)) {
307 StrVal.assign(TokStart, CurPtr - 1);
323 StrVal.assign(TokStart + 2, CurPtr - 1);
397 uint64_t Val = atoull(TokStart+1, CurPtr);
437 StrVal.assign(TokStart+1, CurPtr); // Skip !
452 uint64_t Val = atoull(TokStart+1, CurPtr)
    [all...]
LLLexer.h 37 const char *TokStart;
55 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
  /external/llvm/lib/TableGen/
TGLexer.cpp 33 TokStart = nullptr;
37 return SMLoc::getFromPointer(TokStart);
89 TokStart = CurPtr;
100 return ReturnError(TokStart, "Unexpected character");
133 return ReturnError(TokStart, "Unexpected character");
237 return ReturnError(TokStart, "Invalid variable name");
252 const char *IdentStart = TokStart;
355 PrintError(TokStart, "Unterminated comment!");
389 return ReturnError(TokStart, "Invalid hexadecimal number");
394 return ReturnError(TokStart, "Invalid hexadecimal number")
    [all...]
TGLexer.h 69 const char *TokStart;
  /external/svox/pico/tts/
com_svox_picottsengine.cpp 599 * @tokstart - address of a variable to receive the start of the token found
600 * @tokstart - address of a variable to receive the length of the token found
604 static int get_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen)
616 *tokstart = pos;
621 *toklen = pos - *tokstart;
631 * @tokstart - address of a variable to receive the start of the sub token found
632 * @tokstart - address of a variable to receive the length of the sub token found
636 static int get_sub_tok(const char * str , int pos, int textlen, int *tokstart, int *toklen) {
645 *tokstart = pos;
652 *toklen = pos - *tokstart;
685 int toklen, tokstart; \/*legnth and start of generic token*\/ local
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 337 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
346 return std::string(TokStart, TokStart + Tok.getLength());
350 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin()));
369 const char *TokStart = nullptr;
372 TokStart = Tok.getRawIdentifier().data();
383 TokStart = Tok.getLiteralData();
385 if (!TokStart) {
388 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
399 Buffer = TokStart;
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 129 const char *TokStart;
  /external/clang/include/clang/Lex/
Preprocessor.h     [all...]
Lexer.h 302 static SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart,
  /prebuilts/clang/linux-x86/host/3.4/bin/
clang-tblgen 
llvm-as 

Completed in 1519 milliseconds