HomeSort by relevance Sort by last modified time
    Searched defs:Base (Results 101 - 125 of 502) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/llvm/include/llvm/Support/
RecyclingAllocator.h 29 /// Base - Implementation details.
31 Recycler<T, Size, Align> Base;
38 ~RecyclingAllocator() { Base.clear(Allocator); }
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); }
46 T *Allocate() { return Base.Allocate(Allocator); }
52 void Deallocate(SubClass* E) { return Base.Deallocate(Allocator, E); }
56 Base.PrintStats();
  /external/llvm/lib/Target/MSP430/
MSP430AsmPrinter.cpp 85 // register base, we should not emit any prefix symbol here, e.g.
107 const MachineOperand &Base = MI->getOperand(OpNum);
113 if (Disp.isImm() && !Base.getReg())
117 // Print register base field
118 if (Base.getReg()) {
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_buffer_objects.h 42 struct gl_buffer_object Base;
intel_fbo.h 50 struct swrast_renderbuffer Base;
79 * gl_renderbuffer is a base class which we subclass. The Class field
94 if (irb && irb->Base.Base.ClassID == INTEL_RB_CLASS) {
129 return rb->Base.Base.Format;
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.h 48 struct gl_renderbuffer Base;
  /external/pdfium/third_party/bigint/
BigUnsignedInABase.hh 16 * only by available memory, represented in a user-specified base that can fit
43 // That's also the type of a base.
44 typedef Digit Base;
47 // The base in which this BigUnsignedInABase is expressed
48 Base base; member in class:BigUnsignedInABase
60 // Constructs zero in base 2.
61 BigUnsignedInABase() : NumberlikeArray<Digit>(), base(2) {}
64 BigUnsignedInABase(const BigUnsignedInABase &x) : NumberlikeArray<Digit>(x), base(x.base) {}
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmshalf.c 407 static cmsUInt16Number Base[512] = {
    [all...]
  /external/testng/src/test/java/test/invokedmethodlistener/
Base.java 13 public class Base {
16 public Base(boolean fail) {
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
inherited_exception.pass.cpp 16 // | * the handler is of type cv T or cv T& and T is an unambiguous base |
30 struct Base {
38 struct Child : public Base, public Base2 {
77 catch (const Base& b)
91 catch (const Base& c)
131 catch (const Base& b)
149 catch (const Base* c)
  /ndk/tests/device/test-stlport_shared-exception/jni/
eh-alloca-1.cpp 19 class Base {};
21 struct A : virtual public Base
eh-inline-2.cpp 19 class Base {};
21 struct A : virtual public Base
eh-vararg-1.cpp 20 class Base {};
22 struct A : virtual public Base
eh-vararg-2.cpp 20 class Base {};
22 struct A : virtual public Base
  /ndk/tests/device/test-stlport_static-exception/jni/
eh-alloca-1.cpp 19 class Base {};
21 struct A : virtual public Base
eh-inline-2.cpp 19 class Base {};
21 struct A : virtual public Base
eh-vararg-1.cpp 20 class Base {};
22 struct A : virtual public Base
eh-vararg-2.cpp 20 class Base {};
22 struct A : virtual public Base
  /toolchain/binutils/binutils-2.25/gold/testsuite/
debug_msg.cc 48 class Base
53 class Derived : public Base
78 Base b;
  /external/clang/test/CXX/except/except.spec/
p14.cpp 13 struct X2 : public X0, public X1 { }; // expected-error 2{{exception specification of overriding function is more lax than base version}}
106 struct Base {
107 virtual ~Base() {}
110 struct Derived : Base {
118 struct Base {
119 Base(X<0>) noexcept(true);
120 Base(X<1>) noexcept(false);
121 Base(X<2>) throw(X<2>);
122 template<typename T> Base(T) throw(T);
127 struct Derived : Base, Throw<X<3>>
    [all...]
  /external/clang/test/SemaTemplate/
virtual-member-functions.cpp 47 struct Base {
48 virtual ~Base() {
55 struct Derived : Base<T> {
59 template struct Derived<int>; // expected-note {{in instantiation of member function 'Base<int>::~Base' requested here}}
84 class Inner : public A { }; // expected-error{{base class 'PR7114::A' has private destructor}}
138 struct Base {
139 virtual ~Base();
142 struct AvoidVTable : Base {
161 struct Base {
    [all...]
  /external/compiler-rt/test/msan/
dtor-multiple-inheritance-nontrivial-class-members.cc 57 struct Base {
68 Base(int *derived_a, Vector<int> *derived_v1, Vector<int> *derived_v2,
79 virtual ~Base() {
92 struct Derived : public Base, public Intermediate {
100 : Base(&derived_a, &derived_v1, &derived_v2, &derived_b, &derived_c) {
120 // Keep track of members of VirtualBase, since the virtual base table
133 // Inherited from base
  /external/protobuf/src/google/protobuf/stubs/
type_traits_unittest.cc 160 // A base class and a derived class that inherits from it, used for
162 class Base {
164 virtual ~Base() { }
167 class Derived : public Base {
603 EXPECT_TRUE((is_same<Base*, Base*>::value));
605 EXPECT_FALSE((is_same<Base*, Derived*>::value));
606 EXPECT_FALSE((is_same<Derived*, Base*>::value));
618 EXPECT_TRUE((is_convertible<Derived*, Base*>::value));
619 EXPECT_FALSE((is_convertible<Base*, Derived*>::value))
    [all...]
  /art/compiler/utils/x86/
assembler_x86_test.cc 19 #include "base/arena_allocator.h"
20 #include "base/stl_util.h"
40 x86::XmmRegister, x86::Immediate> Base;
280 std::string rorl_fn(AssemblerX86Test::Base* assembler_test, x86::X86Assembler* assembler) {
303 std::string roll_fn(AssemblerX86Test::Base* assembler_test, x86::X86Assembler* assembler) {
  /art/test/077-method-override/src/
Base.java 17 public class Base {
19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
    [all...]
  /art/test/077-method-override/src2/
Base.java 17 public class Base {
19 System.out.println("declaredInBase: Base");
23 System.out.println("overridden: Base");
28 // System.out.println("wasOverridden: Base");
35 System.out.println("overrideWithPublic: Base");
43 System.out.println("overridePublicWithProtected: Base");
50 System.out.println("overrideProtectedWithPublic: Base");
58 System.out.println("overridePublicWithPrivate: Base");
65 System.out.println("overridePrivateWithPublic: Base");
73 System.out.println("overrideVirtualWithStatic: Base");
    [all...]

Completed in 511 milliseconds

1 2 3 45 6 7 8 91011>>