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

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 41 TokStart = 0;
91 StringRef(TokStart, CurPtr - TokStart));
112 if (CurPtr == TokStart+1 && TokStart[0] == '.')
113 return AsmToken(AsmToken::Dot, StringRef(TokStart, 1));
115 return AsmToken(AsmToken::Identifier, StringRef(TokStart, CurPtr - TokStart));
133 return ReturnError(TokStart, "unterminated comment");
209 StringRef Result(TokStart, CurPtr - TokStart)
    [all...]
MCAsmLexer.cpp 16 TokStart(0), SkipSpace(true) {
23 return SMLoc::getFromPointer(TokStart);
  /external/llvm/lib/AsmParser/
LLLexer.cpp 188 TokStart = CurPtr;
213 StrVal.assign(TokStart, CurPtr-1);
224 StrVal.assign(TokStart, CurPtr-1);
276 StrVal.assign(TokStart+2, CurPtr-1);
292 uint64_t Val = atoull(TokStart+1, CurPtr);
358 uint64_t Val = atoull(TokStart+1, CurPtr);
398 StrVal.assign(TokStart+1, CurPtr); // Skip !
413 uint64_t Val = atoull(TokStart+1, CurPtr);
694 if ((TokStart[0] == 'u' || TokStart[0] == 's') &
    [all...]
LLLexer.h 37 const char *TokStart;
55 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
  /external/llvm/lib/TableGen/
TGLexer.cpp 33 TokStart = 0;
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 345 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
354 return std::string(TokStart, TokStart + Tok.getLength());
358 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin()));
377 const char *TokStart = 0;
380 TokStart = Tok.getRawIdentifierData();
391 TokStart = Tok.getLiteralData();
393 if (TokStart == 0) {
396 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
407 Buffer = TokStart;
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 119 const char *TokStart;
  /external/clang/include/clang/Lex/
Preprocessor.h     [all...]
Lexer.h 303 static SourceLocation AdvanceToTokenCharacter(SourceLocation TokStart,

Completed in 336 milliseconds