/ndk/tests/device/test-cxx-init-array/jni/ |
test.cpp | 4 GlobalCtor Obj; 8 if (Obj.IsInitialized())
|
/external/vixl/test/ |
test-invalset.cc | 41 class Obj { 43 Obj() {} 44 Obj(KeyType key, ValType val) : key_(key), val_(val) {} 48 bool operator==(const Obj& other) const { 51 bool operator<(const Obj& other) const { 55 bool operator<=(const Obj& other) const { 59 bool operator>(const Obj& other) const { 70 typedef InvalSet<Obj, 78 inline KeyType InvalSet<Obj, 83 kReclaimFactor>::Key(const Obj& obj) [all...] |
/external/llvm/include/llvm/ADT/ |
IntrusiveRefCntPtr.h | 88 static void retain(T *obj) { obj->Retain(); } 89 static void release(T *obj) { obj->Release(); } 129 /// Obj->Retain()/Obj->Release(). Release() is required to destroy 136 T* Obj; 141 explicit IntrusiveRefCntPtr() : Obj(nullptr) {} 143 IntrusiveRefCntPtr(T* obj) : Obj(obj) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
swap_test.cpp | 64 class Obj 67 Obj() : 70 Obj( const Obj& ) : 74 Obj& operator =( const Obj& ) 90 queue<Obj> v1; 91 queue<Obj> v2; 93 v1.push( Obj() ); 95 v1.push( Obj() ); [all...] |
/ndk/tests/device/test-stlport/unit/ |
swap_test.cpp | 64 class Obj 67 Obj() : 70 Obj( const Obj& ) : 74 Obj& operator =( const Obj& ) 90 queue<Obj> v1; 91 queue<Obj> v2; 93 v1.push( Obj() ); 95 v1.push( Obj() ); [all...] |
/external/llvm/tools/obj2yaml/ |
obj2yaml.h | 21 const llvm::object::COFFObjectFile &Obj); 23 const llvm::object::ObjectFile &Obj);
|
obj2yaml.cpp | 22 static std::error_code dumpObject(const ObjectFile &Obj) { 23 if (Obj.isCOFF()) 24 return coff2yaml(outs(), cast<COFFObjectFile>(Obj)); 25 if (Obj.isELF()) 26 return elf2yaml(outs(), Obj); 38 if (ObjectFile *Obj = dyn_cast<ObjectFile>(&Binary)) 39 return dumpObject(*Obj);
|
coff2yaml.cpp | 21 const object::COFFObjectFile &Obj; 30 COFFDumper(const object::COFFObjectFile &Obj); 36 COFFDumper::COFFDumper(const object::COFFObjectFile &Obj) : Obj(Obj) { 38 Obj.getPE32Header(PE32Header); 43 Obj.getPE32PlusHeader(PE32PlusHeader); 49 dumpSections(Obj.getNumberOfSections()); 50 dumpSymbols(Obj.getNumberOfSymbols()); 89 if (Obj.getDataDirectory(I++, DD) [all...] |
elf2yaml.cpp | 28 const object::ELFFile<ELFT> &Obj; 57 : Obj(O) {} 64 Y->Header.Class = ELFYAML::ELF_ELFCLASS(Obj.getHeader()->getFileClass()); 65 Y->Header.Data = ELFYAML::ELF_ELFDATA(Obj.getHeader()->getDataEncoding()); 66 Y->Header.OSABI = Obj.getHeader()->e_ident[ELF::EI_OSABI]; 67 Y->Header.Type = Obj.getHeader()->e_type; 68 Y->Header.Machine = Obj.getHeader()->e_machine; 69 Y->Header.Flags = Obj.getHeader()->e_flags; 70 Y->Header.Entry = Obj.getHeader()->e_entry; 75 for (const Elf_Shdr &Sec : Obj.sections()) [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldMachOI386.h | 38 const MachOObjectFile &Obj = 41 Obj.getRelocation(RelI->getRawDataRefImpl()); 42 uint32_t RelType = Obj.getAnyRelocationType(RelInfo); 44 if (Obj.isRelocationScattered(RelInfo)) { 47 return processSECTDIFFRelocation(SectionID, RelI, Obj, 50 return processScatteredVANILLA(SectionID, RelI, Obj, ObjSectionToID); 54 RelocationEntry RE(getRelocationEntry(SectionID, Obj, RelI)); 57 getRelocationValueRef(Obj, RelI, RE, ObjSectionToID)); 63 // bool IsExtern = Obj.getPlainRelocationExternal(RelInfo); 114 void finalizeSection(const ObjectFile &Obj, unsigned SectionID [all...] |
/external/llvm/include/llvm/Object/ |
MachOUniversal.h | 70 ObjectForArch Obj; 72 object_iterator(const ObjectForArch &Obj) : Obj(Obj) {} 73 const ObjectForArch *operator->() const { return &Obj; } 74 const ObjectForArch &operator*() const { return Obj; } 77 return Obj == Other.Obj; 84 Obj = Obj.getNext() [all...] |
/external/llvm/lib/Object/ |
ELFObjectFile.cpp | 24 ObjectFile::createELFObjectFile(MemoryBufferRef Obj) { 26 getElfArchType(Obj.getBuffer()); 28 1ULL << countTrailingZeros(uintptr_t(Obj.getBufferStart())); 37 R.reset(new ELFObjectFile<ELFType<support::little, false>>(Obj, EC)); 39 R.reset(new ELFObjectFile<ELFType<support::big, false>>(Obj, EC)); 44 R.reset(new ELFObjectFile<ELFType<support::little, true>>(Obj, EC)); 46 R.reset(new ELFObjectFile<ELFType<support::big, true>>(Obj, EC));
|
/external/llvm/include/llvm/ExecutionEngine/ |
ObjectCache.h | 30 virtual void notifyObjectCompiled(const Module *M, MemoryBufferRef Obj) = 0;
|
/external/clang/test/PCH/ |
captured-stmt.cpp | 38 C Obj(10); 39 Obj.bar(x);
|
/external/llvm/tools/llvm-dwarfdump/fuzzer/ |
llvm-dwarfdump-fuzzer.cpp | 31 ObjectFile &Obj = *ObjOrErr.get(); 32 std::unique_ptr<DIContext> DICtx(new DWARFContextInMemory(Obj));
|
/external/llvm/lib/ExecutionEngine/OProfileJIT/ |
OProfileJITEventListener.cpp | 51 void NotifyObjectEmitted(const ObjectFile &Obj, 54 void NotifyFreeingObject(const ObjectFile &Obj) override; 79 const ObjectFile &Obj, 85 OwningBinary<ObjectFile> DebugObjOwner = L.getObjectForDebug(Obj); 114 DebugObjects[Obj.getData().data()] = std::move(DebugObjOwner); 117 void OProfileJITEventListener::NotifyFreeingObject(const ObjectFile &Obj) { 122 if (DebugObjects.find(Obj.getData().data()) == DebugObjects.end()) 125 const ObjectFile &DebugObj = *DebugObjects[Obj.getData().data()].getBinary(); 147 DebugObjects.erase(Obj.getData().data());
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldMachO.h | 68 const MachOObjectFile &Obj = 71 Obj.getRelocation(RI->getRawDataRefImpl()); 73 bool IsPCRel = Obj.getAnyRelocationPCRel(RelInfo); 74 unsigned Size = Obj.getAnyRelocationLength(RelInfo); 77 static_cast<MachO::RelocationInfoType>(Obj.getAnyRelocationType(RelInfo)); 111 static section_iterator getSectionByAddress(const MachOObjectFile &Obj, 116 void populateIndirectSymbolPointersSection(const MachOObjectFile &Obj, 133 bool isCompatibleFile(const object::ObjectFile &Obj) const override; 157 void finalizeLoad(const ObjectFile &Obj,
|
RuntimeDyldCOFF.h | 32 loadObject(const object::ObjectFile &Obj) override; 33 bool isCompatibleFile(const object::ObjectFile &Obj) const override;
|
RuntimeDyldMachO.cpp | 37 getObjectForDebug(const ObjectFile &Obj) const override { 57 const MachOObjectFile &Obj = 60 Obj.getRelocation(RelI->getRawDataRefImpl()); 63 uint32_t RelocType = Obj.getAnyRelocationType(RE); 64 bool IsPCRel = Obj.getAnyRelocationPCRel(RE); 65 unsigned Size = Obj.getAnyRelocationLength(RE); 71 unsigned SymbolBaseAddr = Obj.getScatteredRelocationValue(RE); 72 section_iterator TargetSI = getSectionByAddress(Obj, SymbolBaseAddr); 73 assert(TargetSI != Obj.section_end() && "Can't find section for symbol"); 78 findOrEmitSection(Obj, TargetSection, IsCode, ObjSectionToID) [all...] |
/external/llvm/tools/llvm-objdump/ |
ELFDump.cpp | 70 void llvm::printELFFileHeader(const object::ObjectFile *Obj) { 72 if (const ELF32LEObjectFile *ELFObj = dyn_cast<ELF32LEObjectFile>(Obj)) 76 if (const ELF32BEObjectFile *ELFObj = dyn_cast<ELF32BEObjectFile>(Obj)) 80 if (const ELF64LEObjectFile *ELFObj = dyn_cast<ELF64LEObjectFile>(Obj)) 84 if (const ELF64BEObjectFile *ELFObj = dyn_cast<ELF64BEObjectFile>(Obj))
|
/external/llvm/lib/IR/ |
User.cpp | 132 User *Obj = reinterpret_cast<User*>(End); 133 Obj->NumUserOperands = Us; 134 Obj->HasHungOffUses = false; 135 Obj->HasDescriptor = DescBytes != 0; 143 return Obj; 158 User *Obj = reinterpret_cast<User *>(HungOffOperandList + 1); 159 Obj->NumUserOperands = 0; 160 Obj->HasHungOffUses = true; 161 Obj->HasDescriptor = false; 163 return Obj; [all...] |
/external/llvm/include/llvm/ExecutionEngine/Orc/ |
CompileUtils.h | 45 ErrorOr<std::unique_ptr<object::ObjectFile>> Obj = 49 if (Obj) 50 return OwningObj(std::move(*Obj), std::move(ObjBuffer));
|
/external/llvm/tools/llvm-readobj/ |
MachODumper.cpp | 31 MachODumper(const MachOObjectFile *Obj, StreamWriter& Writer) 33 , Obj(Obj) { } 59 void printRelocation(const MachOObjectFile *Obj, const RelocationRef &Reloc); 61 void printSections(const MachOObjectFile *Obj); 63 const MachOObjectFile *Obj; 71 std::error_code createMachODumper(const object::ObjectFile *Obj, 74 const MachOObjectFile *MachOObj = dyn_cast<MachOObjectFile>(Obj); 304 static void getSection(const MachOObjectFile *Obj, 307 if (!Obj->is64Bit()) [all...] |
llvm-readobj.cpp | 280 static std::error_code createDumper(const ObjectFile *Obj, StreamWriter &Writer, 282 if (!Obj) 285 if (Obj->isCOFF()) 286 return createCOFFDumper(Obj, Writer, Result); 287 if (Obj->isELF()) 288 return createELFDumper(Obj, Writer, Result); 289 if (Obj->isMachO()) 290 return createMachODumper(Obj, Writer, Result); 296 static void dumpObject(const ObjectFile *Obj) { 299 if (std::error_code EC = createDumper(Obj, Writer, Dumper) [all...] |
/external/guice/extensions/grapher/test/com/google/inject/grapher/ |
ShortNameFactoryTest.java | 49 private static class Obj { 52 Obj() {} 78 Member field = Obj.class.getDeclaredField("field"); 83 Member method = Obj.class.getDeclaredMethod("method", String.class); 88 Member constructor = Obj.class.getDeclaredConstructor(); 99 Obj.class.getDeclaredField("field").getDeclaredAnnotations()[0]); 109 Key<?> key = Key.get(Obj.class); 111 "ShortNameFactoryTest$Obj", nameFactory.getClassName(key)); 125 Member method = Obj.class.getDeclaredMethod("method", String.class); 132 (StackTraceElement) StackTraceElements.forMember(Obj.class.getField("field")) [all...] |