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

12 3 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_shared-exception/jni/
reg-stack.cpp 11 struct Base
13 virtual ~Base() {}
16 struct Foo : public Base
spec3.cpp 6 class Base {};
8 struct A : virtual public Base
  /ndk/tests/device/test-stlport_static-exception/jni/
reg-stack.cpp 11 struct Base
13 virtual ~Base() {}
16 struct Foo : public Base
spec3.cpp 6 class Base {};
8 struct A : virtual public Base
  /art/test/078-polymorphic-virtual/src/
Base.java 17 public class Base extends Thread {
  /art/test/569-checker-pattern-replacement/src-multidex/
Base.java 17 public class Base {
18 Base() {
24 Base(int intValue) {
28 Base(String stringValue) {
34 Base(double doubleValue, Object objectValue) {
39 Base(int intValue, double doubleValue, Object objectValue) {
45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) {
53 Base(double doubleValue) {
57 Base(Object objectValue) {
62 Base(int intValue, long dummy)
    [all...]
  /external/clang/test/CodeGenCXX/
ms_struct.cpp 12 struct ATTR Base : virtual VBase {
16 struct ATTR Derived : Base {
23 // CHECK: [[DERIVED:%.*]] = type <{ [[BASE:%.*]], i32, [4 x i8] }>
24 // CHECK: [[BASE]] = type { [[VBASE:%.*]] }
29 // CHECK: [[T0:%.*]] = bitcast [[DERIVED]]* [[SELF]] to [[BASE]]*
30 // CHECK: call void @_ZN4BaseC2Ev([[BASE]]* [[T0]], i8**
apple-kext-indirect-call.cpp 5 struct Base {
9 void Base::abc(void) const {}
11 void FUNC(Base* p) {
12 p->Base::abc();
15 // CHECK: getelementptr inbounds (void (%struct.Base*)*, void (%struct.Base*)** bitcast ([4 x i8*]* @_ZTV4Base to void (%struct.Base*)**), i64 2)
pragma-pack-3.cpp 3 struct Base {
7 struct Derived_1 : virtual Base
14 // CHECK: %struct.Derived_2 = type { %struct.Derived_1.base, %struct.Base }
15 // CHECK: %struct.Derived_1.base = type <{ i32 (...)**, i8 }>
pragma-pack.cpp 3 struct Base {
4 virtual ~Base();
9 struct Sub : virtual Base {
13 // CHECK: %struct.Sub = type <{ i32 (...)**, i8, %struct.Base }>
vtable-key-function.cpp 21 struct Base {
22 virtual ~Base();
26 struct Derived : public Base<T> { };
29 struct Derived<char> : public Base<char> {
  /external/clang/test/Index/
annotate-context-sensitive.cpp 1 class Base {
6 class Derived final : public Base {
27 // CHECK-OVERRIDE-FINAL: Keyword: "public" [6:23 - 6:29] C++ base class specifier=class Base:1:7 [access=public isVirtual=false]
28 // CHECK-OVERRIDE-FINAL: Identifier: "Base" [6:30 - 6:34] TypeRef=class Base:1:7
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]
  /external/clang/test/PCH/
cxx-offsetof-base.h 1 // Header for PCH test cxx-offsetof-base.cpp
3 struct Base { int x; };
4 struct Derived : Base { int y; };
cxx11-inheriting-ctors.cpp 9 struct Base {
10 Base(int) {}
13 Base(T) {}
16 struct Test : Base {
17 using Base::Base;
21 struct Test2 : Base {
22 using Base::Base;
36 Test3<Base> test3a(42)
    [all...]
  /external/clang/test/SemaCXX/
PR7410.cpp 5 struct Base {
9 struct Derived : Base {
thread-safety-reference-handling.cpp 4 class Base {
6 Base() {}
7 virtual ~Base();
10 class S : public Base {
PR9572.cpp 2 class Base {
3 virtual ~Base(); // expected-note {{implicitly declared private here}}
5 struct Foo : public Base { // expected-error {{base class 'Base' has private destructor}}
enum-unscoped-nonexistent.cpp 3 struct Base {
6 template<typename T> struct S : Base {
17 // The unqualified-id here names a member of the non-dependent base class Base
  /external/clang/test/SemaTemplate/
typo-dependent-name.cpp 5 struct Base {
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
abstract_class.h 39 class Base {
41 Base(Derived* derived);
42 virtual ~Base();
49 class Derived : public Base {
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bufferobjects.h 44 struct gl_buffer_object Base;
  /external/v8/test/mjsunit/compiler/
compare-map-elim2.js 36 function Base() {
39 Base.prototype.__defineGetter__("value", function() { return 1; });
41 var a = new Base();
45 Base.prototype.__defineGetter__("value", function() { return this.v_; });
47 var b = new Base();
51 var d = new Base();
66 function Base() {
69 Base.prototype.__defineGetter__("value", function() { return 1; });
71 var a = new Base();
75 Base.prototype.__defineGetter__("value", function() { return this.v_; })
    [all...]
  /external/clang/test/Parser/
cxx0x-override-control-keywords.cpp 4 struct Base {
8 struct S : Base {
13 struct T : Base {
  /external/eigen/Eigen/src/Core/
VectorBlock.h 64 internal::traits<VectorType>::Flags & RowMajorBit ? Size : 1> Base;
71 using Base::operator=;
76 : Base(vector,
86 : Base(vector, IsColVector ? start : 0, IsColVector ? 0 : start)

Completed in 1012 milliseconds

12 3 4 5 6 7 8 91011>>