/external/libcxxabi/test/ |
D | unwind_06.pass.cpp | 24 double a = get(0); in try1() local 25 double b = get(1); in try1() local 33 double a = get(0); in try2() local 34 double b = get(1); in try2() local 43 double a = get(0); in try3() local 44 double b = get(1); in try3() local 54 double a = get(0); in try4() local 55 double b = get(0); in try4() local 58 double e = get(0); in try4() local 66 double a = get(0); in try5() local [all …]
|
/external/libcxx/test/std/containers/associative/ |
D | tree_balance_after_insert.pass.cpp | 35 Node a; in test1() local 36 Node b; in test1() local 90 Node a; in test1() local 91 Node b; in test1() local 145 Node a; in test1() local 146 Node b; in test1() local 200 Node a; in test1() local 201 Node b; in test1() local 255 Node a; in test1() local 256 Node b; in test1() local [all …]
|
D | tree_remove.pass.cpp | 37 Node b; in test1() local 40 Node e; in test1() local 102 Node b; in test1() local 105 Node e; in test1() local 167 Node b; in test1() local 170 Node e; in test1() local 171 Node f; in test1() local 243 Node b; in test1() local 246 Node e; in test1() local 247 Node f; in test1() local [all …]
|
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/bench/ |
D | knockout-2.0.0.js | 6 function c(a){throw a;}var l=void 0,m=!0,o=null,p=!1,r=window.ko={};r.b=function(a,b){for(var d=a.s… argument 7 r.a=new function(){function a(a,e){if("INPUT"!=a.tagName||!a.type)return p;if("click"!=e.toLowerCas… function 8 f}var j=function(){for(var a=3,e=document.createElement("div"),b=e.getElementsByTagName("i");e.inne… argument 9 a.length;f<d;f++)if(e.call(b,a[f]))return a[f];return o},ca:function(a,e){var b=r.a.k(a,e);0<=b&&a.… argument 10 (a[b]=e[b]);return a},U:function(a){for(;a.firstChild;)r.removeNode(a.firstChild)},oa:function(a,e)… argument 11 [],f=(a||"").split(e),d=0,h=f.length;d<h;d++){var g=r.a.z(f[d]);""!==g&&b.push(g)}return b},Cb:func… argument 12 ga:function(a){return r.a.fb(a,document)},s:function(e,b,f){if("undefined"!=typeof jQuery){if(a(e,b… argument 14 b.checked!==m;b.fireEvent("on"+f)}else c(Error("Browser doesn't support triggering events"))},d:fun… argument 15 e.appendChild(a.cloneNode(m));return e.innerHTML},Ma:function(a,e){var b=r.a.d(e);if(b===o||b===l)b… argument 16 e}:function(a){return e.test(a.name)},d=[],h=b.length-1;0<=h;h--)f(b[h])&&d.push(b[h]);return d},vb… argument [all …]
|
/external/libgsm/inc/ |
D | proto.h | 40 # define P1(x, a) (a) argument 41 # define P2(x, a, b) (a, b) argument 42 # define P3(x, a, b, c) (a, b, c) argument 43 # define P4(x, a, b, c, d) (a, b, c, d) argument 44 # define P5(x, a, b, c, d, e) (a, b, c, d, e) argument 45 # define P6(x, a, b, c, d, e, f) (a, b, c, d, e, f) argument 46 # define P7(x, a, b, c, d, e, f, g) (a, b, c, d, e, f, g) argument 47 # define P8(x, a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h) argument 54 # define P1(x, a) x a; argument 55 # define P2(x, a, b) x a; b; argument [all …]
|
/external/valgrind/coregrind/ |
D | pub_core_syscall.h | 57 #define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),\ argument 59 #define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),\ argument 61 #define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),\ argument 63 #define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),\ argument 65 #define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),\ argument 67 #define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),\ argument 69 #define vgPlain_do_syscall7(s,a,b,c,d,e,f,g) VG_(do_syscall)((s),(a),(b),(c),\ argument 71 #define vgPlain_do_syscall8(s,a,b,c,d,e,f,g,h) VG_(do_syscall)((s),(a),(b),(c),\ argument
|
/external/clang/test/SemaCXX/ |
D | warn-global-constructors.cpp | 7 int a; variable 8 int b = 20; variable 15 int e = opaque_int(); // expected-warning {{global constructor}} variable 16 int f = b; // expected-warning {{global constructor}} variable 21 A a; variable 22 A b = A(); variable 25 A e = A(A()); variable 26 A f = A(a); // expected-warning {{global constructor}} variable 34 A a; // expected-warning {{global constructor}} variable 35 A b[10]; // expected-warning {{global constructor}} variable [all …]
|
D | warn-exit-time-destructors.cpp | 5 A a; // expected-warning {{declaration requires an exit-time destructor}} variable 6 A b[10]; // expected-warning {{declaration requires an exit-time destructor}} variable 10 A &e = b[5]; variable 11 A &f = c[5][7]; variable 15 void f() { in f() function 18 static A a; // expected-warning {{declaration requires an exit-time destructor}} in f() local 19 static A b[10]; // expected-warning {{declaration requires an exit-time destructor}} in f() local 23 static A &e = b[5]; in f() local 24 static A &f = c[5][7]; in f() local 30 A a; variable [all …]
|
D | static-data-member.cpp | 4 static double a; member 5 static double b; member 8 static double e; member 9 static double f; member 12 double ABC::a = 1.0; member in ABC 16 auto double ABC::e = 1.0; // expected-error {{static data member definition cannot specify a storag… member in ABC 17 register double ABC::f = 1.0; // expected-error {{static data member definition cannot specify a st… member in ABC
|
/external/v8/test/webkit/ |
D | get-by-pname.js | 35 var o = {a:1, b:3, c:7}; property 36 var p = {a:1, b:2, c:3, d:4}; property 37 var q = {a:1, b:2, c:3, d:4, e:3457}; property 38 var r = {a:1, b:2, c:3, d:4, e:91, f:12}; property 39 var s = {a:1, b:2, c:3, d:4, e:91, f:12, g:69}; property
|
/external/clang/test/Analysis/ |
D | auto-obj-dtors-cfg-output.cpp | 52 A a; in test_const_ref() local 53 const A& b = a; in test_const_ref() local 70 A a[2]; in test_array() local 71 A b[0]; in test_array() local 94 A a; in test_scope() local 98 A b; in test_scope() local 130 A a; in test_return() local 131 A b; in test_return() local 190 A a; in test_goto() local 193 { A a; in test_goto() local [all …]
|
/external/v8/tools/profviz/ |
D | gnuplot-4.6.3-emscripten.js | 3264 function _vfprintf(s, f, va_arg) { argument 3309 keys.sort(function(a, b) { argument 4494 function cX(a){a=a|0;var b=0;b=i;i=i+a|0;i=i+7>>3<<3;return b|0}function cY(){return i|0}function c… argument 4495 function hH(b,d,e){b=b|0;d=d|0;e=e|0;var f=0,g=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=… argument 4496 function jx(b,d){b=b|0;d=d|0;var e=0,f=0,g=0,j=0,k=0,l=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,w=0,x=0,y=… argument 4497 function ut(a){a=a|0;var b=0,d=0,e=0,f=0,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=… argument
|
/external/google-breakpad/src/common/ |
D | byte_cursor_unittest.cc | 112 uint8_t a; in TEST() local 113 uint16_t b; in TEST() local 144 uint8_t a, b, c, d, e; in TEST() local 162 int a, b, c, d, e; in TEST() local 182 int a, b, c, d, e, f, g, h, i, j; in TEST() local 216 int64_t a, b, c, d, e, f, g; in TEST() local 243 int64_t a, b, c, d, e, f, g; in TEST() local 266 int32_t a, b, c, d, e; in TEST() local 286 int64_t a, b, c, d, e, f, g, h, i, j; in TEST() local 320 int64_t a, b, c, d, e, f, g; in TEST() local [all …]
|
/external/v8/src/ |
D | diy-fp.h | 21 DiyFp(uint64_t f, int e) : f_(f), e_(e) {} in DiyFp() 36 static DiyFp Minus(const DiyFp& a, const DiyFp& b) { in Minus() 47 static DiyFp Times(const DiyFp& a, const DiyFp& b) { in Times() 55 uint64_t f = f_; in Normalize() local 56 int e = e_; in Normalize() local 73 static DiyFp Normalize(const DiyFp& a) { in Normalize() 79 uint64_t f() const { return f_; } in f() function 80 int e() const { return e_; } in e() function
|
/external/icu/icu4c/source/common/ |
D | utracimp.h | 248 #define UTRACE_DATA1(level, fmt, a) \ argument 261 #define UTRACE_DATA2(level, fmt, a, b) \ argument 274 #define UTRACE_DATA3(level, fmt, a, b, c) \ argument 287 #define UTRACE_DATA4(level, fmt, a, b, c, d) \ argument 300 #define UTRACE_DATA5(level, fmt, a, b, c, d, e) \ argument 313 #define UTRACE_DATA6(level, fmt, a, b, c, d, e, f) \ argument 326 #define UTRACE_DATA7(level, fmt, a, b, c, d, e, f, g) \ argument 339 #define UTRACE_DATA8(level, fmt, a, b, c, d, e, f, g, h) \ argument 352 #define UTRACE_DATA9(level, fmt, a, b, c, d, e, f, g, h, i) \ argument
|
/external/clang/test/Lexer/ |
D | string-literal-encoding.c | 7 void f() { in f() function 8 wchar_t const *a = L"�����"; // expected-error {{illegal character encoding in string literal}} in f() local 10 char16_t const *b = u"�����"; // expected-error {{illegal character encoding in string literal}} in f() local 13 …char16_t const *e = uR"(�����)"; // expected-error {{illegal character encoding in string literal}} in f() local 14 …char32_t const *f = UR"(�����)"; // expected-error {{illegal character encoding in string literal}} in f() local 22 …wchar_t const *a = L"foo �����"; // expected-error {{illegal character encoding in string literal}} in g() local 24 …char16_t const *b = u"foo �����"; // expected-error {{illegal character encoding in string literal… in g() local 27 …char16_t const *e = uR"(foo �����)"; // expected-error {{illegal character encoding in string lite… in g() local 28 …char32_t const *f = UR"(foo �����)"; // expected-error {{illegal character encoding in string lite… in g() local
|
/external/v8/test/mjsunit/ |
D | debug-scopes.js | 228 function local_2(a) { argument 235 CheckScopeContent({a:1}, 0, exec_state); property 244 function local_3(a) { argument 252 CheckScopeContent({a:1,x:3}, 0, exec_state); property 261 function local_4(a, b) { argument 270 CheckScopeContent({a:1,b:2,x:3,y:4}, 0, exec_state); property 314 function local_7(a, b) { argument 325 CheckScopeContent({a:1,b:2,x:3,y:4,i:5,j:6}, 0, exec_state); property 377 with({a:1,b:2}) { property 386 CheckScopeContent({a:1,b:2}, 0, exec_state); property [all …]
|
/external/ltrace/testsuite/ltrace.main/ |
D | parameters-lib.c | 4 void func_ignore(int a, int b, int c) in func_ignore() 83 void func_arrayi(int* a, int N) in func_arrayi() 92 void func_arrayf(float* a, int N) in func_arrayf() 105 struct { int a; int b; }* array; member 106 struct { int a; int b; } seq[3]; member 149 float f; member 150 char a; member 151 char b; member 155 char a[6]; member 156 float f; member [all …]
|
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/ |
D | p7.cpp | 3 void f() { in f() function 4 auto a = 0, b = 0, c = 0; in f() local 5 …auto d = 0, e = 0.0; // expected-error {{'int' in declaration of 'd' and deduced as 'double' in de… in f() local 11 …auto &f = k, &g = a; // expected-error {{'const int' in declaration of 'f' and deduced as 'int' in… in f() local 22 auto a = 0, in g() local 24 (*b)() -> void, in g() local 29 (*e)() -> void, in g() local 31 f = 0.0; in g() local 39 auto a = T(), *b = &a; in h() local
|
/external/clang/test/OpenMP/ |
D | single_ast_print.cpp | 13 T b = argc, c, d, e, f, g; in tmain() local 14 static T a; in tmain() local 32 int b = argc, c, d, e, f, g; in main() local 33 static int a; in main() local
|
D | sections_ast_print.cpp | 13 T b = argc, c, d, e, f, g; in tmain() local 14 static T a; in tmain() local 30 int b = argc, c, d, e, f, g; in main() local 31 static int a; in main() local
|
D | ordered_ast_print.cpp | 13 T b = argc, c, d, e, f, g; in tmain() local 14 static T a; in tmain() local 41 int b = argc, c, d, e, f, g; in main() local 42 static int a; in main() local
|
/external/clang/test/CodeGen/ |
D | init.c | 5 int a = { 1 }; in f1() local 9 int a[2][2] = { { 1, 2 }, { 3, 4 } }; in f2() local 10 int b[3][3] = { { 1, 2 }, { 3, 4 } }; in f2() local 13 int *e[3][3] = { {&a[1][1], &b[2][2]}, {&a[0][0], &b[1][1]} }; in f2() local 19 struct S { F f; }; member 21 struct S a[1] = { { foo } }; in f3() local 56 int b; member 88 struct a { struct 89 int a, b, c, d, e, f, g, h, i, j, k, *p; argument 92 struct b { struct [all …]
|
D | arm-aapcs-vfp.c | 27 float f[2]; member 72 float f[2]; member 127 void test_vfp_stack_gpr_split_1(double a, double b, double c, double d, double e, double f, double … in test_vfp_stack_gpr_split_1() 130 void test_vfp_stack_gpr_split_2(double a, double b, double c, double d, double e, double f, double … in test_vfp_stack_gpr_split_2() 133 …truct_long_long_int test_vfp_stack_gpr_split_3(double a, double b, double c, double d, double e, d… in test_vfp_stack_gpr_split_3() 135 typedef struct { int a; int b:4; int c; } struct_int_bitfield_int; member 137 void test_test_vfp_stack_gpr_split_bitfield(double a, double b, double c, double d, double e, doubl… in test_test_vfp_stack_gpr_split_bitfield() 142 void test_vfp_stack_gpr_split_4(double a, double b, double c, double d, double e, double f, double … in test_vfp_stack_gpr_split_4() 148 void test_vfp_stack_gpr_split_5(struct_seventeen_ints a, double b, double c, double d, double e, do… in test_vfp_stack_gpr_split_5() 152 void test_vfp_stack_gpr_split_6(double a, double b, double c, double d, double e, double f, double … in test_vfp_stack_gpr_split_6()
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-vbtables.cpp | 7 struct A { int a; }; member 8 struct B : virtual A { int b; }; member 31 struct A { int a; }; member 32 struct B : virtual A { int b; }; member 52 struct A { int a; }; member 53 struct B { int b; }; member 62 struct A { int a; }; member 63 struct B : virtual A { int b; }; member 74 struct A { int a; }; member 75 struct B : virtual A { int b; }; member [all …]
|