Searched defs:POD (Results 1 - 11 of 11) sorted by relevance

/external/clang/docs/tools/
H A DMakefile17 # the POD files to HTML only and keep them in the src directories. It must also
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)
115 $(Echo) "POD : " '$(POD)'
/external/clang/test/SemaCXX/
H A Dc99-variable-length-array-cxx11.cpp14 struct POD { struct
19 // We allow VLAs of POD types, only.
22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}}
25 NonPOD array5[N]; // expected-error{{variable length array of non-POD element type 'NonPOD'}}
H A Dcompound-literal.cpp22 struct POD { struct in namespace:brace_initializers
38 (void)(POD){1, 2};
39 // CHECK-NOT: CXXBindTemporaryExpr {{.*}} 'struct brace_initializers::POD'
40 // CHECK: CompoundLiteralExpr {{.*}} 'struct brace_initializers::POD'
41 // CHECK-NEXT: InitListExpr {{.*}} 'struct brace_initializers::POD'
H A Dc99-variable-length-array.cpp10 struct POD { struct
15 // We allow VLAs of POD types, only.
18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}}
19 NonPOD array3[N]; // expected-error{{variable length array of non-POD element type 'NonPOD'}}
20 NonPOD2 array4[N][3]; // expected-error{{variable length array of non-POD element type 'NonPOD2'}}
H A Dtype-traits.cpp9 struct POD { Enum e; int i; float f; NonPOD* p; }; struct
35 struct Derives : POD {};
51 const HasThrowMoveAssign&&) throw(POD); };
157 { int arr[T(__is_pod(POD))]; }
206 struct DerivesVirt : virtual POD {};
224 { int arr[F(__is_empty(POD))]; }
1266 { int arr[T(__has_trivial_constructor(POD))]; }
1304 { int arr[T(__has_trivial_move_constructor(POD))]; }
1322 { int arr[T(__has_trivial_copy(POD))]; }
1354 { int arr[T(__has_trivial_assign(POD))]; }
[all...]
/external/clang/test/CodeGenCXX/
H A Dimplicit-copy-assign-operator.cpp15 struct POD { struct
29 POD pod_array[2][3];
H A Dimplicit-copy-constructor.cpp21 struct POD { struct
31 POD pod_array[2][3];
H A Dpod-member-memcpys.cpp4 struct POD { struct
28 POD p;
H A Dmicrosoft-abi-sret-and-byval.cpp15 // This is a C++11 trivial and standard-layout struct but not a C++03 POD.
75 // Returning structs that fit into a register but are not POD.
280 // We used to crash on this due to the mixture of POD byval and non-trivial
289 struct POD { int b; }; struct in namespace:test2
291 int foo(NonTrivial a, POD b);
293 POD b;
298 // WIN32: %[[argmem:[^ ]*]] = alloca inalloca [[argmem_ty:<{ %"struct.test2::NonTrivial", %"struct.test2::POD" }>]]
H A Dmicrosoft-abi-member-pointers.cpp49 struct POD { struct
63 struct NonZeroVBPtr : POD, Virtual {
205 int POD::*memptr;
206 memptr = &POD::a;
207 memptr = &POD::b;
/external/clang/test/Analysis/
H A Dtemporaries.cpp83 struct POD { struct in namespace:compound_literals
101 clang_analyzer_eval(((POD){1, 42}).y == 42); // expected-warning{{TRUE}}

Completed in 211 milliseconds