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

1 2 3 4

  /external/swiftshader/third_party/LLVM/include/llvm/Support/
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); }
Recycler.h 89 template<class SubClass, class AllocatorType>
90 SubClass *Allocate(AllocatorType &Allocator) {
91 assert(sizeof(SubClass) <= Size &&
93 assert(AlignOf<SubClass>::Alignment <= Align &&
96 reinterpret_cast<SubClass *>(FreeList.remove(FreeList.begin())) :
97 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
105 template<class SubClass, class AllocatorType>
106 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
InstVisitor.h 28 return static_cast<SubClass*>(this)-> \
39 /// new type for the 'SubClass' template parameter, and "override" visitXXX
77 template<typename SubClass, typename RetTy=void>
89 static_cast<SubClass*>(this)->visit(*Start++);
95 static_cast<SubClass*>(this)->visitModule(M);
99 static_cast<SubClass*>(this)->visitFunction(F);
103 static_cast<SubClass*>(this)->visitBasicBlock(BB);
121 static_cast<SubClass*>(this)-> \
210 // function. If this function is not overloaded in the user's subclass, then
  /external/llvm/include/llvm/Support/
Recycler.h 81 template<class SubClass, class AllocatorType>
82 SubClass *Allocate(AllocatorType &Allocator) {
83 static_assert(AlignOf<SubClass>::Alignment <= Align,
85 static_assert(sizeof(SubClass) <= Size,
87 return FreeList ? reinterpret_cast<SubClass *>(pop_val())
88 : static_cast<SubClass *>(Allocator.Allocate(Size, Align));
96 template<class SubClass, class AllocatorType>
97 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); }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Recycler.h 83 template<class SubClass, class AllocatorType>
84 SubClass *Allocate(AllocatorType &Allocator) {
85 static_assert(alignof(SubClass) <= Align,
87 static_assert(sizeof(SubClass) <= Size,
89 return FreeList ? reinterpret_cast<SubClass *>(pop_val())
90 : static_cast<SubClass *>(Allocator.Allocate(Size, Align));
98 template<class SubClass, class AllocatorType>
99 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); }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
OperandTraits.h 30 template <typename SubClass, unsigned ARITY>
32 static Use *op_begin(SubClass* U) {
34 !std::is_polymorphic<SubClass>::value,
38 static Use *op_end(SubClass* U) {
53 template <typename SubClass, unsigned ARITY = 1>
54 struct OptionalOperandTraits : public FixedNumOperandTraits<SubClass, ARITY> {
68 template <typename SubClass, unsigned MINARITY = 0>
70 static Use *op_begin(SubClass* U) {
72 !std::is_polymorphic<SubClass>::value,
76 static Use *op_end(SubClass* U)
    [all...]
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);
119 static_assert(std::is_base_of<InstVisitor, SubClass>::value,
127 static_cast<SubClass*>(this)-> \
231 return static_cast<SubClass*>(this)->visitCallSite(&I)
    [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)-> \
227 return static_cast<SubClass*>(this)->visitCallSite(&I);
230 return static_cast<SubClass*>(this)->visitCallSite(&I)
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/
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
  /external/swiftshader/third_party/llvm-subzero/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
  /external/dexmaker/dexmaker-mockito-inline-extended-tests/src/main/java/com/android/dx/mockito/inline/extended/tests/
MockStatic.java 66 private static final class SubClass extends SuperClass {
160 MockitoSession session = mockitoSession().mockStatic(SubClass.class).startMocking();
163 assertNull(SubClass.returnB());
164 assertNull(SubClass.returnC());
170 when(SubClass.returnB()).thenReturn("fakeB");
171 when(SubClass.returnC()).thenReturn("fakeC");
174 assertEquals("fakeB", SubClass.returnB());
175 assertEquals("fakeC", SubClass.returnC());
185 assertEquals("superB", SubClass.returnB());
186 assertEquals("subC", SubClass.returnC())
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/outside/
AnnotatedSubscriberFinderTests.java 96 AbstractEventBusTest<AnnotatedAndAbstractInSuperclassTest.SubClass> {
105 static class SubClass extends SuperClass {
130 SubClass createSubscriber() {
131 return new SubClass();
136 AbstractEventBusTest<AnnotatedNotAbstractInSuperclassTest.SubClass> {
162 // the subclass overrides this and does *not* call super.dONAIS(o)
168 // the subclass overrides this and does *not* call super.dOAIS(o)
173 static class SubClass extends SuperClass {
226 SubClass createSubscriber() {
227 return new SubClass();
    [all...]
  /art/test/133-static-invoke-super/src/
Main.java 8 static class SubClass extends SuperClass {
30 (new SubClass()).testDirect(iterations);
35 (new SubClass()).testStatic(iterations);
  /external/mockito/src/test/java/org/mockitousage/annotation/
SpyAnnotationInitializedInBaseClassTest.java 29 class SubClass extends BaseClass {
36 SubClass subClass = new SubClass();
38 MockitoAnnotations.initMocks(subClass);
40 assertTrue(MockUtil.isMock(subClass.list));
  /external/dexmaker/dexmaker-mockito-inline-tests/src/main/java/com/android/dx/mockito/inline/tests/
MockFinal.java 124 private static final class SubClass extends SuperClass {
133 SubClass mocked = mock(SubClass.class);
135 SubClass nonMocked = new SubClass();
182 SubClass spied = spy(SubClass.class);
184 SubClass nonSpied = new SubClass();
  /device/linaro/bootloader/edk2/OvmfPkg/Csm/CsmSupportLib/
LegacyPlatform.h 60 UINT8 SubClass;
65 UINT8 SubClass;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UfsPciHcPei/
UfsPciHcPei.c 85 UINT8 SubClass;
118 SubClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0A));
121 if ((SubClass == 0x09) && (BaseClass == PCI_CLASS_MASS_STORAGE)) {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/
Translate.c 83 // (SubClass, RecordNumber) pair
85 for (; !CompareGuid (&(mConversionTable[Index].SubClass), &gZeroGuid); Index++) {
87 &(mConversionTable[Index].SubClass),
96 if (CompareGuid (&(mConversionTable[Index].SubClass), &gZeroGuid)) {
121 // Look at SubClass, Instance, SubInstance and ProducerName for a matching
124 if (CompareGuid (&(StructureNode->SubClass), &(RecordHeader->DataRecordGuid)) &&
140 // Look at SubClass, Instance and ProducerName for a matching node
142 if (CompareGuid (&(StructureNode->SubClass), &(RecordHeader->DataRecordGuid)) &&
176 // Fill in SubClass, Instance, SubInstance and ProducerName
178 CopyMem (&(StructureNode->SubClass), &(RecordHeader->DataRecordGuid), sizeof (EFI_GUID));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/SdMmcPciHcPei/
SdMmcPciHcPei.c 90 UINT8 SubClass;
130 SubClass = PciRead8 (PCI_LIB_ADDRESS (Bus, Device, Function, 0x0A));
133 if ((SubClass == PCI_SUBCLASS_SD_HOST_CONTROLLER) && (BaseClass == PCI_CLASS_SYSTEM_PERIPHERAL)) {
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmJunoPkg/Drivers/PciHostBridgeDxe/
XPressRich3.c 25 #define CLASS_CODE_REGISTER(Class, SubClass, ProgIf) ((Class << 16) | (SubClass << 8) | ProgIf)
80 // Offset 0a: SubClass 04 PCI-PCI Bridge
  /external/skia/src/sfnt/
SkIBMFamilyClass.h 32 union SubClass {
  /external/skqp/src/sfnt/
SkIBMFamilyClass.h 32 union SubClass {

Completed in 2368 milliseconds

1 2 3 4