Home
last modified time | relevance | path

Searched refs:test0 (Results 1 – 25 of 366) sorted by relevance

12345678910>>...15

/external/clang/test/Sema/
Dconditional-expr.c38 unsigned long test0 = 5; in foo() local
39test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long… in foo()
40test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo()
41test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'sho… in foo()
42test0 = test0 ? test0 : (long) test0; // expected-warning {{operand of ? changes signedness: 'long… in foo()
43test0 = test0 ? test0 : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' … in foo()
44test0 = 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+/
Dstring_pointer.pass.cpp28 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 …]
Dpointer_string.pass.cpp28 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 …]
Dstring_string.pass.cpp40 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 …]
Dchar_string.pass.cpp28 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()
Dstring_char.pass.cpp28 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/
Dconditional-expr.cpp202 unsigned long test0 = 5; in test() local
203test0 = test0 ? (long) test0 : test0; // expected-warning {{operand of ? changes signedness: 'long… in test()
204test0 = test0 ? (int) test0 : test0; // expected-warning {{operand of ? changes signedness: 'int' … in test()
205test0 = test0 ? (short) test0 : test0; // expected-warning {{operand of ? changes signedness: 'sho… in test()
206test0 = test0 ? test0 : (long) test0; // expected-warning {{operand of ? changes signedness: 'long… in test()
207test0 = test0 ? test0 : (int) test0; // expected-warning {{operand of ? changes signedness: 'int' … in test()
208test0 = 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 …]
Dunknown-anytype.cpp3 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/
Dtable_formatter.py608 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/
Dp13.cpp13 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()
Dp12.cpp14 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
Dp8.cpp7 namespace test0 { namespace
15 void test0() { in test0() function
46 void test0() { in test0() function
/external/llvm/test/MC/AsmParser/
Dmacros-parsing.s4 .macro .test0
9 .test0
12 .test0
15 .macro .test0
/external/llvm/test/CodeGen/ARM/
Dtaildup-branch-weight.ll5 ; 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/
Dunknown-anytype.m3 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…
Ddebugger-cast-result-to-id.m3 extern __unknown_anytype test0;
7 (void)(int)[[test0 unknownMethod] otherUnknownMethod];;
9 id x = test0;
/external/libcxx/test/std/containers/sequences/vector/vector.cons/
Dconstruct_default.pass.cpp27 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/
Dmember_function.pass.cpp20 char test0() {return 'a';} in test0() function
27 test0(F f) in test0() function
69 test0(std::mem_fn(&A::test0)); in main()
Dmember_function_volatile.pass.cpp20 char test0() volatile {return 'a';} in test0() function
27 test0(F f) in test0() function
75 test0(std::mem_fn(&A::test0)); in main()
Dmember_function_const.pass.cpp20 char test0() const {return 'a';} in test0() function
27 test0(F f) in test0() function
75 test0(std::mem_fn(&A::test0)); in main()
Dmember_function_const_volatile.pass.cpp20 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/
Dtrap.ll5 ; 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/
Dp3.cpp20 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/
Dconstruct_default.pass.cpp24 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/
Dregress-263.js33 function test0() { with({}) for(var x in {}) return; } function
34 test0();

12345678910>>...15