HomeSort by relevance Sort by last modified time
    Searched refs:POD (Results 1 - 19 of 19) sorted by null

  /external/clang/test/SemaCXX/
c99-variable-length-array-cxx11.cpp 14 struct POD {
19 // We allow VLAs of POD types, only.
22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}}
compound-literal.cpp 22 struct POD {
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'
c99-variable-length-array.cpp 10 struct POD {
15 // We allow VLAs of POD types, only.
18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}}
type-traits.cpp 9 struct POD { Enum e; int i; float f; NonPOD* p; };
36 struct Derives : POD {};
52 const HasThrowMoveAssign&&) throw(POD); };
170 { int arr[T(__is_pod(POD))]; }
219 struct DerivesVirt : virtual POD {};
237 { int arr[F(__is_empty(POD))]; }
    [all...]
  /external/clang/test/CodeGenCXX/
implicit-copy-assign-operator.cpp 15 struct POD {
29 POD pod_array[2][3];
implicit-copy-constructor.cpp 21 struct POD {
31 POD pod_array[2][3];
assign-construct-memcpy.cpp 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin12 -emit-llvm -o - -std=c++11 %s -DPOD | FileCheck %s -check-prefix=CHECK-POD
13 #ifndef POD
14 foo() {} // non-POD
25 // CHECK-POD: test1
26 // CHECK-POD: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}i64 24, i32 8
34 // CHECK-POD: test2
35 // CHECK-POD: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}i64 24, i32 8
44 // CHECK-POD: test3
45 // CHECK-POD: call void @llvm.memcpy.p0i8.p0i8.i64({{.*}}i64 24, i32 8
53 // CHECK-POD: test
    [all...]
microsoft-abi-sret-and-byval.cpp 15 // This is a C++11 trivial and standard-layout struct but not a C++03 POD.
85 // Returning structs that fit into a register but are not POD.
323 // We used to crash on this due to the mixture of POD byval and non-trivial
332 struct POD { int b; };
334 int foo(NonTrivial a, POD b);
336 POD b;
341 // WIN32: %[[argmem:[^ ]*]] = alloca inalloca [[argmem_ty:<{ %"struct.test2::NonTrivial", %"struct.test2::POD" }>]]
pod-member-memcpys.cpp 4 struct POD {
28 POD p;
microsoft-abi-member-pointers.cpp 62 struct POD {
76 struct NonZeroVBPtr : POD, Virtual {
218 int POD::*memptr;
219 memptr = &POD::a;
220 memptr = &POD::b;
  /frameworks/base/media/mca/filterfw/native/core/
value.cpp 33 template<typename POD, int TYPEID>
34 POD GetPODValue(Value value) {
35 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD();
43 template<typename POD, int TYPEID>
44 Value MakePODValue(POD value) {
47 result.value = malloc(sizeof(POD));
49 *reinterpret_cast<POD*>(result.value) = value;
63 template<typename POD, int TYPEID>
64 int SetPODValue(Value* value, POD new_value)
    [all...]
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
Makefile 13 # the POD files to HTML only and keep them in the src directories. It must also
46 POD := $(wildcard $(SRC_DOC_DIR)*.pod)
47 HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD))
48 MAN := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_MAN_DIR)%.1, $(POD))
49 PS := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_PS_DIR)%.ps, $(POD))
58 .SUFFIXES: .html .pod .1 .ps
    [all...]
  /external/ImageMagick/api_examples/
magick_script 14 If you want you can put uncommented documentation such as Perl POD
  /external/libchrome/base/trace_event/
memory_usage_estimator_unittest.cc 153 struct POD {
156 std::list<POD> list;
158 list.push_back(POD());
  /external/libmojo/mojo/public/cpp/bindings/lib/
bindings_internal.h 198 // POD except boolean and enum.
199 POD = 1 << 9,
222 static const MojomTypeCategory category = MojomTypeCategory::POD;
array_serialization.h 100 // Handles serialization and deserialization of arrays of pod types.
109 MojomTypeCategory::POD>::value>::type> {
  /external/clang/test/Analysis/
temporaries.cpp 83 struct POD {
101 clang_analyzer_eval(((POD){1, 42}).y == 42); // expected-warning{{TRUE}}
  /external/libmojo/mojo/public/cpp/bindings/
array_data_view.h 25 BelongsTo<T, MojomTypeCategory::POD>::value>::type> {
212 // POD types except boolean and enums:
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.9/bin/
mips64el-linux-android-gcc-4.9.x     [all...]

Completed in 403 milliseconds