/external/clang/test/CodeGenObjCXX/ |
D | implicit-copy-assign-operator.mm | 17 struct POD { 32 POD pod_array[2][3]; 65 struct POD { 81 struct DerivedPOD: POD { 86 POD a; 87 POD b; 115 POD b; 119 (POD&) a = b;
|
D | copyable-property-object.mm | 3 struct POD { struct 9 POD pod_array[2][3]; argument
|
D | implicit-copy-constructor.mm | 21 struct POD { 32 POD pod_array[2][3];
|
/external/clang/docs/tools/ |
D | Makefile | 54 POD := $(wildcard $(SRC_DOC_DIR)*.pod) macro 55 HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD)) 56 MAN := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_MAN_DIR)%.1, $(POD)) 57 PS := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_PS_DIR)%.ps, $(POD)) 83 EXTRA_DIST := $(POD)
|
/external/clang/test/Analysis/ |
D | ctor.mm | 131 class POD { 138 POD p; 203 POD p; 205 POD p2 = p; // no-warning 207 POD p3 = move(p); // no-warning 211 clang_analyzer_eval(POD(p3).x == 1); // expected-warning{{TRUE}} 252 POD p; 254 POD p2; 257 POD p3; 272 POD p; [all …]
|
D | temporaries.cpp | 83 struct POD { struct 101 clang_analyzer_eval(((POD){1, 42}).y == 42); // expected-warning{{TRUE}} in test()
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-member-pointers.cpp | 49 struct POD { struct 63 struct NonZeroVBPtr : POD, Virtual { argument 205 int POD::*memptr; in podMemPtrs() 206 memptr = &POD::a; in podMemPtrs() 207 memptr = &POD::b; in podMemPtrs()
|
D | implicit-copy-assign-operator.cpp | 15 struct POD { struct 29 POD pod_array[2][3]; argument
|
D | microsoft-abi-sret-and-byval.cpp | 289 struct POD { int b; }; struct 291 int foo(NonTrivial a, POD b); 293 POD b; in bar()
|
D | implicit-copy-constructor.cpp | 21 struct POD { struct 31 POD pod_array[2][3]; argument
|
D | pod-member-memcpys.cpp | 4 struct POD { struct 28 POD p; argument
|
D | assign-construct-memcpy.cpp | 13 #ifndef POD
|
/external/clang/test/SemaCXX/ |
D | c99-variable-length-array-cxx11.cpp | 14 struct POD { struct 22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} in vla()
|
D | compound-literal.cpp | 22 struct POD { struct 38 (void)(POD){1, 2}; in test()
|
D | c99-variable-length-array.cpp | 10 struct POD { struct 18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} in vla()
|
D | type-traits.cpp | 9 struct POD { Enum e; int i; float f; NonPOD* p; }; argument 35 struct Derives : POD {}; 51 const HasThrowMoveAssign&&) throw(POD); }; 157 { int arr[T(__is_pod(POD))]; } in is_pod() 206 struct DerivesVirt : virtual POD {}; 224 { int arr[F(__is_empty(POD))]; } in is_empty() 1266 { int arr[T(__has_trivial_constructor(POD))]; } in has_trivial_default_constructor() 1304 { int arr[T(__has_trivial_move_constructor(POD))]; } in has_trivial_move_constructor() 1322 { int arr[T(__has_trivial_copy(POD))]; } in has_trivial_copy_constructor() 1354 { int arr[T(__has_trivial_assign(POD))]; } in has_trivial_copy_assignment() [all …]
|
/external/clang/test/SemaObjCXX/ |
D | unknown-anytype.mm | 18 struct POD { 23 POD v;
|
D | vararg-non-pod.mm | 20 …[d g:10, c]; // expected-warning{{cannot pass object of non-POD type 'C' through variadic method; …
|
/external/antlr/antlr-3.4/runtime/Perl5/t/author/ |
D | pod.t | 8 plan skip_all => "Test::Pod required for testing POD: $@";
|
D | pod-coverage.t | 8 plan skip_all => "Test::Pod::Coverage required for testing POD coverage: $@";
|
/external/clang/ |
D | NOTES.txt | 96 warn about non-POD variables that are referenced but not captured, but
|
/external/skia/gyp/ |
D | common_conditions.gypi | 230 '-Wno-invalid-offsetof', # GCC <4.6 is old-school strict about what is POD.
|
/external/llvm/cmake/modules/ |
D | HandleLLVMOptions.cmake | 280 …-wd4345 # Suppress 'behavior change: an object of POD type constructed with an initializer of the …
|
/external/clang/include/clang/Basic/ |
D | DiagnosticSemaKinds.td | 130 def err_vla_non_pod : Error<"variable length array of non-POD element type %0">; 2314 …"the vecreturn attribute can only be used on a POD (plain old data) class or structure (i.e. no vi… 4309 "jump bypasses initialization of non-POD variable">; 4698 def ext_offsetof_non_pod_type : ExtWarn<"offset of on non-POD type %0">, 6128 "cannot pass %select{non-POD|non-trivial}0 object of type %1 to variadic " 6141 "cannot pass object of %select{non-POD|non-trivial}0 type %1 through variadic" 6145 "passing object of trivial but non-POD type %0 through variadic" 6990 "second argument to 'va_arg' is of non-POD type %0">,
|
/external/clang/docs/ |
D | AutomaticReferenceCounting.rst | 996 non-ARC code because the element type is non-POD: such arrays that are 1070 The resulting type would be non-POD in the C++ sense, but C does not give us 1076 ownership-qualified types are considered non-POD: in C++11 terms, they are not
|