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

/external/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp453 SourceLocation SpellingLoc = Loc; local
457 SpellingLoc = SM.getImmediateExpansionRange(Loc).first;
458 SpellingLoc = SM.getSpellingLoc(SpellingLoc);
471 emitDiagnostic(SpellingLoc, DiagnosticsEngine::Note, Message.str(),
/external/clang/include/clang/Basic/
H A DSourceManager.h308 /// the token was ultimately expanded, and the SpellingLoc - where the actual
314 unsigned SpellingLoc; member in class:clang::SrcMgr::ExpansionInfo
326 return SourceLocation::getFromRawEncoding(SpellingLoc);
360 /// expanded), and SpellingLoc specifies the spelling location (where
363 static ExpansionInfo create(SourceLocation SpellingLoc, argument
366 X.SpellingLoc = SpellingLoc.getRawEncoding();
378 /// always exactly one token. SpellingLoc specifies the spelling location
380 /// SpellingLoc can both refer to normal File SLocs or expansion locations.
389 /// SpellingLoc pointin
391 createForMacroArg(SourceLocation SpellingLoc, SourceLocation ExpansionLoc) argument
[all...]
/external/clang/lib/AST/
H A DASTDumper.cpp452 SourceLocation SpellingLoc = SM->getSpellingLoc(Loc); local
456 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
/external/clang/lib/Basic/
H A DSourceManager.cpp602 SourceManager::createMacroArgExpansionLoc(SourceLocation SpellingLoc, argument
605 ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
611 SourceManager::createExpansionLoc(SourceLocation SpellingLoc, argument
617 ExpansionInfo Info = ExpansionInfo::create(SpellingLoc, ExpansionLocStart,
/external/clang/lib/Lex/
H A DLexer.cpp170 Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc, argument
177 FileID SpellingFID = SM.getFileID(SpellingLoc);
184 const char *StrData = SM.getCharacterData(SpellingLoc);
1036 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc); local
1037 SpellingLoc = SpellingLoc.getLocWithOffset(CharNo);
1044 return SM.createExpansionLoc(SpellingLoc, II.first, II.second, TokLen);
/external/clang/lib/Serialization/
H A DASTReader.cpp1263 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]); local
1264 SourceMgr.createExpansionLoc(SpellingLoc,

Completed in 268 milliseconds