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

1 2 3 4 5 6 78 91011>>

  /external/eigen/test/
denseLM.cpp 23 typedef DenseFunctor<Scalar> Base;
24 typedef typename Base::JacobianType JacobianType;
33 int m = Base::values();
34 int n = Base::inputs();
59 int m = Base::values();
60 int n = Base::inputs();
80 int m = Base::values();
81 int n = Base::inputs();
sparseLM.cpp 24 typedef SparseFunctor<Scalar,int> Base;
25 typedef typename Base::JacobianType JacobianType;
32 int m = Base::values();
33 int n = Base::inputs();
61 int m = Base::values();
62 int n = Base::inputs();
85 int m = Base::values();
86 int n = Base::inputs();
  /external/libchrome/sandbox/win/src/
crosscall_client.h 186 typedef CopyHelper<const wchar_t*> Base;
187 CopyHelper(wchar_t* t) : Base(t) {}
190 return Base::GetStart();
194 return Base::Update(buffer);
197 uint32_t GetSize() const { return Base::GetSize(); }
200 return Base::IsInOut();
204 return Base::GetType();
214 typedef CopyHelper<const wchar_t*> Base;
215 CopyHelper(array t) : Base(t) {}
218 return Base::GetStart()
    [all...]
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 91 typedef A_base_0 Base;
118 // member function w/base
120 Base a;
150 // const member function w/base
152 Base const a;
177 // member object w/base
179 Base a{42};
203 typedef A_base_1 Base;
227 // member function w/base
229 Base a
    [all...]
  /external/libcxxabi/test/
catch_multi_level_pointer.pass.cpp 26 struct Base {};
27 struct Derived : public Base {};
135 generate_tests<Base, Derived, 2>()();
136 generate_tests<Derived, Base, 2>()();
catch_pointer_reference.pass.cpp 16 // * the handler is of type cv T or cv T& and T is an unambiguous base
33 struct Base {};
34 struct Derived : Base {};
35 struct Derived2 : Base {};
37 struct Private : private Base {};
38 struct Protected : protected Base {};
99 // cv1 Base * cv2
102 assert_catches< Base * , Derived *, Derived>();
103 assert_catches<const Base * , Derived *, Derived>();
104 assert_catches< volatile Base * , Derived *, Derived>()
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineDominanceFrontier.h 21 ForwardDominanceFrontierBase<MachineBasicBlock> Base;
37 return Base;
41 return Base.getRoots();
45 return Base.getRoot();
49 return Base.isPostDominator();
53 return Base.begin();
57 return Base.begin();
61 return Base.end();
65 return Base.end();
69 return Base.find(B)
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 251 // a base address (a local symbol with no preceding non-local symbol),
273 Fixup.getLoc(), "unsupported relocation with identical base");
306 const MCSymbol *Base = Asm.getAtom(*Symbol);
308 // If the symbol is a variable and we weren't able to get a Base for it
311 if (Symbol->isVariable() && !Base) {
341 Base = nullptr;
347 if (Base) {
348 RelSymbol = Base;
351 if (Base != Symbol)
353 Layout.getSymbolOffset(*Symbol) - Layout.getSymbolOffset(*Base);
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrBuilder.h 20 // (Operand), Base, Scale, Index, Displacement.
34 /// The base register can be a frame index, which will eventually be replaced
46 } Base;
57 Base.Reg = 0;
65 MO.push_back(MachineOperand::CreateReg(Base.Reg, false, false,
69 MO.push_back(MachineOperand::CreateFI(Base.FrameIndex));
128 MIB.addReg(AM.Base.Reg);
131 MIB.addFrameIndex(AM.Base.FrameIndex);
143 /// addFrameReference - This function is used to add a reference to the base of
145 /// reference has base register as the FrameIndex offset until it is resolved
    [all...]
  /external/llvm/unittests/Support/
CommandLineTest.cpp 50 typedef cl::opt<T> Base;
54 explicit StackOption(const M0t &M0) : Base(M0) {}
58 StackOption(const M0t &M0, const M1t &M1) : Base(M0, M1) {}
62 StackOption(const M0t &M0, const M1t &M1, const M2t &M2) : Base(M0, M1, M2) {}
67 : Base(M0, M1, M2, M3) {}
  /external/mesa3d/src/mesa/drivers/dri/swrast/
swrast_priv.h 61 /* mesa, base class, must be first */
62 struct gl_context Base;
82 /* mesa, base class, must be first */
83 struct gl_framebuffer Base;
105 struct swrast_renderbuffer Base;
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 29 /** Base Request class for testing allowing both the deprecated and new constructor. */
30 private static class Base extends Request<byte[]> {
32 public Base(String url, Response.ErrorListener listener) {
36 public Base(int method, String url, Response.ErrorListener listener) {
51 public static class DeprecatedGet extends Base {
58 public static class DeprecatedPost extends Base {
74 public static class Get extends Base {
84 public static class Post extends Base {
109 public static class Put extends Base {
131 public static class Delete extends Base {
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_rtti.cpp 40 struct Base {};
41 struct Derived : Base {};
74 Base* pbase = &derived;
77 CHECK(typeid(pbase) == typeid(Base*));
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_pointer_reference.pass.cpp 16 // * the handler is of type cv T or cv T& and T is an unambiguous base
33 struct Base {};
34 struct Derived : Base {};
35 struct Derived2 : Base {};
37 struct Private : private Base {};
38 struct Protected : protected Base {};
99 // cv1 Base * cv2
102 assert_catches< Base * , Derived *, Derived>();
103 assert_catches<const Base * , Derived *, Derived>();
104 assert_catches< volatile Base * , Derived *, Derived>()
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 40 struct Base {};
41 struct Derived : Base {};
74 Base* pbase = &derived;
77 CHECK(typeid(pbase) == typeid(Base*));
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
prettywriter.h 37 typedef Writer<OutputStream, SourceEncoding, TargetEncoding, StackAllocator> Base;
38 typedef typename Base::Ch Ch;
45 PrettyWriter(OutputStream& os, StackAllocator* allocator = 0, size_t levelDepth = Base::kDefaultLevelDepth) :
46 Base(os, allocator, levelDepth), indentChar_(' '), indentCharCount_(4) {}
65 bool Null() { PrettyPrefix(kNullType); return Base::WriteNull(); }
66 bool Bool(bool b) { PrettyPrefix(b ? kTrueType : kFalseType); return Base::WriteBool(b); }
67 bool Int(int i) { PrettyPrefix(kNumberType); return Base::WriteInt(i); }
68 bool Uint(unsigned u) { PrettyPrefix(kNumberType); return Base::WriteUint(u); }
69 bool Int64(int64_t i64) { PrettyPrefix(kNumberType); return Base::WriteInt64(i64); }
70 bool Uint64(uint64_t u64) { PrettyPrefix(kNumberType); return Base::WriteUint64(u64); }
    [all...]
  /external/clang/test/CodeGenCXX/
bitfield.cpp 288 struct Base {
289 virtual ~Base() {}
295 struct Derived : public Base {
299 unsigned read(Base* s) {
317 void write(Base* s, unsigned x) {
431 // Similar to N4 except that this adds a virtual base to the picture. (PR18430)
  /external/clang/test/Layout/
ms-vtordisp-local.cpp 3 struct Base {
4 virtual ~Base() {}
13 struct HasVtorDisp : virtual Base {
27 // CHECK-NEXT: 20 | (vtordisp for vbase Base)
28 // CHECK-NEXT: 24 | struct Base (virtual base)
29 // CHECK-NEXT: 24 | (Base vftable pointer)
36 struct NoVtorDisp1 : virtual Base {
49 // CHECK-NEXT: 16 | struct Base (virtual base)
    [all...]
  /external/gmock/test/
gmock_stress_test.cc 68 class Base {
70 explicit Base(int a_x) : x_(a_x) {}
71 virtual ~Base() {}
77 class Derived1 : public Base {
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
85 class Derived2 : public Base {
87 Derived2(int a_x, int a_z) : Base(a_x), z_(a_z) {}
113 linked_ptr<Base> p2;
  /external/google-breakpad/src/testing/test/
gmock_stress_test.cc 68 class Base {
70 explicit Base(int a_x) : x_(a_x) {}
71 virtual ~Base() {}
77 class Derived1 : public Base {
79 Derived1(int a_x, int a_y) : Base(a_x), y_(a_y) {}
85 class Derived2 : public Base {
87 Derived2(int a_x, int a_z) : Base(a_x), z_(a_z) {}
113 linked_ptr<Base> p2;
  /external/skia/tests/
GrTRecorderTest.cpp 128 class Base {
130 typedef GrTRecorder<Base, void*> Recorder;
132 Base() {
137 virtual ~Base() { --activeRecorderItems; }
149 class Subclass : public Base {
156 Base::validate(reporter);
181 class SubclassExtraData : public Base {
193 Base::validate(reporter);
205 class SubclassEmpty : public Base {
221 static void test_subclasses_iters(skiatest::Reporter*, Order&, Base::Recorder::Iter&
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64_test.cc 23 #include "base/bit_utils.h"
24 #include "base/stl_util.h"
45 uint32_t> Base;
217 (Base::GetAssembler()->*f)(mips64::A0, &label);
227 (Base::GetAssembler()->*f)(mips64::A1, &label);
246 (Base::GetAssembler()->*f)(mips64::A0, mips64::A1, &label);
256 (Base::GetAssembler()->*f)(mips64::A2, mips64::A3, &label);
    [all...]
  /art/test/093-serialization/src/
Main.java 92 class Base implements Serializable {
99 public Base() {
106 class Sub extends Base {
  /external/clang/lib/AST/
MicrosoftCXXABI.cpp 154 // we have a non-primary base class, which uses the multiple inheritance model.
160 const CXXRecordDecl *Base =
162 if (RD->isPolymorphic() && !Base->isPolymorphic())
164 RD = Base;
206 // // (possibly) selecting the virtual base but before resolving and calling
216 // // An offset within the vb-table that selects the virtual base containing
218 // // added to the address of the vb-table pointer to produce the base.
  /external/clang/lib/CodeGen/
CGCXX.cpp 32 /// Try to emit a base destructor as an alias to its primary
33 /// base-class destructor.
38 // Producing an alias to a base class ctor/dtor can degrade debug quality
75 // Try to find a unique base class with a non-trivial destructor.
79 // We're in the base destructor, so skip virtual bases.
82 // Skip base classes with trivial destructors.
83 const auto *Base =
85 if (Base->hasTrivialDestructor()) continue;
87 // If we've already found a base class with a non-trivial
90 UniqueBase = Base;
    [all...]

Completed in 699 milliseconds

1 2 3 4 5 6 78 91011>>