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

  /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];
  /system/media/mca/filterfw/native/core/
value.cpp 32 template<typename POD, int TYPEID>
33 POD GetPODValue(Value value) {
34 return value.type == TYPEID ? *reinterpret_cast<POD*>(value.value) : POD();
42 template<typename POD, int TYPEID>
43 Value MakePODValue(POD value) {
46 result.value = malloc(sizeof(POD));
48 *reinterpret_cast<POD*>(result.value) = value;
62 template<typename POD, int TYPEID>
63 int SetPODValue(Value* value, POD new_value)
    [all...]
  /external/clang/docs/tools/
Makefile 17 # the POD files to HTML only and keep them in the src directories. It must also
54 POD := $(wildcard $(SRC_DOC_DIR)*.pod)
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))
66 .SUFFIXES: .html .pod .1 .p
    [all...]
  /external/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 .p
    [all...]
  /external/clang/test/SemaCXX/
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, accepted as an extension}}
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'}}
type-traits.cpp 9 struct POD { Enum e; int i; float f; NonPOD* p; };
35 struct Derives : POD {};
103 { int arr[T(__is_pod(POD))]; }
152 //struct DerivesVirt : virtual POD {};
170 { int arr[F(__is_empty(POD))]; }
    [all...]

Completed in 269 milliseconds