/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.rel/ |
D | is_convertible.pass.cpp | 35 typedef char Array[1]; typedef 48 test_is_not_convertible<void,Array> (); in main() 49 test_is_not_convertible<void,Array&> (); in main() 59 test_is_not_convertible<Function, Array> (); in main() 60 test_is_not_convertible<Function, Array&> (); in main() 71 test_is_not_convertible<Function&, Array> (); in main() 72 test_is_not_convertible<Function&, Array&> (); in main() 83 test_is_not_convertible<Function*, Array> (); in main() 84 test_is_not_convertible<Function*, Array&> (); in main() 90 test_is_not_convertible<Array, void> (); in main() [all …]
|
/ndk/sources/cxx-stl/gabi++/tests/ |
D | catch_array_02.cpp | 16 typedef char Array[4]; in main() typedef 17 Array a = {'H', 'i', '!', 0}; in main() 23 catch (Array b) // equivalent to char* in main()
|
D | catch_array_01.cpp | 16 typedef char Array[4]; in main() typedef 17 Array a = {'H', 'i', '!', 0}; in main() 23 catch (Array& b) // can't catch char* in main()
|
D | test_vector3.cpp | 62 typedef test1::A Array[10]; in main() typedef 63 Array a[10]; // calls _cxa_vec_dtor in main()
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
D | array5.cpp | 35 struct Array struct 45 Array A; in main() argument
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
D | array5.cpp | 35 struct Array struct 45 Array A; in main() argument
|
/ndk/sources/host-tools/nawk-20071023/ |
D | tran.c | 37 Array *symtab; /* main symbol table */ 58 Array *ARGVtab; /* symbol table containing ARGV[...] */ 59 Array *ENVtab; /* symbol table containing ENVIRON[...] */ 142 Array *makesymtab(int n) /* make a new symbol table */ in makesymtab() 144 Array *ap; in makesymtab() 147 ap = (Array *) malloc(sizeof(Array)); in makesymtab() 160 Array *tp; in freesymtab() 165 tp = (Array *) ap->sval; in freesymtab() 187 Array *tp; in freeelem() 191 tp = (Array *) ap->sval; in freeelem() [all …]
|
D | proto.h | 104 extern Array *makesymtab(int); 107 extern Cell *setsymtab(const char *, const char *, double, unsigned int, Array *); 109 extern void rehash(Array *); 110 extern Cell *lookup(const char *, Array *);
|
D | awk.h | 88 typedef struct Array { /* symbol table array */ struct 92 } Array; argument 95 extern Array *symtab;
|
D | run.c | 483 z = setsymtab(buf, "", 0.0, STR|NUM, (Array *) x->sval); in array() 561 k = lookup(buf, (Array *) ap->sval); in intest() 1254 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split() 1256 setsymtab(num, s, 0.0, STR, (Array *) ap->sval); in split() 1262 setsymtab(num, "", 0.0, STR, (Array *) ap->sval); in split() 1273 setsymtab(num, s, atof(s), STR|NUM, (Array *) ap->sval); in split() 1275 setsymtab(num, s, 0.0, STR, (Array *) ap->sval); in split() 1293 setsymtab(num, t, atof(t), STR|NUM, (Array *) ap->sval); in split() 1295 setsymtab(num, t, 0.0, STR, (Array *) ap->sval); in split() 1308 setsymtab(num, buf, atof(buf), STR|NUM, (Array *) ap->sval); in split() [all …]
|
D | lib.c | 227 extern Array *ARGVtab; in getargv()
|
/ndk/sources/third_party/googletest/googletest/test/ |
D | gtest_unittest.cc | 7345 typedef int Array[2]; in TEST() typedef 7346 Array* a = new Array[1]; in TEST()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | type_traits | 78 // Array properties and transformations: 2061 // Array types are default constructible if their element type 2229 // Array types are default constructible if their element type
|