HomeSort by relevance Sort by last modified time
    Searched full:subobject (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /external/clang/include/clang/AST/
CXXInheritance.h 41 /// base "number" that identifies which base subobject of the
52 /// \brief Identifies which base class subobject (of type
63 /// (direct or indirect) base class subobject.
68 /// subobject is being used.
79 /// subobject.
100 /// base subobject of type A. One path is (D,0) -> (B,0) -> (A,0)
115 /// refer to the same base class subobject of type A (the virtual
130 /// the cv-unqualified canonical type of the base class subobject.
233 /// hierarchy by the method itself and a class subobject number.
235 UniqueVirtualMethod() : Method(0), Subobject(0), InVirtualSubobject(0) {
    [all...]
VTTBuilder.h 105 /// \brief Lay out the secondary VTTs of the given base subobject.
109 /// subobject.
111 /// \param BaseIsMorallyVirtual whether the base subobject is a virtual base
120 /// subobject.
129 /// \brief Lay out the VTT for the given subobject, including any
  /external/clang/test/CXX/class.derived/class.abstract/
p4.cpp 24 // subobject but not pure in another subobject.
  /abi/cpp/src/
dynamic_cast.cc 95 // Return a pointer to the subobject described by base_info.
151 const void *subobject = local
154 walk_object(subobject, ti->__base_info[i].__base_type,
248 const void *subobject = local
250 base_to_derived_cast(subobject, ti->__base_info[i].__base_type,
278 * source subobject with respect to the complete object;
310 // (refers) to a public base class subobject of a T object [note: this can
312 // from the subobject pointed (referred) to by v, the result is a pointer
320 // If it is known that v points to a public base class subobject
325 // If there is only one T type subobject, we only need to look a
    [all...]
  /ndk/sources/cxx-stl/gabi++/src/
dynamic_cast.cc 95 // Return a pointer to the subobject described by base_info.
151 const void *subobject = local
154 walk_object(subobject, ti->__base_info[i].__base_type,
248 const void *subobject = local
250 base_to_derived_cast(subobject, ti->__base_info[i].__base_type,
278 * source subobject with respect to the complete object;
310 // (refers) to a public base class subobject of a T object [note: this can
312 // from the subobject pointed (referred) to by v, the result is a pointer
320 // If it is known that v points to a public base class subobject
325 // If there is only one T type subobject, we only need to look a
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-member-initializers.cpp 4 A() : a(1) { } // expected-error{{cannot initialize a member subobject of type 'void *' with an rvalue of type 'int'}}
  /external/clang/test/Sema/
designated-initializers.c 133 [0].c = 3, // expected-warning{{subobject initialization overrides initialization of other fields within its enclosing subobject}}
135 [1].b = get8(), // expected-warning{{subobject initialization overrides initialization of other fields within its enclosing subobject}}
151 [2].before = 0, // expected-warning{{initializer overrides prior initialization of this subobject}}
152 0, // expected-warning{{initializer overrides prior initialization of this subobject}}
272 .a = 2, // expected-warning{{initializer overrides prior initialization of this subobject}}
287 [0].L[2] = 'x' // expected-warning{{initializer overrides prior initialization of this subobject}}
flexible-array-init.c 48 .points[2] = { 1, 2} }; // expected-error{{designator into flexible array member subobject}}
  /external/clang/lib/CodeGen/
CGRecordLayout.h 121 /// used when laying it out as a base subobject.
139 /// False if any direct or indirect subobject of this class, when
144 /// False if any direct or indirect subobject of this class, when
145 /// considered as a base subobject, requires a non-zero bitpattern
165 /// \brief Return the "base subobject" LLVM type associated with
178 /// with a zeroinitializer when considered as a base subobject.
CGVTables.h 86 /// virtual pointer for the given subobject is located.
90 /// getAddressPoint - Get the address point of the given subobject in the
103 /// base subobject.
MicrosoftVBTables.h 36 /// reuse the vbptr of the first non-virtual base subobject that has one.
39 /// The vbptr is stored inside this subobject.
  /external/clang/test/SemaCXX/
aggregate-initialization.cpp 44 struct S { int a; } s = { (void *)1 }; // expected-error {{cannot initialize a member subobject of type 'int' with an rvalue of type 'void *'}}
68 B b2 = { 1 }; // expected-error {{copying member subobject of type 'A' invokes deleted constructor}}
warn-dangling-field.cpp 46 S6() : s5 { 0 } {} // expected-warning {{binding reference subobject of member 's5' to a temporary}}
references.cpp 39 A& ra = b; // ra refers to A subobject in b
40 const A& rca = b; // rca refers to A subobject in b
dcl_init_aggr.cpp 123 u u5 = { "asdf" }; // expected-error{{cannot initialize a member subobject of type 'int' with an lvalue of type 'const char [5]'}}
  /external/clang/test/CXX/special/class.copy/
p8-cxx11.cpp 8 // if [every direct subobject] has a copy constructor whose first parameter is
p18-cxx11.cpp 8 // if [every direct subobject] has a copy assignment operator whose first parameter is
  /external/clang/lib/AST/
CXXInheritance.cpp 343 // subobject of a virtual base. Check whether this virtual
344 // base is a subobject of any other path; if so, then the
481 /// \brief Overriders for each virtual base subobject.
518 // Collect all of the overridders from the base class subobject
600 // of which S is a base class subobject (if any) declares
667 // subobject (or non-virtual base class subobject thereof);
669 // in a base class subobject that hides the virtual base class
670 // subobject.
VTableBuilder.cpp 93 /// in a base subobject.
103 /// SubobjectsToOffsetsMapTy - A mapping from a base subobject (represented
104 /// as a record decl and a subobject number) and its offsets in the most
121 /// dump - dump the final overriders for a base subobject, and all its direct
132 /// the subobject with the given base offset.
182 "Did not find subobject offset!");
192 std::make_pair(OverriderRD, Method.Subobject))
193 && "Did not find subobject offset!");
196 Method.Subobject)];
329 // Set up the subobject to offset mapping
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 47 facilities provided here. It can do so by having a subobject of type
49 to that subobject. Such a pretty-printer has the responsibility to
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 47 facilities provided here. It can do so by having a subobject of type
49 to that subobject. Such a pretty-printer has the responsibility to
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 47 facilities provided here. It can do so by having a subobject of type
49 to that subobject. Such a pretty-printer has the responsibility to
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/c-family/
c-pretty-print.h 47 facilities provided here. It can do so by having a subobject of type
49 to that subobject. Such a pretty-printer has the responsibility to
  /abi/cpp/include/
cxxabi.h 106 // base subobject. For a virtual base, this is the offset in the virtual
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
templates.cpp 144 int x = []{ return T(); }(); // expected-error{{cannot initialize a member subobject of type 'int' with an rvalue of type 'int *'}}

Completed in 594 milliseconds

1 2 3 4 5 6