/external/guava/guava-tests/test/com/google/common/io/testdata/ |
D | simplifypathnoprefixtests.txt | 4 aaaaaaaa.a aaaaaaaa.a 7 aaaaaaaa/a aaaaaaaa/a 11 aaaaaaa.a. aaaaaaa.a. 12 aaaaaaa.a/ aaaaaaa.a 13 aaaaaaa..a aaaaaaa..a 16 aaaaaaa./a aaaaaaa./a 20 aaaaaaa/a. aaaaaaa/a. 21 aaaaaaa/a/ aaaaaaa/a 22 aaaaaaa/.a aaaaaaa/.a 25 aaaaaaa//a aaaaaaa/a [all …]
|
D | simplifypathwithabsoluteprefixtests.txt | 4 /b/c/aaaaaaaa.a /b/c/aaaaaaaa.a 7 /b/c/aaaaaaaa/a /b/c/aaaaaaaa/a 11 /b/c/aaaaaaa.a. /b/c/aaaaaaa.a. 12 /b/c/aaaaaaa.a/ /b/c/aaaaaaa.a 13 /b/c/aaaaaaa..a /b/c/aaaaaaa..a 16 /b/c/aaaaaaa./a /b/c/aaaaaaa./a 20 /b/c/aaaaaaa/a. /b/c/aaaaaaa/a. 21 /b/c/aaaaaaa/a/ /b/c/aaaaaaa/a 22 /b/c/aaaaaaa/.a /b/c/aaaaaaa/.a 25 /b/c/aaaaaaa//a /b/c/aaaaaaa/a [all …]
|
/external/v8/test/webkit/ |
D | codegen-loops-logical-nodes.js | 30 var a = 0; 31 while (a == 0 || a == 0) 40 var a = 0; 41 while (a != 1 || a != 1) 50 var a = 0; 51 while (a < 1 || a < 1) 60 var a = 0; 61 while (a <= 1 || a <= 1) 70 var a = 0; 71 while (a == 0 && a == 0) [all …]
|
D | codegen-temporaries.js | 28 var a = true; variable 29 a = false || a; 45 var a = testObject; 46 a.test = "PASS"; 55 var a = testObject; 56 a = a.test = "PASS"; 65 var a = testObject; 66 a.test = a = "PASS"; 87 var a = testObject; 88 a["test"] = "PASS"; [all …]
|
D | dfg-inlining-reg-alloc.js | 29 function foo(a, b, c) { argument 30 this.a = a; 38 function bar(a, b) { argument 39 a += b; 40 a -= b; 41 b ^= a; 42 a += Math.log(b); 43 b += a; 44 b -= a; 45 a ^= b; [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-unsequenced.cpp | 14 int a; in test() local 16 ++a = 0; // ok in test() 17 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test() 18 a = ++a; // ok in test() 19 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test() 20 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 21 ++ ++a; // ok in test() 22 (a++, a++); // ok in test() 23 ++a + ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 24 a++ + a++; // expected-warning {{multiple unsequenced modifications}} in test() [all …]
|
D | bool-compare.cpp | 6 bool a,b; in f() local 24 if (a > b) {} // no warning in f() 25 if (a < b) {} // no warning in f() 26 if (a >= b) {} // no warning in f() 27 if (a <= b) {} // no warning in f() 28 if (a == b) {} // no warning in f() 29 if (a != b) {} // no warning in f() 31 if (a > 0) {} // no warning in f() 32 …if (a > 1) {} // expected-warning {{comparison of constant 1 with expression of type 'bool' is alw… in f() 33 …if (a > 2) {} // expected-warning {{comparison of constant 2 with expression of type 'bool' is alw… in f() [all …]
|
/external/clang/test/Sema/ |
D | warn-unsequenced.c | 10 int a; in test() local 12 a + ++a; // expected-warning {{unsequenced modification and access to 'a'}} in test() 13 a = ++a; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 14 a + a++; // expected-warning {{unsequenced modification and access to 'a'}} in test() 15 a = a++; // expected-warning {{multiple unsequenced modifications to 'a'}} in test() 16 (a++, a++); // ok in test() 17 ++a + ++a; // expected-warning {{multiple unsequenced modifications}} in test() 18 a++ + a++; // expected-warning {{multiple unsequenced modifications}} in test() 19 a = xs[++a]; // expected-warning {{multiple unsequenced modifications}} in test() 20 a = xs[a++]; // expected-warning {{multiple unsequenced modifications}} in test() [all …]
|
D | bool-compare.c | 5 int a,b; in f() local 8 …if ((a > 2) > 1) {} // expected-warning {{comparison of constant 1 with boolean expression is alwa… in f() 10 if (a > b) {} // no warning in f() 11 if (a < b) {} // no warning in f() 12 if (a >= b) {} // no warning in f() 13 if (a <= b) {} // no warning in f() 14 if (a == b) {} // no warning in f() 15 if (a != b) {} // no warning in f() 17 if (a > 0) {} // no warning in f() 18 if (a > 1) {} // no warning in f() [all …]
|
/external/clang/test/CodeGen/ |
D | aarch64-neon-misc.c | 11 uint8x8_t test_vceqz_s8(int8x8_t a) { in test_vceqz_s8() argument 12 return vceqz_s8(a); in test_vceqz_s8() 17 uint16x4_t test_vceqz_s16(int16x4_t a) { in test_vceqz_s16() argument 18 return vceqz_s16(a); in test_vceqz_s16() 23 uint32x2_t test_vceqz_s32(int32x2_t a) { in test_vceqz_s32() argument 24 return vceqz_s32(a); in test_vceqz_s32() 29 uint64x1_t test_vceqz_s64(int64x1_t a) { in test_vceqz_s64() argument 30 return vceqz_s64(a); in test_vceqz_s64() 35 uint64x1_t test_vceqz_u64(uint64x1_t a) { in test_vceqz_u64() argument 36 return vceqz_u64(a); in test_vceqz_u64() [all …]
|
D | aarch64-neon-ldst-one.c | 7 uint8x16_t test_vld1q_dup_u8(uint8_t *a) { in test_vld1q_dup_u8() argument 9 return vld1q_dup_u8(a); in test_vld1q_dup_u8() 13 uint16x8_t test_vld1q_dup_u16(uint16_t *a) { in test_vld1q_dup_u16() argument 15 return vld1q_dup_u16(a); in test_vld1q_dup_u16() 19 uint32x4_t test_vld1q_dup_u32(uint32_t *a) { in test_vld1q_dup_u32() argument 21 return vld1q_dup_u32(a); in test_vld1q_dup_u32() 25 uint64x2_t test_vld1q_dup_u64(uint64_t *a) { in test_vld1q_dup_u64() argument 27 return vld1q_dup_u64(a); in test_vld1q_dup_u64() 31 int8x16_t test_vld1q_dup_s8(int8_t *a) { in test_vld1q_dup_s8() argument 33 return vld1q_dup_s8(a); in test_vld1q_dup_s8() [all …]
|
D | arm_neon_intrinsics.c | 14 int8x8_t test_vaba_s8(int8x8_t a, int8x8_t b, int8x8_t c) { in test_vaba_s8() argument 15 return vaba_s8(a, b, c); in test_vaba_s8() 20 int16x4_t test_vaba_s16(int16x4_t a, int16x4_t b, int16x4_t c) { in test_vaba_s16() argument 21 return vaba_s16(a, b, c); in test_vaba_s16() 26 int32x2_t test_vaba_s32(int32x2_t a, int32x2_t b, int32x2_t c) { in test_vaba_s32() argument 27 return vaba_s32(a, b, c); in test_vaba_s32() 32 uint8x8_t test_vaba_u8(uint8x8_t a, uint8x8_t b, uint8x8_t c) { in test_vaba_u8() argument 33 return vaba_u8(a, b, c); in test_vaba_u8() 38 uint16x4_t test_vaba_u16(uint16x4_t a, uint16x4_t b, uint16x4_t c) { in test_vaba_u16() argument 39 return vaba_u16(a, b, c); in test_vaba_u16() [all …]
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/is.sorted/ |
D | is_sorted_until.pass.cpp | 27 int a[] = {0}; in test() local 28 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 29 assert(std::is_sorted_until(Iter(a), Iter(a)) == Iter(a)); in test() 30 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test() 34 int a[] = {0, 0}; in test() local 35 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 36 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test() 39 int a[] = {0, 1}; in test() local 40 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 41 assert(std::is_sorted_until(Iter(a), Iter(a+sa)) == Iter(a+sa)); in test() [all …]
|
D | is_sorted.pass.cpp | 27 int a[] = {0}; in test() local 28 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 29 assert(std::is_sorted(Iter(a), Iter(a))); in test() 30 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 34 int a[] = {0, 0}; in test() local 35 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 36 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() 39 int a[] = {0, 1}; in test() local 40 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 41 assert(std::is_sorted(Iter(a), Iter(a+sa))); in test() [all …]
|
D | is_sorted_until_comp.pass.cpp | 28 int a[] = {0}; in test() local 29 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 30 assert(std::is_sorted_until(Iter(a), Iter(a), std::greater<int>()) == Iter(a)); in test() 31 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test() 35 int a[] = {0, 0}; in test() local 36 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 37 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+sa)); in test() 40 int a[] = {0, 1}; in test() local 41 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 42 assert(std::is_sorted_until(Iter(a), Iter(a+sa), std::greater<int>()) == Iter(a+1)); in test() [all …]
|
D | is_sorted_comp.pass.cpp | 28 int a[] = {0}; in test() local 29 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 30 assert(std::is_sorted(Iter(a), Iter(a))); in test() 31 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 35 int a[] = {0, 0}; in test() local 36 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 37 assert(std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() 40 int a[] = {0, 1}; in test() local 41 unsigned sa = sizeof(a) / sizeof(a[0]); in test() 42 assert(!std::is_sorted(Iter(a), Iter(a+sa), std::greater<int>())); in test() [all …]
|
/external/v8/test/mjsunit/ |
D | bounds-checks-elimination.js | 7 var a = [] variable 8 for (var i = 0; i < 9; i++) a[i] = i + 1; 18 return a[7] * a[6] * a[5] * a[4] * a[3] * a[2] * a[1] * a[0]; 22 return a[7] * a[6] * a[5] * a[4] * a[10] * a[2] * a[1] * a[0]; 26 return a[0] * a[1] * a[2] * a[3] * a[4] * a[5] * a[6] * a[7]; 30 return a[3] * a[0] * a[6] * a[7] * a[5] * a[1] * a[4] * a[2]; 34 return a[b+3] * a[0] * a[b+6] * a[7] * a[b+5] * a[1] * a[b+4] * a[2]; 38 return a[b+1] * a[0] * a[b+4] * a[7] * a[b+3] * a[1] * a[b+2] * a[2]; 43 if (b) c = a[3] * a[0] * a[6] * a[7]; 44 return c * a[5] * a[1] * a[4] * a[2]; [all …]
|
D | array-iteration.js | 41 var a = [0,1]; 42 assertArrayEquals([0], a.filter(function(n) { return n == 0; })); 43 assertArrayEquals([0,1], a); 47 a = [1,42,3,42,4]; 49 a.filter(function(n) { return this.value == n }, o)) 52 a = [1,42,3,42,4]; 54 a.filter(function(n, index, array) { 57 assertArrayEquals([43,43,43,43,43], a); 61 a = [1,1]; 63 a.filter(function(n, index, array) { array.push(n+1); return n == 2; })); [all …]
|
/external/mesa3d/src/mesa/x86/ |
D | assyntax.h | 150 #define CHOICE(a,b,c) c argument 242 #define CHOICE(a,b,c) b argument 249 #define CHOICE(a,b,c) a argument 259 #define GLNAME(a) a argument 261 #define GLNAME(a) CONCAT(_,a) argument 334 #define ADDR(a) CHOICE(CONCAT($,a), $a, a) argument 335 #define CONST(a) CHOICE(CONCAT($,a), $a, a) argument 338 #define CONTENT(a) CHOICE(a, a, (a)) /* take contents of variable */ argument 339 #define REGIND(a) CHOICE((a), (a), (a)) /* Register a indirect */ argument 341 #define REGOFF(a, b) CHOICE(a(b), a(b), a(b)) argument [all …]
|
/external/pcre/dist/testdata/ |
D | testinput2 | 5 either because PCRE can't be compatible, or there is a possible Perl 8 NOTE: This is a non-UTF set of tests. When UTF support is needed, use 13 /(a)b|/I 30 /a+bc/I 32 /a*bc/I 34 /a{3}bc/I 36 /(abc|a+z)/I 65 /[z-a]/ 80 this sentence eventually mentions a cat 81 this sentences rambles on and on for a while and then reaches elephant [all …]
|
/external/clang/test/Analysis/ |
D | additive-folding-range-constraints.c | 13 void smallAdjustmentGT (unsigned a) { in smallAdjustmentGT() argument 14 if (a+2 > 1) in smallAdjustmentGT() 15 clang_analyzer_eval(a < UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGT() 17 clang_analyzer_eval(a == UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGT() 20 void smallAdjustmentGE (unsigned a) { in smallAdjustmentGE() argument 21 if (a+2 >= 1) in smallAdjustmentGE() 22 clang_analyzer_eval(a < UINT_MAX-1 || a == UINT_MAX); // expected-warning{{TRUE}} in smallAdjustmentGE() 24 clang_analyzer_eval(a == UINT_MAX-1); // expected-warning{{TRUE}} in smallAdjustmentGE() 27 void smallAdjustmentLT (unsigned a) { in smallAdjustmentLT() argument 28 if (a+1 < 2) in smallAdjustmentLT() [all …]
|
/external/libxml2/test/expr/ |
D | base | 1 =>a 2 1 a 3 1 a | a 5 =>a|b 6 1 a 8 1 a | b 9 0 a{0} 11 =>a | b | a 12 1 a 14 1 a | b [all …]
|
/external/clang/test/OpenMP/ |
D | atomic_messages.cpp | 27 int a; member 29 a = v; in operator =() 33 a += s.a; in operator +=() 40 T a = T(), b = T(); in read() local 53 a += b; in read() 57 a = 0; in read() 61 a = b; in read() 66 a = b; in read() 68 return a; in read() 72 int a = 0, b = 0; in read() local [all …]
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
D | aec_rdft_mips.c | 14 static void bitrv2_128_mips(float* a) { in bitrv2_128_mips() argument 18 xr = a[8]; in bitrv2_128_mips() 19 xi = a[9]; in bitrv2_128_mips() 20 yr = a[16]; in bitrv2_128_mips() 21 yi = a[17]; in bitrv2_128_mips() 22 a[8] = yr; in bitrv2_128_mips() 23 a[9] = yi; in bitrv2_128_mips() 24 a[16] = xr; in bitrv2_128_mips() 25 a[17] = xi; in bitrv2_128_mips() 27 xr = a[64]; in bitrv2_128_mips() [all …]
|
/external/safe-iop/src/ |
D | safe_iop.c | 56 _type a = va_arg(ap, _type), value = *((_type *) result); \ 58 value = a; \ 59 a = va_arg(ap, _type); \ 62 if (! _func( (_type *) result, value, a)) \ 183 int8_t a, b; in T_add_s8() local 184 a=SCHAR_MIN; b=-1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8() 185 a=SCHAR_MAX; b=1; EXPECT_FALSE(safe_add(NULL, a, b)); in T_add_s8() 186 a=10; b=11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 187 a=-10; b=-11; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() 188 a=SCHAR_MIN; b=SCHAR_MAX; EXPECT_TRUE(safe_add(NULL, a, b)); in T_add_s8() [all …]
|