Home
last modified time | relevance | path

Searched refs:Obj (Results 1 – 25 of 69) sorted by relevance

123

/external/stlport/test/unit/
Dswap_test.cpp64 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/
DIntrusiveRefCntPtr.h111 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()
128 : Obj(S.getPtr()) { in IntrusiveRefCntPtr()
150 T& operator*() const { return *Obj; }
152 T* operator->() const { return Obj; }
154 T* getPtr() const { return Obj; } in getPtr()
158 return Obj == 0 ? 0 : &IntrusiveRefCntPtr::getPtr; in unspecified_bool_type()
162 T* tmp = other.Obj; in swap()
[all …]
/external/llvm/tools/macho-dump/
Dmacho-dump.cpp69 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/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldELF.cpp79 ELFObjectImage(DyldELFObject<target_endianness, is64Bits> *Obj) in ELFObjectImage() argument
80 : ObjectImage(Obj), in ELFObjectImage()
81 DyldObj(Obj), in ELFObjectImage()
159 DyldELFObject<support::little, false> *Obj = in createObjectImage() local
161 return new ELFObjectImage<support::little, false>(Obj); in createObjectImage()
164 DyldELFObject<support::big, false> *Obj = in createObjectImage() local
166 return new ELFObjectImage<support::big, false>(Obj); in createObjectImage()
169 DyldELFObject<support::big, true> *Obj = in createObjectImage() local
171 return new ELFObjectImage<support::big, true>(Obj); in createObjectImage()
174 DyldELFObject<support::little, true> *Obj = in createObjectImage() local
[all …]
DRuntimeDyldImpl.h158 unsigned emitCommonSymbols(ObjectImage &Obj,
167 unsigned emitSection(ObjectImage &Obj,
176 unsigned findOrEmitSection(ObjectImage &Obj,
209 ObjectImage &Obj,
215 virtual void handleObjectLoaded(ObjectImage *Obj) in handleObjectLoaded() argument
218 delete Obj; in handleObjectLoaded() local
DRuntimeDyld.cpp67 ObjectImage *Obj = new ObjectImage(ObjFile); in createObjectImage() local
68 return Obj; in createObjectImage()
180 unsigned RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj, in emitCommonSymbols() argument
205 Obj.updateSymbolAddress(it->first, (uint64_t)Addr); in emitCommonSymbols()
214 unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj, in emitSection() argument
273 Obj.updateSectionAddress(Section, (uint64_t)Addr); in emitSection()
294 unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj, in findOrEmitSection() argument
304 SectionID = emitSection(Obj, Section, IsCode); in findOrEmitSection()
DObjectImage.h28 ObjectImage(object::ObjectFile *Obj) { ObjFile = Obj; } in ObjectImage() argument
DRuntimeDyldELF.h52 ObjectImage &Obj,
57 virtual void handleObjectLoaded(ObjectImage *Obj);
DRuntimeDyldMachO.cpp208 ObjectImage &Obj, in processRelocationRef() argument
240 section_iterator si = Obj.begin_sections(), in processRelocationRef()
241 se = Obj.end_sections(); in processRelocationRef()
249 Value.SectionID = findOrEmitSection(Obj, *si, true, ObjSectionToID); in processRelocationRef()
DRuntimeDyldMachO.h52 ObjectImage &Obj,
/external/llvm/lib/VMCore/
DUser.cpp62 User *Obj = reinterpret_cast<User*>(End); in operator new() local
63 Obj->OperandList = Start; in operator new()
64 Obj->NumOperands = Us; in operator new()
66 return Obj; in operator new()
/external/srec/srec/include/
Dcaexcept.h39 #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-dwarfdump/
Dllvm-dwarfdump.cpp50 OwningPtr<ObjectFile> Obj(ObjectFile::createObjectFile(Buff.take())); in DumpInput() local
59 for (section_iterator i = Obj->begin_sections(), in DumpInput()
60 e = Obj->end_sections(); in DumpInput()
90 << ":\tfile format " << Obj->getFileFormatName() << "\n\n"; in DumpInput()
/external/clang/test/CodeGenObjC/
Dbitfield-gnu.m4 @interface Obj { B *b; } @end interface
5 @implementation Obj @end implementation
/external/llvm/tools/llvm-objdump/
Dllvm-objdump.cpp107 static const Target *GetTarget(const ObjectFile *Obj = NULL) { in GetTarget() argument
111 if (Obj) in GetTarget()
112 TT.setArch(Triple::ArchType(Obj->getArch())); in GetTarget()
167 static void DisassembleObject(const ObjectFile *Obj, bool InlineRelocs) { in DisassembleObject() argument
168 const Target *TheTarget = GetTarget(Obj); in DisassembleObject()
175 for (section_iterator i = Obj->begin_sections(), in DisassembleObject()
176 e = Obj->end_sections(); in DisassembleObject()
188 for (symbol_iterator si = Obj->begin_symbols(), in DisassembleObject()
189 se = Obj->end_symbols(); in DisassembleObject()
/external/llvm/include/llvm/MC/MCParser/
DMCAsmParserExtension.h37 T *Obj = static_cast<T*>(Target); in HandleDirective() local
38 return (Obj->*Handler)(Directive, DirectiveLoc); in HandleDirective()
/external/clang/test/CodeGenCXX/
Dvtable-layout.cpp49 struct Obj {}; struct
51 struct Base { virtual const Obj *foo() = 0; };
52 struct Derived : Base { virtual Obj *foo() { return new Obj(); } }; in foo()
/external/clang/include/clang/Basic/
DStmtNodes.td34 // Obj-C statements
135 // Obj-C Expressions.
151 // Obj-C ARC Expressions.
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Tools.pas215 function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
287 function QueryInterface(const IID: TGUID; out Obj): HResult; stdcall;
509 function TList<T>.QueryInterface(const IID: TGUID; out Obj): HResult; in QueryInterface()
511 if GetInterface(IID, Obj) then
675 out Obj): HResult;
677 if GetInterface(IID, Obj) then
/external/clang/test/Parser/
Dcxx-template-decl.cpp56 template <typename T, T Obj> class NTP7;
/external/llvm/lib/Analysis/
DLint.cpp261 Value *Obj = findValue(*AI, /*OffsetOk=*/true); in visitCallSite() local
262 Assert1(!isa<AllocaInst>(Obj), in visitCallSite()
362 Value *Obj = findValue(V, /*OffsetOk=*/true); in visitReturnInst() local
363 Assert1(!isa<AllocaInst>(Obj), in visitReturnInst()
/external/clang/test/SemaTemplate/
Dinstantiate-objc-1.mm3 // Obj-C string literal expressions
/external/clang/lib/CodeGen/
DCodeGenFunction.h367 Cleanup *Obj = new(Buffer) T();
368 (void) Obj;
375 Cleanup *Obj = new(Buffer) T(a0);
376 (void) Obj;
383 Cleanup *Obj = new(Buffer) T(a0, a1);
384 (void) Obj;
391 Cleanup *Obj = new(Buffer) T(a0, a1, a2);
392 (void) Obj;
399 Cleanup *Obj = new(Buffer) T(a0, a1, a2, a3);
400 (void) Obj;
[all …]
/external/webkit/Source/ThirdParty/ANGLE/Configurations/
DBase.xcconfig50 // FIXME: Disable C++ exceptions in the LLVM Compiler once it supports enabling Obj-C exceptions wi…
/external/chromium/chrome/browser/ssl/
Dssl_add_cert_handler_mac.mm36 // The actual implementation of the add-client-cert handler is an Obj-C class.

123