Home
last modified time | relevance | path

Searched refs:ExpansionLoc (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXSourceLocation.cpp241 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc); in clang_getExpansionLocation() local
245 FileID fileID = SM.getFileID(ExpansionLoc); in clang_getExpansionLocation()
256 *line = SM.getExpansionLineNumber(ExpansionLoc); in clang_getExpansionLocation()
258 *column = SM.getExpansionColumnNumber(ExpansionLoc); in clang_getExpansionLocation()
260 *offset = SM.getDecomposedLoc(ExpansionLoc).second; in clang_getExpansionLocation()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Edit/
H A DEditedSource.cpp35 SourceLocation &ExpansionLoc, in deconstructMacroArgLoc() argument
42 ExpansionLoc = ImmediateExpansionLoc; in deconstructMacroArgLoc()
43 while (SourceMgr.isMacroBodyExpansion(ExpansionLoc)) in deconstructMacroArgLoc()
44 ExpansionLoc = in deconstructMacroArgLoc()
45 SourceMgr.getImmediateExpansionRange(ExpansionLoc).getBegin(); in deconstructMacroArgLoc()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Edit/
H A DEditedSource.h106 SourceLocation &ExpansionLoc,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DSourceManager.cpp629 SourceLocation ExpansionLoc, in createMacroArgExpansionLoc() argument
632 ExpansionLoc); in createMacroArgExpansionLoc()
1827 SourceLocation ExpansionLoc, in associateFileChunkWithMacroArgExp() argument
1855 ExpansionLoc, CurrSpellLength); in associateFileChunkWithMacroArgExp()
1863 ExpansionLoc = ExpansionLoc.getLocWithOffset(advance); in associateFileChunkWithMacroArgExp()
1898 MacroArgsCache[BeginOffs] = ExpansionLoc; in associateFileChunkWithMacroArgExp()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSourceManager.h437 SourceLocation ExpansionLoc) { in createForMacroArg() argument
441 return create(SpellingLoc, ExpansionLoc, SourceLocation()); in createForMacroArg()
902 SourceLocation ExpansionLoc,
1865 SourceLocation ExpansionLoc,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h267 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc()); in AST_POLYMORPHIC_MATCHER() local
268 if (ExpansionLoc.isInvalid()) { in AST_POLYMORPHIC_MATCHER()
271 return SourceManager.isInSystemHeader(ExpansionLoc); in AST_POLYMORPHIC_MATCHER()
294 auto ExpansionLoc = SourceManager.getExpansionLoc(Node.getBeginLoc()); in AST_POLYMORPHIC_MATCHER_REGEX() local
295 if (ExpansionLoc.isInvalid()) { in AST_POLYMORPHIC_MATCHER_REGEX()
299 SourceManager.getFileEntryForID(SourceManager.getFileID(ExpansionLoc)); in AST_POLYMORPHIC_MATCHER_REGEX()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DTypeLoc.h1076 SourceLocation ExpansionLoc; member
1094 return this->getLocalData()->ExpansionLoc; in getExpansionLoc()
1098 this->getLocalData()->ExpansionLoc = Loc; in setExpansionLoc()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp3123 SourceLocation ExpansionLoc = SM.getExpansionLoc(Loc); in populateExecutedLinesWithStmt() local
3124 FileID FID = SM.getFileID(ExpansionLoc); in populateExecutedLinesWithStmt()
3125 unsigned LineNo = SM.getExpansionLineNumber(ExpansionLoc); in populateExecutedLinesWithStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseDeclCXX.cpp4014 SourceLocation ExpansionLoc = in TryParseCXX11AttributeIdentifier() local
4016 StringRef Spelling = PP.getSpelling(ExpansionLoc, ExpansionBuf); in TryParseCXX11AttributeIdentifier()
4019 ExpansionLoc, in TryParseCXX11AttributeIdentifier()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DMasmParser.cpp1987 SMLoc ExpansionLoc = getTok().getLoc(); in parseStatement() local
1988 if (parseToken(AsmToken::Percent) || expandStatement(ExpansionLoc)) in parseStatement()