Searched refs:ReadSourceLocation (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 35 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) { in ReadSourceLocation() function in clang::ASTStmtReader 36 return Reader.ReadSourceLocation(F, R, I); in ReadSourceLocation() 101 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx); in ReadTemplateKWAndArgsInfo() 103 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx)); in ReadTemplateKWAndArgsInfo() 104 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx)); in ReadTemplateKWAndArgsInfo() 117 S->setSemiLoc(ReadSourceLocation(Record, Idx)); in VisitNullStmt() 128 S->setLBracLoc(ReadSourceLocation(Record, Idx)); in VisitCompoundStmt() 129 S->setRBracLoc(ReadSourceLocation(Record, Idx)); in VisitCompoundStmt() 142 S->setCaseLoc(ReadSourceLocation(Record, Idx)); in VisitCaseStmt() 143 S->setEllipsisLoc(ReadSourceLocation(Record, Idx)); in VisitCaseStmt() [all …]
|
D | ASTReaderDecl.cpp | 53 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) { in ReadSourceLocation() function in clang::ASTDeclReader 54 return Reader.ReadSourceLocation(F, R, I); in ReadSourceLocation() 353 D->setLocation(Reader.ReadSourceLocation(F, RawLocation)); in VisitDecl() 404 TD->setLocStart(ReadSourceLocation(Record, Idx)); in VisitTypeDecl() 434 TD->setRBraceLoc(ReadSourceLocation(Record, Idx)); in VisitTagDecl() 461 SourceLocation POI = ReadSourceLocation(Record, Idx); in VisitEnumDecl() 488 DD->setInnerLocStart(ReadSourceLocation(Record, Idx)); in VisitDeclaratorDecl() 521 FD->EndRangeLoc = ReadSourceLocation(Record, Idx); in VisitFunctionDecl() 534 SourceLocation POI = ReadSourceLocation(Record, Idx); in VisitFunctionDecl() 559 LAngleLoc = ReadSourceLocation(Record, Idx); in VisitFunctionDecl() [all …]
|
D | ASTReader.cpp | 1125 SourceLocation IncludeLoc = ReadSourceLocation(*F, Record[1]); in ReadSLocEntryRecord() 1205 SourceLocation SpellingLoc = ReadSourceLocation(*F, Record[1]); in ReadSLocEntryRecord() 1207 ReadSourceLocation(*F, Record[2]), in ReadSLocEntryRecord() 1208 ReadSourceLocation(*F, Record[3]), in ReadSLocEntryRecord() 1316 SourceLocation Loc = ReadSourceLocation(F, Record[1]); in ReadMacroRecord() 1325 MI->setVisibility(IsPublic, ReadSourceLocation(F, Record, NextIndex)); in ReadMacroRecord() 1372 Tok.setLocation(ReadSourceLocation(F, Record[0])); in ReadMacroRecord() 1997 ReadSourceLocation(F, Record, I).getRawEncoding()); in ReadASTBlock() 2045 ReferencedSelectorsData.push_back(ReadSourceLocation(F, Record, Idx). in ReadASTBlock() 2206 ReadSourceLocation(F, Record, Idx).getRawEncoding()); in ReadASTBlock() [all …]
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 1379 SourceLocation ReadSourceLocation(ModuleFile &ModuleFile, unsigned Raw) const { in ReadSourceLocation() function 1388 SourceLocation ReadSourceLocation(ModuleFile &ModuleFile, in ReadSourceLocation() function 1390 return ReadSourceLocation(ModuleFile, Record[Idx++]); in ReadSourceLocation()
|