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

/external/clang/lib/Frontend/
H A DDiagnosticRenderer.cpp447 SourceLocation SpellingLoc = Loc; local
451 SpellingLoc = SM.getImmediateExpansionRange(Loc).first;
452 SpellingLoc = SM.getSpellingLoc(SpellingLoc);
465 emitDiagnostic(SpellingLoc, DiagnosticsEngine::Note, Message.str(),
/external/clang/include/clang/Basic/
H A DSourceManager.h293 /// the token was ultimately expanded, and the SpellingLoc - where the actual
299 unsigned SpellingLoc; member in class:clang::SrcMgr::ExpansionInfo
311 return SourceLocation::getFromRawEncoding(SpellingLoc);
345 /// expanded), and SpellingLoc specifies the spelling location (where
348 static ExpansionInfo create(SourceLocation SpellingLoc, argument
351 X.SpellingLoc = SpellingLoc.getRawEncoding();
363 /// always exactly one token. SpellingLoc specifies the spelling location
365 /// SpellingLoc can both refer to normal File SLocs or expansion locations.
374 /// SpellingLoc pointin
376 createForMacroArg(SourceLocation SpellingLoc, SourceLocation ExpansionLoc) argument
[all...]
/external/clang/lib/AST/
H A DASTDumper.cpp388 SourceLocation SpellingLoc = SM->getSpellingLoc(Loc); local
392 PresumedLoc PLoc = SM->getPresumedLoc(SpellingLoc);
/external/clang/lib/Basic/
H A DSourceManager.cpp615 SourceManager::createMacroArgExpansionLoc(SourceLocation SpellingLoc, argument
618 ExpansionInfo Info = ExpansionInfo::createForMacroArg(SpellingLoc,
624 SourceManager::createExpansionLoc(SourceLocation SpellingLoc, argument
630 ExpansionInfo Info = ExpansionInfo::create(SpellingLoc, ExpansionLocStart,
/external/clang/lib/Lex/
H A DLexer.cpp178 Lexer *Lexer::Create_PragmaLexer(SourceLocation SpellingLoc, argument
185 FileID SpellingFID = SM.getFileID(SpellingLoc);
192 const char *StrData = SM.getCharacterData(SpellingLoc);
1044 SourceLocation SpellingLoc = SM.getSpellingLoc(FileLoc); local
1045 SpellingLoc = SpellingLoc.getLocWithOffset(CharNo);
1052 return SM.createExpansionLoc(SpellingLoc, II.first, II.second, TokLen);
/external/clang/lib/Serialization/
H A DASTReader.cpp1032 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]); local
1033 SourceMgr.createExpansionLoc(SpellingLoc,

Completed in 139 milliseconds