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 100 template<class SubClass, class AllocatorType>
101 SubClass *Allocate(AllocatorType &Allocator) {
102 static_assert(AlignOf<SubClass>::Alignment <= Align,
104 static_assert(sizeof(SubClass) <= Size,
107 reinterpret_cast<SubClass *>(FreeList.remove(FreeList.begin())) :
108 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
116 template<class SubClass, class AllocatorType>
117 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
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)-> \
221 return static_cast<SubClass*>(this)->visitCallSite(&I);
224 return static_cast<SubClass*>(this)->visitCallSite(&I)
    [all...]
  /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...]
  /art/test/133-static-invoke-super/src/
Main.java 8 static class SubClass extends SuperClass {
30 (new SubClass()).testDirect(interations);
35 (new SubClass()).testStatic(interations);
  /external/chromium_org/extensions/test/data/
utils_unittest.js 37 var SubClass = utils.expose('SubClass',
53 var sub = new SubClass();
62 AssertTrue(sub instanceof SubClass);
70 { superclass: SubClass,
81 AssertTrue(subsub instanceof SubClass);
  /external/llvm/lib/CodeGen/
TargetRegisterInfo.cpp 84 /// getAllocatableClass - Return the maximal subclass of the given register
91 const unsigned *SubClass = RC->getSubClassMask();
95 for (unsigned Mask = *SubClass++; Mask; Mask >>= 1) {
142 // A register class with no allocatable subclass returns an empty set.
143 const TargetRegisterClass *SubClass = getAllocatableClass(RC);
144 if (SubClass)
145 getAllocatableSetForRC(MF, SubClass, Allocatable);
  /external/chromium_org/third_party/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 113 bool AddSubClass(Record *Rec, SubClassReference &SubClass);
  /art/test/064-field-access/src/
Main.java 26 SubClass.main(null);
208 class SubClass extends PublicClass {
213 * source of the reflection call. otherInst.getValue() uses a subclass
217 SubClass subOther = new SubClass();
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
HeapTest.cpp     [all...]
  /external/chromium_org/v8/src/
code-stubs.h 438 template<class SubClass>
440 SubClass::GenerateAheadOfTime(isolate);
441 return SubClass().GetCode(isolate);
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/
base.js 535 * Now if a subclass of Foo fails to override bar(), an error will be thrown
    [all...]

Completed in 317 milliseconds