/external/stlport/test/unit/ |
D | swap_test.cpp | 64 class Obj class 67 Obj() : in Obj() function in Obj 70 Obj( const Obj& ) : in Obj() function in Obj 74 Obj& operator =( const Obj& ) in operator =() argument 90 queue<Obj> v1; in swap_container_non_spec() 91 queue<Obj> v2; in swap_container_non_spec() 93 v1.push( Obj() ); in swap_container_non_spec() 95 v1.push( Obj() ); in swap_container_non_spec() 98 v2.push( Obj() ); in swap_container_non_spec() 100 v2.push( Obj() ); in swap_container_non_spec() [all …]
|
/external/llvm/include/llvm/ADT/ |
D | IntrusiveRefCntPtr.h | 111 T* Obj; variable 116 explicit IntrusiveRefCntPtr() : Obj(0) {} in IntrusiveRefCntPtr() 118 IntrusiveRefCntPtr(T* obj) : Obj(obj) { in IntrusiveRefCntPtr() 122 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() 127 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) { in IntrusiveRefCntPtr() 128 S.Obj = 0; in IntrusiveRefCntPtr() 132 IntrusiveRefCntPtr(IntrusiveRefCntPtr<X>&& S) : Obj(S.getPtr()) { in IntrusiveRefCntPtr() 133 S.Obj = 0; in IntrusiveRefCntPtr() 139 : Obj(S.getPtr()) { in IntrusiveRefCntPtr() 150 T& operator*() const { return *Obj; } [all …]
|
/external/llvm/tools/macho-dump/ |
D | macho-dump.cpp | 69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name, in DumpSectionData() argument 99 Obj.ReadRelocationEntry(RelocationTableOffset, i, RE); in DumpSectionData() 114 StringRef Data = Obj.getData(Offset, Size); in DumpSectionData() 127 static int DumpSegmentCommand(MachOObject &Obj, in DumpSegmentCommand() argument 130 Obj.ReadSegmentLoadCommand(LCI, SLC); in DumpSegmentCommand() 144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand() 150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegmentCommand() 163 static int DumpSegment64Command(MachOObject &Obj, in DumpSegment64Command() argument 166 Obj.ReadSegment64LoadCommand(LCI, SLC); in DumpSegment64Command() 180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command() [all …]
|
/external/llvm/tools/llvm-objdump/ |
D | COFFDump.cpp | 160 static error_code resolveSectionAndAddress(const COFFObjectFile *Obj, in resolveSectionAndAddress() argument 165 section_iterator iter(Obj->begin_sections()); in resolveSectionAndAddress() 167 ResolvedSection = Obj->getCOFFSection(iter); in resolveSectionAndAddress() 192 static error_code getSectionContents(const COFFObjectFile *Obj, in getSectionContents() argument 200 if (error_code ec = resolveSectionAndAddress(Obj, Sym, Section, Addr)) in getSectionContents() 202 if (error_code ec = Obj->getSectionContents(Section, Contents)) return ec; in getSectionContents() 230 void llvm::printCOFFUnwindInfo(const COFFObjectFile *Obj) { in printCOFFUnwindInfo() argument 232 if (error(Obj->getHeader(Header))) return; in printCOFFUnwindInfo() 243 for (section_iterator SI = Obj->begin_sections(), in printCOFFUnwindInfo() 244 SE = Obj->end_sections(); in printCOFFUnwindInfo() [all …]
|
D | ELFDump.cpp | 80 void llvm::printELFFileHeader(const object::ObjectFile *Obj) { in printELFFileHeader() argument 83 dyn_cast<ELFObjectFile<ELFType<support::little, 4, false> > >(Obj)) in printELFFileHeader() 88 dyn_cast<ELFObjectFile<ELFType<support::big, 4, false> > >(Obj)) in printELFFileHeader() 93 dyn_cast<ELFObjectFile<ELFType<support::little, 8, true> > >(Obj)) in printELFFileHeader() 98 dyn_cast<ELFObjectFile<ELFType<support::big, 8, true> > >(Obj)) in printELFFileHeader()
|
D | llvm-objdump.cpp | 136 static const Target *getTarget(const ObjectFile *Obj = NULL) { in getTarget() argument 140 if (Obj) in getTarget() 141 TheTriple.setArch(Triple::ArchType(Obj->getArch())); in getTarget() 194 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) { in DisassembleObject() argument 195 const Target *TheTarget = getTarget(Obj); in DisassembleObject() 211 for (section_iterator i = Obj->begin_sections(), in DisassembleObject() 212 e = Obj->end_sections(); in DisassembleObject() 224 for (symbol_iterator si = Obj->begin_symbols(), in DisassembleObject() 225 se = Obj->end_symbols(); in DisassembleObject() 257 if (const MachOObjectFile *MachO = dyn_cast<const MachOObjectFile>(Obj)) { in DisassembleObject()
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | IntelJITEventListener.cpp | 66 virtual void NotifyObjectEmitted(const ObjectImage &Obj); 68 virtual void NotifyFreeingObject(const ObjectImage &Obj); 190 void IntelJITEventListener::NotifyObjectEmitted(const ObjectImage &Obj) { in NotifyObjectEmitted() argument 192 const void* ObjData = Obj.getData().data(); in NotifyObjectEmitted() 193 DIContext* Context = DIContext::getDWARFContext(Obj.getObjectFile()); in NotifyObjectEmitted() 198 for (object::symbol_iterator I = Obj.begin_symbols(), in NotifyObjectEmitted() 199 E = Obj.end_symbols(); in NotifyObjectEmitted() 260 void IntelJITEventListener::NotifyFreeingObject(const ObjectImage &Obj) { in NotifyFreeingObject() argument 262 const void* ObjData = Obj.getData().data(); in NotifyFreeingObject()
|
/external/llvm/lib/IR/ |
D | User.cpp | 63 User *Obj = reinterpret_cast<User*>(End); in operator new() local 64 Obj->OperandList = Start; in operator new() 65 Obj->NumOperands = Us; in operator new() 67 return Obj; in operator new()
|
/external/llvm/utils/obj2yaml/ |
D | coff2yaml.cpp | 253 static llvm::raw_ostream &yamlCOFFSections(llvm::object::COFFObjectFile &Obj, in yamlCOFFSections() argument 257 for (llvm::object::section_iterator iter = Obj.begin_sections(); in yamlCOFFSections() 258 iter != Obj.end_sections(); iter.increment(ec)) { in yamlCOFFSections() 259 const llvm::object::coff_section *sect = Obj.getCOFFSection(iter); in yamlCOFFSections() 275 Obj.getSectionContents(sect, sectionData); in yamlCOFFSections() 282 const llvm::object::coff_relocation *reloc = Obj.getCOFFRelocation(rIter); in yamlCOFFSections() 298 static llvm::raw_ostream& yamlCOFFSymbols(llvm::object::COFFObjectFile &Obj, in yamlCOFFSymbols() argument 302 for (llvm::object::symbol_iterator iter = Obj.begin_symbols(); in yamlCOFFSymbols() 303 iter != Obj.end_symbols(); iter.increment(ec)) { in yamlCOFFSymbols() 306 const llvm::object::coff_symbol *symbol = Obj.getCOFFSymbol(iter); in yamlCOFFSymbols() [all …]
|
/external/srec/srec/include/ |
D | caexcept.h | 39 #define END_CATCH_CA_EXCEPT( Obj ) \ argument 40 rethrow_crec_xception(e, (void*) Obj ); \ 49 #define END_CATCH_CA_EXCEPT( Obj ) } argument
|
/external/llvm/tools/llvm-symbolizer/ |
D | LLVMSymbolize.cpp | 47 ModuleInfo::ModuleInfo(ObjectFile *Obj, DIContext *DICtx) in ModuleInfo() argument 48 : Module(Obj), DebugInfoContext(DICtx) { in ModuleInfo() 190 static bool getObjectEndianness(const ObjectFile *Obj, bool &IsLittleEndian) { in getObjectEndianness() argument 218 ObjectFile *Obj = getObjectFile(ModuleName); in getOrCreateModuleInfo() local 219 if (Obj == 0) { in getOrCreateModuleInfo() 227 if (getObjectEndianness(Obj, IsLittleEndian)) { in getOrCreateModuleInfo() 230 ObjectFile *DbgObj = Obj; in getOrCreateModuleInfo() 231 if (isa<MachOObjectFile>(Obj)) { in getOrCreateModuleInfo() 242 ModuleInfo *Info = new ModuleInfo(Obj, Context); in getOrCreateModuleInfo()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldELF.cpp | 84 DyldELFObject<ELFT> *Obj) in ELFObjectImage() argument 85 : ObjectImageCommon(Input, Obj), in ELFObjectImage() 86 DyldObj(Obj), in ELFObjectImage() 163 DyldELFObject<ELFType<support::little, 4, false> > *Obj = in createObjectImage() local 166 return new ELFObjectImage<ELFType<support::little, 4, false> >(Buffer, Obj); in createObjectImage() 169 DyldELFObject<ELFType<support::big, 4, false> > *Obj = in createObjectImage() local 172 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj); in createObjectImage() 175 DyldELFObject<ELFType<support::big, 8, true> > *Obj = in createObjectImage() local 178 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj); in createObjectImage() 181 DyldELFObject<ELFType<support::little, 8, true> > *Obj = in createObjectImage() local [all …]
|
D | ObjectImageCommon.h | 32 ObjectImageCommon(ObjectBuffer *Input, object::ObjectFile *Obj) in ObjectImageCommon() argument 34 ObjFile(Obj) in ObjectImageCommon()
|
D | RuntimeDyldImpl.h | 236 void emitCommonSymbols(ObjectImage &Obj, 245 unsigned emitSection(ObjectImage &Obj, 254 unsigned findOrEmitSection(ObjectImage &Obj, 290 ObjectImage &Obj,
|
D | RuntimeDyldMachO.cpp | 209 ObjectImage &Obj, in processRelocationRef() argument 241 section_iterator si = Obj.begin_sections(), in processRelocationRef() 242 se = Obj.end_sections(); in processRelocationRef() 250 Value.SectionID = findOrEmitSection(Obj, *si, true, ObjSectionToID); in processRelocationRef()
|
D | RuntimeDyldELF.h | 72 ObjectImage &Obj, 82 void findOPDEntrySection(ObjectImage &Obj,
|
/external/llvm/tools/llvm-dwarfdump/ |
D | llvm-dwarfdump.cpp | 90 OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take())); in DumpInput() local 91 if (!Obj) { in DumpInput() 96 OwningPtr<DIContext> DICtx(DIContext::getDWARFContext(Obj.get())); in DumpInput() 100 << ":\tfile format " << Obj->getFileFormatName() << "\n\n"; in DumpInput()
|
/external/llvm/lib/DebugInfo/ |
D | DIContext.cpp | 16 DIContext *DIContext::getDWARFContext(object::ObjectFile *Obj) { in getDWARFContext() argument 17 return new DWARFContextInMemory(Obj); in getDWARFContext()
|
D | DWARFContext.cpp | 485 DWARFContextInMemory::DWARFContextInMemory(object::ObjectFile *Obj) : in DWARFContextInMemory() argument 486 IsLittleEndian(Obj->isLittleEndian()), in DWARFContextInMemory() 487 AddressSize(Obj->getBytesInAddress()) { in DWARFContextInMemory() 489 for (object::section_iterator i = Obj->begin_sections(), in DWARFContextInMemory() 490 e = Obj->end_sections(); in DWARFContextInMemory() 555 if (Obj->isELF()) { in DWARFContextInMemory() 561 object::RelocVisitor V(Obj->getFileFormatName()); in DWARFContextInMemory()
|
/external/clang/test/CodeGenObjC/ |
D | bitfield-gnu.m | 4 @interface Obj { B *b; } @end interface 5 @implementation Obj @end implementation
|
/external/clang/utils/ |
D | clangVisualizers.txt | 165 #if ($e.Obj == 0) ( "empty" ) 168 "[RefCnt=", $e.Obj->ref_cnt, 170 "Obj=", $e.Obj, 177 #if ($e.Obj == 0) ( #array(expr: 0, size: 0) ) 180 #(RefCnt : $e.Obj->ref_cnt), 181 #(Obj : $e.Obj)
|
/external/llvm/include/llvm/ExecutionEngine/ |
D | JITEventListener.h | 87 virtual void NotifyObjectEmitted(const ObjectImage &Obj) {} in NotifyObjectEmitted() argument 91 virtual void NotifyFreeingObject(const ObjectImage &Obj) {} in NotifyFreeingObject() argument
|
/external/llvm/include/llvm/MC/MCParser/ |
D | MCAsmParserExtension.h | 37 T *Obj = static_cast<T*>(Target); in HandleDirective() local 38 return (Obj->*Handler)(Directive, DirectiveLoc); in HandleDirective()
|
/external/llvm/lib/ExecutionEngine/MCJIT/ |
D | MCJIT.h | 107 void NotifyObjectEmitted(const ObjectImage& Obj); 108 void NotifyFreeingObject(const ObjectImage& Obj);
|
D | MCJIT.cpp | 325 void MCJIT::NotifyObjectEmitted(const ObjectImage& Obj) { in NotifyObjectEmitted() argument 328 EventListeners[I]->NotifyObjectEmitted(Obj); in NotifyObjectEmitted() 331 void MCJIT::NotifyFreeingObject(const ObjectImage& Obj) { in NotifyFreeingObject() argument 334 EventListeners[I]->NotifyFreeingObject(Obj); in NotifyFreeingObject()
|