HomeSort by: relevance | last modified time | path
    Searched defs:TokStart (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
LLLexer.h 36 const char *TokStart;
57 LocTy getLoc() const { return SMLoc::getFromPointer(TokStart); }
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 48 const char *TokStart = nullptr;
  /src/external/apache2/llvm/dist/llvm/lib/TableGen/
TGLexer.h 87 const char *TokStart = nullptr;
129 return std::make_pair(CurIntVal, (CurPtr - TokStart)-2);
313 // the method updates TokStart to the position of the first non-whitespace
316 // TokStart is set to the first non-whitespace symbol after the preprocessing
319 // In all cases, TokStart may be used to point to the word following
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 373 const char *TokStart = SourceMgr.getCharacterData(Tok.getLocation(),
382 return std::string(TokStart, TokStart + Tok.getLength());
386 Result.resize(getSpellingSlow(Tok, TokStart, LangOpts, &*Result.begin()));
405 const char *TokStart = nullptr;
408 TokStart = Tok.getRawIdentifier().data();
419 TokStart = Tok.getLiteralData();
421 if (!TokStart) {
424 TokStart = SourceMgr.getCharacterData(Tok.getLocation(), &CharDataInvalid);
435 Buffer = TokStart;
    [all...]

Completed in 38 milliseconds