Searched refs:RawLoc (Results 1 – 5 of 5) sorted by relevance
/external/clang/tools/libclang/ |
D | CXCursor.cpp | 631 void *RawLoc = Loc.getPtrEncoding(); in MakeCursorObjCSuperClassRef() local 632 CXCursor C = { CXCursor_ObjCSuperClassRef, 0, { Super, RawLoc, TU } }; in MakeCursorObjCSuperClassRef() 647 void *RawLoc = Loc.getPtrEncoding(); in MakeCursorObjCProtocolRef() local 648 CXCursor C = { CXCursor_ObjCProtocolRef, 0, { Proto, RawLoc, TU } }; in MakeCursorObjCProtocolRef() 666 void *RawLoc = Loc.getPtrEncoding(); in MakeCursorObjCClassRef() local 667 CXCursor C = { CXCursor_ObjCClassRef, 0, { Class, RawLoc, TU } }; in MakeCursorObjCClassRef() 681 void *RawLoc = Loc.getPtrEncoding(); in MakeCursorTypeRef() local 682 CXCursor C = { CXCursor_TypeRef, 0, { Type, RawLoc, TU } }; in MakeCursorTypeRef() 697 void *RawLoc = Loc.getPtrEncoding(); in MakeCursorTemplateRef() local 698 CXCursor C = { CXCursor_TemplateRef, 0, { Template, RawLoc, TU } }; in MakeCursorTemplateRef() [all …]
|
/external/clang/lib/ARCMigrate/ |
D | TransProperties.cpp | 82 unsigned RawLoc = Prop->getAtLoc().getRawEncoding(); in collectProperties() local 84 if (PrevAtProps->find(RawLoc) != PrevAtProps->end()) in collectProperties() 86 PropsTy &props = AtProps[RawLoc]; in collectProperties()
|
D | TransGCAttrs.cpp | 88 unsigned RawLoc = Loc.getRawEncoding(); in handleAttr() local 89 if (MigrateCtx.AttrSet.count(RawLoc)) in handleAttr() 111 MigrateCtx.AttrSet.insert(RawLoc); in handleAttr()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 475 unsigned RawLoc; member 477 ReplacedDeclInfo() : Mod(nullptr), Offset(0), RawLoc(0) {} in ReplacedDeclInfo() 478 ReplacedDeclInfo(ModuleFile *Mod, uint64_t Offset, unsigned RawLoc) in ReplacedDeclInfo() 479 : Mod(Mod), Offset(Offset), RawLoc(RawLoc) {} in ReplacedDeclInfo()
|
/external/clang/lib/Serialization/ |
D | ASTReaderDecl.cpp | 2426 RawLocation = It->second.RawLoc; in DeclCursorForID()
|