HomeSort by: relevance | last modified time | path
    Searched refs:SpellingLoc (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
SourceManager.h 345 /// the token was ultimately expanded, and the SpellingLoc - where the actual
351 SourceLocation SpellingLoc;
366 return SpellingLoc.isInvalid() ? getExpansionLocStart() : SpellingLoc;
403 /// expanded), and SpellingLoc specifies the spelling location (where
406 static ExpansionInfo create(SourceLocation SpellingLoc, SourceLocation Start,
410 X.SpellingLoc = SpellingLoc;
423 /// always exactly one token. SpellingLoc specifies the spelling location
425 /// SpellingLoc can both refer to normal File SLocs or expansion locations
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Basic/
SourceManager.cpp 628 SourceManager::createMacroArgExpansionLoc(SourceLocation SpellingLoc,
631 ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
637 SourceManager::createExpansionLoc(SourceLocation SpellingLoc,
645 SpellingLoc, ExpansionLocStart, ExpansionLocEnd, ExpansionIsTokenRange);
1016 StringRef SourceManager::getFilename(SourceLocation SpellingLoc) const {
1017 if (const FileEntry *F = getFileEntryForID(getFileID(SpellingLoc)))
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
DiagnosticRenderer.cpp 440 FullSourceLoc SpellingLoc = Loc.getSpellingLoc();
455 emitDiagnostic(SpellingLoc, DiagnosticsEngine::Note, Message.str(),
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
Lexer.h 165 static Lexer *Create_PragmaLexer(SourceLocation SpellingLoc,
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 189 Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc,
196 FileID SpellingFID = SM.getFileID(SpellingLoc);
203 const char *StrData = SM.getCharacterData(SpellingLoc);
1117 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc);
1118 SpellingLoc = SpellingLoc.getLocWithOffset(CharNo);
1124 return SM.createExpansionLoc(SpellingLoc, II.getBegin(), II.getEnd(), TokLen);
Preprocessor.cpp 503 SourceLocation SpellingLoc = SM.getSpellingLoc(Loc);
504 std::pair<FileID, unsigned> LocInfo = SM.getDecomposedLoc(SpellingLoc);
  /src/external/apache2/llvm/dist/clang/lib/AST/
TextNodeDumper.cpp 580 SourceLocation SpellingLoc = SM->getSpellingLoc(Loc);
584 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 4044 SourceLocation SpellingLoc =
4046 StringRef Spelling = PP.getSpelling(SpellingLoc, SpellingBuf);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclCXX.cpp 3106 SourceLocation SpellingLoc = Loc;
3108 SpellingLoc = getSourceManager().getImmediateExpansionRange(Loc).getBegin();
3109 SpellingLoc = getSourceManager().getSpellingLoc(SpellingLoc);
3110 if (SpellingLoc.isValid() && getSourceManager().isInSystemHeader(SpellingLoc))
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReader.cpp 1581 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]);
1582 SourceMgr.createExpansionLoc(SpellingLoc,

Completed in 149 milliseconds