/external/clang/test/Sema/ |
D | conditional-expr.c | 38 unsigned long test0 = 5; in foo() local 39 …test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long… in foo() 40 …test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo() 41 …test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'sho… in foo() 42 …test0 = test0 ? test0 : (long) test0; // expected-warning {{operand of ? changes signedness: 'long… in foo() 43 …test0 = test0 ? test0 : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo() 44 …test0 = test0 ? test0 : (short) test0; // expected-warning {{operand of ? changes signedness: 'sho… in foo() 45 test0 = test0 ? test0 : (long) 10; in foo() 46 test0 = test0 ? test0 : (int) 10; in foo() 47 test0 = test0 ? test0 : (short) 10; in foo() [all …]
|
/external/libcxx/test/std/strings/basic.string/string.nonmembers/string_op+/ |
D | string_pointer.pass.cpp | 28 test0(const S& lhs, const typename S::value_type* rhs, const S& x) in test0() function 48 test0(S(""), "", S("")); in main() 49 test0(S(""), "12345", S("12345")); in main() 50 test0(S(""), "1234567890", S("1234567890")); in main() 51 test0(S(""), "12345678901234567890", S("12345678901234567890")); in main() 52 test0(S("abcde"), "", S("abcde")); in main() 53 test0(S("abcde"), "12345", S("abcde12345")); in main() 54 test0(S("abcde"), "1234567890", S("abcde1234567890")); in main() 55 test0(S("abcde"), "12345678901234567890", S("abcde12345678901234567890")); in main() 56 test0(S("abcdefghij"), "", S("abcdefghij")); in main() [all …]
|
D | pointer_string.pass.cpp | 28 test0(const typename S::value_type* lhs, const S& rhs, const S& x) in test0() function 48 test0("", S(""), S("")); in main() 49 test0("", S("12345"), S("12345")); in main() 50 test0("", S("1234567890"), S("1234567890")); in main() 51 test0("", S("12345678901234567890"), S("12345678901234567890")); in main() 52 test0("abcde", S(""), S("abcde")); in main() 53 test0("abcde", S("12345"), S("abcde12345")); in main() 54 test0("abcde", S("1234567890"), S("abcde1234567890")); in main() 55 test0("abcde", S("12345678901234567890"), S("abcde12345678901234567890")); in main() 56 test0("abcdefghij", S(""), S("abcdefghij")); in main() [all …]
|
D | string_string.pass.cpp | 40 test0(const S& lhs, const S& rhs, const S& x) in test0() function 74 test0(S(""), S(""), S("")); in main() 75 test0(S(""), S("12345"), S("12345")); in main() 76 test0(S(""), S("1234567890"), S("1234567890")); in main() 77 test0(S(""), S("12345678901234567890"), S("12345678901234567890")); in main() 78 test0(S("abcde"), S(""), S("abcde")); in main() 79 test0(S("abcde"), S("12345"), S("abcde12345")); in main() 80 test0(S("abcde"), S("1234567890"), S("abcde1234567890")); in main() 81 test0(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890")); in main() 82 test0(S("abcdefghij"), S(""), S("abcdefghij")); in main() [all …]
|
D | char_string.pass.cpp | 28 test0(typename S::value_type lhs, const S& rhs, const S& x) in test0() function 48 test0('a', S(""), S("a")); in main() 49 test0('a', S("12345"), S("a12345")); in main() 50 test0('a', S("1234567890"), S("a1234567890")); in main() 51 test0('a', S("12345678901234567890"), S("a12345678901234567890")); in main() 65 test0('a', S(""), S("a")); in main() 66 test0('a', S("12345"), S("a12345")); in main() 67 test0('a', S("1234567890"), S("a1234567890")); in main() 68 test0('a', S("12345678901234567890"), S("a12345678901234567890")); in main()
|
D | string_char.pass.cpp | 28 test0(const S& lhs, typename S::value_type rhs, const S& x) in test0() function 48 test0(S(""), '1', S("1")); in main() 49 test0(S("abcde"), '1', S("abcde1")); in main() 50 test0(S("abcdefghij"), '1', S("abcdefghij1")); in main() 51 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1")); in main() 65 test0(S(""), '1', S("1")); in main() 66 test0(S("abcde"), '1', S("abcde1")); in main() 67 test0(S("abcdefghij"), '1', S("abcdefghij1")); in main() 68 test0(S("abcdefghijklmnopqrst"), '1', S("abcdefghijklmnopqrst1")); in main()
|
/external/clang/test/SemaCXX/ |
D | conditional-expr.cpp | 202 unsigned long test0 = 5; in test() local 203 …test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long… in test() 204 …test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' … in test() 205 …test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'sho… in test() 206 …test0 = test0 ? test0 : (long) test0; // expected-warning {{operand of ? changes signedness: 'long… in test() 207 …test0 = test0 ? test0 : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' … in test() 208 …test0 = test0 ? test0 : (short) test0; // expected-warning {{operand of ? changes signedness: 'sho… in test() 209 test0 = test0 ? test0 : (long) 10; in test() 210 test0 = test0 ? test0 : (int) 10; in test() 211 test0 = test0 ? test0 : (short) 10; in test() [all …]
|
D | unknown-anytype.cpp | 3 namespace test0 { namespace 4 extern __unknown_anytype test0; 40 extern __unknown_anytype test0(...); 44 void (*fn)(int) = (void(*)(int)) test0; in test()
|
/external/opencv3/modules/ts/misc/ |
D | table_formatter.py | 608 def getRelativeVal(test, test0, metric): argument 609 if not test or not test0: 611 val0 = test0.get(metric, "s") 619 def getCycleReduction(test, test0, metric): argument 620 if not test or not test0: 622 val0 = test0.get(metric, "s") 630 def getScore(test, test0, metric): argument 631 if not test or not test0: 634 m1 = float(test0.get("gmean", None)) 638 s1 = float(test0.get("gstddev", None)) [all …]
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p13.cpp | 13 namespace test0 { namespace 18 Opaque0 test0(int*); 25 using Base::test0; 26 Opaque1 test0(const int*); 38 void test0() { in test0() function 39 Opaque0 a = Derived().test0((int*) 0); in test0() 40 Opaque1 b = Derived().test0((const int*) 0); in test0()
|
D | p12.cpp | 14 namespace test0 { namespace 39 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() function 51 void test0() { Opaque<0> _ = foo(Opaque<0>()); } in test0() function 64 void test0() { Opaque<1> _ = foo(Opaque<0>()); } in test0() function 84 void test0(int i) { in test0() function
|
D | p8.cpp | 7 namespace test0 { namespace 15 void test0() { in test0() function 46 void test0() { in test0() function
|
/external/llvm/test/MC/AsmParser/ |
D | macros-parsing.s | 4 .macro .test0 9 .test0 12 .test0 15 .macro .test0
|
/external/llvm/test/CodeGen/ARM/ |
D | taildup-branch-weight.ll | 5 ; CHECK: Machine code for function test0: 8 define void @test0(i32 %a, i32 %b, i32* %c, i32* %d) { 23 %test0 = icmp slt i32 %a, %b 24 br i1 %test0, label %B2, label %B3, !prof !0 39 %test0 = icmp slt i32 %a, %b 40 br i1 %test0, label %B1, label %B2, !prof !1
|
/external/clang/test/SemaObjC/ |
D | unknown-anytype.m | 3 extern __unknown_anytype test0; 17 int *ip = [test0 getIntPtr]; 20 …[[test0 unknownMethod] otherUnknownMethod]; // expected-error{{no known method '-otherUnknownMetho… 21 (void)(int)[[test0 unknownMethod] otherUnknownMethod];; 25 …if ([[test0 unknownMethod] otherUnknownMethod]) { // expected-error{{no known method '-otherUnknow…
|
D | debugger-cast-result-to-id.m | 3 extern __unknown_anytype test0; 7 (void)(int)[[test0 unknownMethod] otherUnknownMethod];; 9 id x = test0;
|
/external/libcxx/test/std/containers/sequences/vector/vector.cons/ |
D | construct_default.pass.cpp | 27 test0() in test0() function 67 test0<std::vector<int> >(); in main() 68 test0<std::vector<NotConstructible> >(); in main() 79 test0<std::vector<int, min_allocator<int>> >(); in main() 80 test0<std::vector<NotConstructible, min_allocator<NotConstructible>> >(); in main()
|
/external/libcxx/test/std/utilities/function.objects/func.memfn/ |
D | member_function.pass.cpp | 20 char test0() {return 'a';} in test0() function 27 test0(F f) in test0() function 69 test0(std::mem_fn(&A::test0)); in main()
|
D | member_function_volatile.pass.cpp | 20 char test0() volatile {return 'a';} in test0() function 27 test0(F f) in test0() function 75 test0(std::mem_fn(&A::test0)); in main()
|
D | member_function_const.pass.cpp | 20 char test0() const {return 'a';} in test0() function 27 test0(F f) in test0() function 75 test0(std::mem_fn(&A::test0)); in main()
|
D | member_function_const_volatile.pass.cpp | 20 char test0() const volatile {return 'a';} in test0() function 27 test0(F f) in test0() function 75 test0(std::mem_fn(&A::test0)); in main()
|
/external/llvm/test/CodeGen/X86/ |
D | trap.ll | 5 ; DARWIN-LABEL: test0: 7 ; LINUX-LABEL: test0: 9 ; PS4-LABEL: test0: 11 define i32 @test0() noreturn nounwind {
|
/external/clang/test/CXX/class/class.mfct/class.mfct.non-static/ |
D | p3.cpp | 20 namespace test0 { namespace 68 void test0() { in test0() function 93 a.test0(); // no instantiation note here, decl is ill-formed in test()
|
/external/libcxx/test/std/containers/sequences/vector.bool/ |
D | construct_default.pass.cpp | 24 test0() in test0() function 61 test0<std::vector<bool> >(); in main() 66 test0<std::vector<bool, min_allocator<bool>> >(); in main()
|
/external/v8/test/mjsunit/regress/ |
D | regress-263.js | 33 function test0() { with({}) for(var x in {}) return; } function 34 test0();
|