Searched refs:Obj (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DIntrusiveRefCntPtr.h104 /// Obj->Retain()/Obj->Release(). Release() is required to destroy
111 T* Obj; member in class:llvm::IntrusiveRefCntPtr
116 explicit IntrusiveRefCntPtr() : Obj(0) {}
118 IntrusiveRefCntPtr(T* obj) : Obj(obj) {
122 IntrusiveRefCntPtr(const IntrusiveRefCntPtr& S) : Obj(S.Obj) {
127 IntrusiveRefCntPtr(IntrusiveRefCntPtr&& S) : Obj(S.Obj) {
128 S.Obj
[all...]
/macosx-10.9.5/CPANInternal-140/Sub-Exporter/t/lib/Test/SubExporter/
H A DObjGen.pm2 package Test::SubExporter::ObjGen::Obj;
44 $baz = Test::SubExporter::ObjGen::Obj->new('baz');
45 $group_b = Test::SubExporter::ObjGen::Obj->new('group');
/macosx-10.9.5/llvmCore-3425.0.33/tools/macho-dump/
H A Dmacho-dump.cpp69 static int DumpSectionData(MachOObject &Obj, unsigned Index, StringRef Name, argument
99 Obj.ReadRelocationEntry(RelocationTableOffset, i, RE);
114 StringRef Data = Obj.getData(Offset, Size);
127 static int DumpSegmentCommand(MachOObject &Obj, argument
130 Obj.ReadSegmentLoadCommand(LCI, SLC);
144 Obj.ReadSection(LCI, i, Sect);
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16),
163 static int DumpSegment64Command(MachOObject &Obj, argument
166 Obj.ReadSegment64LoadCommand(LCI, SLC);
180 Obj
200 DumpSymbolTableEntryData(MachOObject &Obj, unsigned Index, uint32_t StringIndex, uint8_t Type, uint8_t SectionIndex, uint16_t Flags, uint64_t Value) argument
214 DumpSymtabCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
265 DumpDysymtabCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
313 DumpLinkeditDataCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
335 DumpDataInCodeDataCommand(MachOObject &Obj, const MachOObject::LoadCommandInfo &LCI) argument
365 DumpLoadCommand(MachOObject &Obj, unsigned Index) argument
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DUser.cpp62 User *Obj = reinterpret_cast<User*>(End); local
63 Obj->OperandList = Start;
64 Obj->NumOperands = Us;
66 return Obj;
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/RuntimeDyld/
H A DObjectImage.h28 ObjectImage(object::ObjectFile *Obj) { ObjFile = Obj; } argument
H A DRuntimeDyldELF.h58 ObjectImage &Obj,
64 virtual void handleObjectLoaded(ObjectImage *Obj);
H A DRuntimeDyldELF.cpp78 ELFObjectImage(DyldELFObject<target_endianness, is64Bits> *Obj) argument
79 : ObjectImage(Obj),
80 DyldObj(Obj),
158 DyldELFObject<support::little, false> *Obj = local
160 return new ELFObjectImage<support::little, false>(Obj);
163 DyldELFObject<support::big, false> *Obj = local
165 return new ELFObjectImage<support::big, false>(Obj);
168 DyldELFObject<support::big, true> *Obj = local
170 return new ELFObjectImage<support::big, true>(Obj);
173 DyldELFObject<support::little, true> *Obj local
181 handleObjectLoaded(ObjectImage *Obj) argument
376 processRelocationRef(const ObjRelocationInfo &Rel, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
[all...]
H A DRuntimeDyldImpl.h191 void emitCommonSymbols(ObjectImage &Obj,
200 unsigned emitSection(ObjectImage &Obj,
209 unsigned findOrEmitSection(ObjectImage &Obj,
247 ObjectImage &Obj,
255 virtual void handleObjectLoaded(ObjectImage *Obj) argument
258 delete Obj;
H A DRuntimeDyld.cpp67 ObjectImage *Obj = new ObjectImage(ObjFile); local
68 return Obj;
186 void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj, argument
210 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
218 unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj, argument
277 Obj.updateSectionAddress(Section, (uint64_t)Addr);
298 unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj, argument
308 SectionID = emitSection(Obj, Section, IsCode);
H A DRuntimeDyldMachO.cpp206 ObjectImage &Obj,
239 section_iterator si = Obj.begin_sections(),
240 se = Obj.end_sections();
248 Value.SectionID = findOrEmitSection(Obj, *si, true, ObjSectionToID);
205 processRelocationRef(const ObjRelocationInfo &Rel, ObjectImage &Obj, ObjSectionToIDMap &ObjSectionToID, const SymbolTableMap &Symbols, StubMap &Stubs) argument
H A DRuntimeDyldMachO.h52 ObjectImage &Obj,
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/MC/MCParser/
H A DMCAsmParserExtension.h37 T *Obj = static_cast<T*>(Target); local
38 return (Obj->*Handler)(Directive, DirectiveLoc);
/macosx-10.9.5/llvmCore-3425.0.33/utils/obj2yaml/
H A Dcoff2yaml.cpp254 static llvm::raw_ostream &yamlCOFFSections(llvm::object::COFFObjectFile &Obj,
258 for (llvm::object::section_iterator iter = Obj.begin_sections();
259 iter != Obj.end_sections(); iter.increment(ec)) {
260 const llvm::object::coff_section *sect = Obj.getCOFFSection(iter);
276 Obj.getSectionContents(sect, sectionData);
283 const llvm::object::coff_relocation *reloc = Obj.getCOFFRelocation(rIter);
299 static llvm::raw_ostream& yamlCOFFSymbols(llvm::object::COFFObjectFile &Obj,
303 for (llvm::object::symbol_iterator iter = Obj.begin_symbols();
304 iter != Obj.end_symbols(); iter.increment(ec)) {
307 const llvm::object::coff_symbol *symbol = Obj
[all...]
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-dwarfdump/
H A Dllvm-dwarfdump.cpp67 OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take()));
77 for (section_iterator i = Obj->begin_sections(),
78 e = Obj->end_sections();
111 << ":\tfile format " << Obj->getFileFormatName() << "\n\n";
/macosx-10.9.5/swig-10/Lib/ocaml/
H A Docaml.i34 | _ -> Obj.magic v
H A Dswig.ml41 | _ -> raise (NotObject (Obj.magic obj))
157 Hashtbl.replace class_master_list nm (Obj.magic co)
159 try (Obj.magic (Hashtbl.find class_master_list nm)) arg with _ -> raise (NoSuchClass nm)
H A Dswigp4.ml21 [] -> <:expr< (Obj.magic C_void) >>
22 | [ a ] -> <:expr< (Obj.magic $f a loc$) >>
23 | _ -> <:expr< (Obj.magic (C_list ($mk_list_inner args loc f$))) >>
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-objdump/
H A Dllvm-objdump.cpp113 static const Target *getTarget(const ObjectFile *Obj = NULL) {
117 if (Obj)
118 TheTriple.setArch(Triple::ArchType(Obj->getArch()));
171 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) { argument
172 const Target *TheTarget = getTarget(Obj);
188 for (section_iterator i = Obj->begin_sections(),
189 e = Obj->end_sections();
201 for (symbol_iterator si = Obj->begin_symbols(),
202 se = Obj->end_symbols();
/macosx-10.9.5/CPANInternal-140/JSON-RPC/lib/JSON/RPC/
H A DProcedure.pm39 unless ($ret_type =~ /^Private|Public|Arr|Obj|Bit|Bool|Num|Str|Nil|None/) {
153 =item Obj
/macosx-10.9.5/CPANInternal-140/JSON-RPC-0.96/lib/JSON/RPC/
H A DProcedure.pm39 unless ($ret_type =~ /^Private|Public|Arr|Obj|Bit|Bool|Num|Str|Nil|None/) {
153 =item Obj
/macosx-10.9.5/CPANInternal-140/JSON-RPC-1.03/lib/JSON/RPC/Legacy/
H A DProcedure.pm39 unless ($ret_type =~ /^Private|Public|Arr|Obj|Bit|Bool|Num|Str|Nil|None/) {
153 =item Obj
/macosx-10.9.5/Security-55471.14.18/include/security_cdsa_client/
H A Dcssmclient.h107 template <class Obj> Obj parent() const
108 { assert(mParent); return Obj(static_cast<typename Obj::Impl *>(&(*mParent))); }
/macosx-10.9.5/Security-55471.14.18/libsecurity_cdsa_client/lib/
H A Dcssmclient.h107 template <class Obj> Obj parent() const
108 { assert(mParent); return Obj(static_cast<typename Obj::Impl *>(&(*mParent))); }
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A DcheckLibraryDoc.tcl95 Tcl_Create\[Obj\]Command \
/macosx-10.9.5/tcl-102/tcl84/tcl/tools/
H A DcheckLibraryDoc.tcl95 Tcl_Create\[Obj\]Command \

Completed in 236 milliseconds

12