HomeSort by relevance Sort by last modified time
    Searched defs:Obj (Results 1 - 13 of 13) sorted by null

  /ndk/tests/device/test-cxx-init-array/jni/
test.cpp 4 GlobalCtor Obj;
8 if (Obj.IsInitialized())
  /external/llvm/lib/IR/
User.cpp 63 User *Obj = reinterpret_cast<User*>(End);
64 Obj->OperandList = Start;
65 Obj->NumOperands = Us;
67 return Obj;
  /external/stlport/test/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-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/include/llvm/MC/MCParser/
MCAsmParserExtension.h 37 T *Obj = static_cast<T*>(Target);
38 return (Obj->*Handler)(Directive, DirectiveLoc);
  /external/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 88 static void retain(T *obj) { obj->Retain(); }
89 static void release(T *obj) { obj->Release(); }
104 /// Obj->Retain()/Obj->Release(). Release() is required to destroy
111 T* Obj;
116 explicit IntrusiveRefCntPtr() : Obj(0) {}
118 IntrusiveRefCntPtr(T* obj) : Obj(obj)
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 261 Value *Obj = findValue(*AI, /*OffsetOk=*/true);
262 Assert1(!isa<AllocaInst>(Obj),
362 Value *Obj = findValue(V, /*OffsetOk=*/true);
363 Assert1(!isa<AllocaInst>(Obj),
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.cpp 84 DyldELFObject<ELFT> *Obj)
85 : ObjectImageCommon(Input, Obj),
86 DyldObj(Obj),
163 DyldELFObject<ELFType<support::little, 4, false> > *Obj =
166 return new ELFObjectImage<ELFType<support::little, 4, false> >(Buffer, Obj);
169 DyldELFObject<ELFType<support::big, 4, false> > *Obj =
172 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj);
175 DyldELFObject<ELFType<support::big, 8, true> > *Obj =
178 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj);
181 DyldELFObject<ELFType<support::little, 8, true> > *Obj
    [all...]
  /external/clang/test/CodeGenCXX/
vtable-layout.cpp 50 struct Obj {};
52 struct Base { virtual const Obj *foo() = 0; };
53 struct Derived : Base { virtual Obj *foo() { return new Obj(); } };
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.h 377 Cleanup *Obj = new(Buffer) T();
378 (void) Obj;
385 Cleanup *Obj = new(Buffer) T(a0);
386 (void) Obj;
393 Cleanup *Obj = new(Buffer) T(a0, a1);
394 (void) Obj;
401 Cleanup *Obj = new(Buffer) T(a0, a1, a2);
402 (void) Obj;
409 Cleanup *Obj = new(Buffer) T(a0, a1, a2, a3);
410 (void) Obj;
    [all...]
  /external/v8/src/
liveobjectlist.cc 168 bool IsOfType(LiveObjectType type, HeapObject* obj) {
175 if (obj->Is##type_()) return (type == kType##type_);
259 inline bool Matches(HeapObject* obj) {
260 return !is_active() || MatchesSlow(obj);
267 bool MatchesSlow(HeapObject* obj);
334 bool LolFilter::MatchesSlow(HeapObject* obj) {
335 if ((type_ != kInvalidLiveObjType) && !IsOfType(type_, obj)) {
336 return false; // Fail because obj is not of the type of interest.
338 if ((space_ != kInvalidSpace) && !InSpace(space_, obj)) {
339 return false; // Fail because obj is not in the space of interest
588 HeapObject* obj = *target; local
1673 Object* obj = reinterpret_cast<Object*>(value); local
1857 JSObject* obj = JSObject::cast(heap_obj); local
1989 Object* obj = GetObj(obj_id); local
2063 Object* obj = object_stack_[i]; local
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 483 milliseconds