HomeSort by relevance Sort by last modified time
    Searched refs:Base (Results 51 - 75 of 931) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
microsoft-abi-methods.cpp 62 class Base {
64 Base() {}
65 ~Base() {}
68 class Child: public Base { };
72 // Make sure that the Base constructor call in the Child constructor uses
75 // CHECK: %{{[.0-9A-Z_a-z]+}} = call x86_thiscallcc %class.Base* @"\01??0Base@@QAE@XZ"
78 // Make sure that the Base destructor call in the Child denstructor uses
81 // CHECK: call x86_thiscallcc void @"\01??1Base@@QAE@XZ"
84 // Make sure that the Base destructor definition uses the right CC
    [all...]
apple-kext-linkage.C 3 struct Base {
4 virtual ~Base();
7 struct Derived : Base {
copy-constructor-elim-2.cpp 9 // Verify that we do not elide copies when constructing a base class.
11 struct Base {
12 Base(const Base&);
13 ~Base();
17 operator Base() const;
20 struct Derived : public virtual Base {
29 : Base(O)
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
assign_rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
rv_pair_U_V.pass.cpp 20 struct Base
22 virtual ~Base() {}
26 : public Base
35 typedef std::pair<std::unique_ptr<Base>, long> P2;
  /external/clang/test/Index/
cursor-ref-names.cpp 2 struct Base {
7 struct Sub: public Base<int> {
22 inst.Base<int>::operator[](1);
45 // CHECK: cursor-ref-names.cpp:22:10: TemplateRef=Base:2:8 Extent=[22:10 - 22:14]
comment-cplus-template-decls.cpp 46 struct Base {
52 template<typename T> struct E : Base {
56 using Base::foo;
58 // CHECK: <Declaration>template &lt;typename T&gt; struct E : Base {}</Declaration>
59 // CHECK: <Declaration>using Base::foo</Declaration>
  /ndk/tests/device/test-stlport_shared-exception/jni/
reg-stack.cpp 11 struct Base
13 virtual ~Base() {}
16 struct Foo : public Base
  /ndk/tests/device/test-stlport_static-exception/jni/
reg-stack.cpp 11 struct Base
13 virtual ~Base() {}
16 struct Foo : public Base
  /external/clang/test/SemaCXX/
pragma-pack.cpp 6 struct Base {
11 struct Sub : public Base {
22 struct Base {
23 virtual ~Base();
28 struct Sub : virtual Base {
user-defined-conversions.cpp 42 struct Base {
43 Base(const FunkyDerived&);
46 struct Derived : Base { };
48 struct FunkyDerived : Base { };
51 operator Base();
64 Base b1 = ctb;
65 Base b2(ctb);
66 Base b3 = ctd;
67 Base b4(ctd);
68 Base b5 = ctfd
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.cons/
reverse_iterator.pass.cpp 29 assert(r1.base() == u);
32 struct Base {};
33 struct Derived : Base {};
39 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
40 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
41 test<Base*>(&d);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.op=/
reverse_iterator.pass.cpp 31 assert(r1.base() == u);
35 struct Base {};
36 struct Derived : Base {};
42 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
43 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
44 test<Base*>(&d);
  /external/eigen/Eigen/src/Core/
MapBase.h 23 * \brief Base class for Map and Block expression with direct access
32 typedef typename internal::dense_xpr_base<Derived>::type Base;
36 SizeAtCompileTime = Base::SizeAtCompileTime
50 using Base::derived;
51 // using Base::RowsAtCompileTime;
52 // using Base::ColsAtCompileTime;
53 // using Base::SizeAtCompileTime;
54 using Base::MaxRowsAtCompileTime;
55 using Base::MaxColsAtCompileTime;
56 using Base::MaxSizeAtCompileTime
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 66 typedef typename MatrixTypeNestedCleaned::InnerIterator Base;
70 : Base(view.nestedExpression(), outer), m_returnOne(false)
75 Base::operator++();
79 else if(HasUnitDiag && ((!Base::operator bool()) || Base::index()>=Base::outer()))
81 if((!SkipFirst) && Base::operator bool())
82 Base::operator++();
93 Base::operator++();
94 if(HasUnitDiag && (!SkipFirst) && ((!Base::operator bool()) || Base::index()>=Base::outer())
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/
move_iterator.pass.cpp 31 assert(r1.base() == u);
35 struct Base {};
36 struct Derived : Base {};
42 test<input_iterator<Base*> >(input_iterator<Derived*>(&d));
43 test<forward_iterator<Base*> >(forward_iterator<Derived*>(&d));
44 test<bidirectional_iterator<Base*> >(bidirectional_iterator<Derived*>(&d));
45 test<random_access_iterator<const Base*> >(random_access_iterator<Derived*>(&d));
46 test<Base*>(&d);
  /external/chromium_org/sync/internal_api/public/util/
weak_handle_unittest.cc 7 #include "base/bind.h"
8 #include "base/compiler_specific.h"
9 #include "base/location.h"
10 #include "base/memory/weak_ptr.h"
11 #include "base/message_loop/message_loop.h"
12 #include "base/threading/thread.h"
22 class Base {
24 Base() : weak_ptr_factory_(this) {}
26 WeakHandle<Base> AsWeakHandle() {
36 MOCK_METHOD2(Test2, void(const int&, Base*));
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p12.cpp 4 // When a using-declaration brings names from a base class into a
7 // parameter types in a base class (rather than conflicting).
27 struct Base {
34 struct Test0 : Base {
35 using Base::foo;
46 struct Test1 : Base {
49 using Base::foo;
58 struct Test2 : Base {
60 using Base::foo;
73 struct Base {
    [all...]
p13.cpp 9 // were a pointer to the derived class rather than to the base
11 // other respects the function remains a member of the base class.
17 struct Base {
24 struct Derived : Base {
25 using Base::test0;
28 using Base::test1;
31 using Base::test2;
34 using Base::test3;
  /external/clang/include/clang/AST/
BaseSubobject.h 25 // BaseSubobject - Uniquely identifies a direct or indirect base class.
26 // Stores both the base class decl and the offset from the most derived class to
27 // the base class. Used for vtable and VTT generation.
29 /// Base - The base class declaration.
30 const CXXRecordDecl *Base;
32 /// BaseOffset - The offset from the most derived class to the base class.
37 BaseSubobject(const CXXRecordDecl *Base, CharUnits BaseOffset)
38 : Base(Base), BaseOffset(BaseOffset) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransport.h 31 #include "talk/p2p/base/dtlstransportchannel.h"
32 #include "talk/p2p/base/transport.h"
42 // Base should be a descendant of cricket::Transport
43 template<class Base>
44 class DtlsTransport : public Base {
51 : Base(signaling_thread, worker_thread, content_name, allocator),
56 Base::DestroyAllChannels();
66 Base::local_description()->identity_fingerprint.get();
91 // Apply the description in the base class.
92 return Base::ApplyLocalTransportDescription_w(channel)
    [all...]
  /art/test/068-classloader/src/
DoubledExtend.java 20 public class DoubledExtend extends Base {
  /art/test/078-polymorphic-virtual/src/
Base.java 17 public class Base extends Thread {
  /dalvik/tests/068-classloader/src/
DoubledExtend.java 6 public class DoubledExtend extends Base {
  /dalvik/tests/078-polymorphic-virtual/src/
Base.java 17 public class Base extends Thread {

Completed in 847 milliseconds

1 23 4 5 6 7 8 91011>>