HomeSort by relevance Sort by last modified time
    Searched refs:SubClass (Results 1 - 17 of 17) sorted by null

  /external/llvm/include/llvm/Support/
Recycler.h 101 template<class SubClass, class AllocatorType>
102 SubClass *Allocate(AllocatorType &Allocator) {
103 assert(sizeof(SubClass) <= Size &&
105 assert(AlignOf<SubClass>::Alignment <= Align &&
108 reinterpret_cast<SubClass *>(FreeList.remove(FreeList.begin())) :
109 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
117 template<class SubClass, class AllocatorType>
118 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
RecyclingAllocator.h 41 /// SubClass. The storage may be either newly allocated or recycled.
43 template<class SubClass>
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
51 template<class SubClass>
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/check_cast/d/
T_check_cast_2.d 34 .class public dot.junit.opcodes.check_cast.d.T_check_cast_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass/<init>()V
67 ; (SubClass[] instanceof SuperClass[])
69 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
73 ; (SubClass[] instanceof Object)
74 new-array v10, v11, [Ldot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass;
77 ; (SubClass instanceof SuperInterface)
78 new-instance v10, dot/junit/opcodes/check_cast/d/T_check_cast_2/SubClass
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/instance_of/d/
T_instance_of_2.d 34 .class public dot.junit.opcodes.instance_of.d.T_instance_of_2.SubClass
62 ; (SubClass instanceof SuperClass)
63 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
64 invoke-direct {v10}, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass/<init>()V
68 ; (SubClass[] instanceof SuperClass[])
70 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
74 ; (SubClass[] instanceof Object)
75 new-array v10, v11, [Ldot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass;
79 ; (SubClass instanceof SuperInterface)
80 new-instance v10, dot/junit/opcodes/instance_of/d/T_instance_of_2/SubClass
    [all...]
  /external/llvm/include/llvm/IR/
OperandTraits.h 30 template <typename SubClass, unsigned ARITY>
32 static Use *op_begin(SubClass* U) {
35 static Use *op_end(SubClass* U) {
50 template <typename SubClass, unsigned ARITY = 1>
51 struct OptionalOperandTraits : public FixedNumOperandTraits<SubClass, ARITY> {
65 template <typename SubClass, unsigned MINARITY = 0>
67 static Use *op_begin(SubClass* U) {
70 static Use *op_end(SubClass* U) {
85 /// Assumes that the User subclass that is determined by this traits class
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_object/d/
T_aput_object_3.d 33 .class public dot.junit.opcodes.aput_object.d.SubClass
61 ; v2 = SubClass[]
62 new-array v2, v0, [Ldot/junit/opcodes/aput_object/d/SubClass;
67 ; v4 = SubClass
68 new-instance v4, dot/junit/opcodes/aput_object/d/SubClass
69 invoke-direct {v4}, dot/junit/opcodes/aput_object/d/SubClass/<init>()V
86 ; (SubClass -> SuperClass[])
89 ; (SubClass -> SuperInterface[])
92 ; (SubClass -> Object[])
95 ; !(SuperClass -> SubClass[])
    [all...]
  /external/llvm/include/llvm/
InstVisitor.h 31 return static_cast<SubClass*>(this)-> \
42 /// new type for the 'SubClass' template parameter, and "override" visitXXX
80 template<typename SubClass, typename RetTy=void>
92 static_cast<SubClass*>(this)->visit(*Start++);
98 static_cast<SubClass*>(this)->visitModule(M);
102 static_cast<SubClass*>(this)->visitFunction(F);
106 static_cast<SubClass*>(this)->visitBasicBlock(BB);
124 static_cast<SubClass*>(this)-> \
220 return static_cast<SubClass*>(this)->visitCallSite(&I);
223 return static_cast<SubClass*>(this)->visitCallSite(&I)
    [all...]
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 76 /// getAllocatableClass - Return the maximal subclass of the given register
83 const unsigned *SubClass = RC->getSubClassMask();
87 for (unsigned Mask = *SubClass++; Mask; Mask >>= 1) {
134 // A register class with no allocatable subclass returns an empty set.
135 const TargetRegisterClass *SubClass = getAllocatableClass(RC);
136 if (SubClass)
137 getAllocatableSetForRC(MF, SubClass, Allocatable);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_property.py 37 class SubClass(BaseClass):
41 """SubClass.getter"""
98 sub = SubClass()
106 sub = SubClass()
107 self.assertEqual(sub.__class__.spam.__doc__, "SubClass.getter")
134 """This is a subclass of property"""
137 """This is a subclass of property that defines __slots__"""
160 """spam wrapped in property subclass"""
164 "spam wrapped in property subclass")
173 """spam wrapped in property subclass"""
    [all...]
  /art/test/064-field-access/src/
Main.java 25 SubClass.main(null);
202 class SubClass extends PublicClass {
207 * source of the reflection call. otherInst.getValue() uses a subclass
211 SubClass subOther = new SubClass();
  /external/chromium_org/third_party/skia/src/sfnt/
SkIBMFamilyClass.h 34 union SubClass {
  /external/skia/src/sfnt/
SkIBMFamilyClass.h 34 union SubClass {
  /external/llvm/lib/TableGen/
TGParser.cpp 146 /// AddSubClass - Add SubClass as a subclass to CurRec, resolving its template
147 /// args as SubClass's template arguments.
148 bool TGParser::AddSubClass(Record *CurRec, SubClassReference &SubClass) {
149 Record *SC = SubClass.Rec;
150 // Add all of the values in the subclass into the current class.
153 if (AddValue(CurRec, SubClass.RefRange.Start, Vals[i]))
159 if (TArgs.size() < SubClass.TemplateArgs.size())
160 return Error(SubClass.RefRange.Start,
166 if (i < SubClass.TemplateArgs.size())
    [all...]
TGParser.h 111 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
  /external/chromium_org/v8/src/
code-stubs.h 360 template<class SubClass>
362 SubClass::GenerateAheadOfTime(isolate);
363 return SubClass().GetCode(isolate);
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/closure/
base.js 486 * Now if a subclass of Foo fails to override bar(), an error
990 // and SubClass.prototype will be the same.
    [all...]

Completed in 670 milliseconds