/external/flatbuffers/tests/rust_usage_test/bin/ |
D | alloc_check.rs | 59 test4: Some(builder.create_vector_direct(&[my_game::example::Test::new(10, 20), in create_serialized_example_with_generated_code() 126 let test4 = m.test4().unwrap(); in main() localVariable 127 assert_eq!(test4.len(), 2); in main() 128 assert_eq!(test4[0].a() as i32 + test4[0].b() as i32 + in main() 129 test4[1].a() as i32 + test4[1].b() as i32, 100); in main()
|
/external/clang/test/CodeGen/ |
D | ppc64-align-struct.c | 8 struct test4 { int x; int y; int z; }; argument 29 void test4 (int x, struct test4 y) in test4() function 125 struct test4 test4va (int x, ...) in test4va() 127 struct test4 y; in test4va() 130 y = va_arg (ap, struct test4); in test4va()
|
D | attr-minsize.cpp | 40 void test4(T arg) { in test4() function 45 void test4<int>(int arg); 52 void test4<float>(float arg);
|
D | inline.c | 101 extern int test4(void); 102 extern __inline __attribute__ ((__gnu_inline__)) int test4(void) in test4() function 107 void test_test4() { test4(); } in test_test4()
|
D | exprs.c | 29 void test4() { in test4() function 33 t1 = sizeof(test4()); in test4() 34 t2 = __alignof__(test4()); in test4()
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testsealable.py | 93 m.test1.test2().test4 107 m.test1.test2["a"].test4 109 m.test1.test3[2:5].test4 119 m.test1.test2.test4 # Does not raise 120 m.test1.test2.test4 = 1 # Does not raise 163 m.test1.test2.test3.test4 167 m.test1.test2.test3.test4.boom 172 m.test1().test2.test3().test4 176 m.test1().test2.test3().test4()
|
/external/swiftshader/third_party/LLVM/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 28 ; CHECK-NEXT: @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 37 call void @zed(%struct.foobar* @test4.x, %struct.foobar* @test4.y)
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/ |
D | ctor_result_type.pass.cpp | 107 test4() in test4() function 150 test4<unsigned short>(); in main() 151 test4<unsigned int>(); in main() 152 test4<unsigned long>(); in main() 153 test4<unsigned long long>(); in main()
|
/external/llvm/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 28 ; CHECK-NEXT: @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 37 call void @zed(%struct.foobar* @test4.x, %struct.foobar* @test4.y)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/ConstantMerge/ |
D | unnamed-addr.ll | 18 @test4.x = internal unnamed_addr constant %struct.foobar { i32 4 } 19 @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 28 ; CHECK-NEXT: @test4.y = unnamed_addr constant %struct.foobar { i32 4 } 37 call void @zed(%struct.foobar* @test4.x, %struct.foobar* @test4.y)
|
/external/clang/test/SemaCXX/ |
D | statements.cpp | 28 void test4(); // expected-note{{possible target for call}} 29 void test4(int) { // expected-note{{possible target for call}} in test4() function 31 __asm__ ("":"+r" (test4)); // expected-error{{invalid lvalue in asm output}} in test4()
|
/external/clang/test/Sema/ |
D | attr-visibility.c | 10 struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous attribute is here}} 11 struct test4; 12 struct __attribute__((visibility("default"))) test4; // expected-error {{visibility does not match …
|
D | asm.c | 41 void test4(const volatile void *addr) in test4() function 46 …asm ("nop" : : "r"(test4(addr))); // expected-error {{invalid type 'void' in asm input for constra… in test4() 47 …asm ("nop" : : "m"(test4(addr))); // expected-error {{invalid lvalue in asm input for constraint '… in test4()
|
/external/icu/icu4c/source/test/intltest/ |
D | ustrtest.cpp | 268 UnicodeString test4("never say, \"this is a test\"!!"); in TestCompare() local 278 if (test1 != test2 || test1 == test3 || test1 == test4) in TestCompare() 282 if (test1 > test2 || test1 < test2 || !(test1 < test3) || !(test1 > test4) || in TestCompare() 289 if (!(test1 >= test2) || !(test1 <= test2) || !(test1 <= test3) || !(test1 >= test4)) in TestCompare() 293 if (test1.compare(test2) != 0 || test1.compare(test3) >= 0 || test1.compare(test4) <= 0) in TestCompare() 299 test4.compare(12, 14, test2) != 0 || in TestCompare() 304 … if (test2.compare(uniChars) != 0 || test3.compare(uniChars) <= 0 || test4.compare(uniChars) >= 0) in TestCompare() 308 if (test2.compare(chars) != 0 || test3.compare(chars) <= 0 || test4.compare(chars) >= 0) in TestCompare() 318 || test1.compare(0, 14, test4, 12, 14) != 0) in TestCompare() 323 || test1.compare(10, 4, test4, 22, 4) != 0) in TestCompare() [all …]
|
D | strcase.cpp | 148 UnicodeString test4(test3); in TestCaseConversion() local 149 test4.toLower(Locale("")); in TestCaseConversion() 151 if (test4 != expectedResult) in TestCaseConversion() 152 errln("1. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion() 154 test4 = test3; in TestCaseConversion() 155 test4.toLower(Locale("tr", "TR")); in TestCaseConversion() 157 if (test4 != expectedResult) in TestCaseConversion() 158 errln("2. toLower failed: expected \"" + expectedResult + "\", got \"" + test4 + "\"."); in TestCaseConversion() 163 test4 = test3; in TestCaseConversion() 165 test4.toUpper(Locale("")); in TestCaseConversion() [all …]
|
/external/clang/test/SemaObjC/ |
D | method-lookup-3.m | 69 @interface Test4A - (struct test4a) test4; @end //expected-note{{using}} method 70 @interface Test4B - (struct test4b) test4; @end //expected-note{{also found}} method 71 void test4(id x) { function 72 (void) [x test4]; //expected-warning {{multiple methods named 'test4' found}}
|
/external/libcxxabi/test/ |
D | catch_const_pointer_nullptr.pass.cpp | 77 void test4() in test4() function 134 void test4() {} in test4() function 145 test4(); in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AsmParser/ |
D | macros-darwin.s | 41 .macro test4 macro 46 test4 (a b)(,)),(cd) label 49 test4 (a b)(,)),(cd) label
|
/external/llvm/test/MC/AsmParser/ |
D | macros-darwin.s | 41 .macro test4 macro 46 test4 (a b)(,)),(cd) label 49 test4 (a b)(,)),(cd) label
|
/external/clang/test/CXX/class.access/class.access.dcl/ |
D | p1.cpp | 122 void test4() { in test4() function 194 void test4() { in test4() function 269 void test4() { 282 namespace test4 { namespace
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
D | p4.cpp | 67 void test4() { in test4() function 110 void test4() { in test4() function 156 void test4() { 187 namespace test4 { namespace
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
D | BreakIteratorRegTest.java | 51 BreakIterator test4 = BreakIterator.getWordInstance(foo_locale); in TestRegUnreg() local 57 assertEqual(test4, twbi, "foo word == thai word"); in TestRegUnreg() 91 BreakIterator test4 = BreakIterator.getWordInstance(foo_locale); in TestRegUnreg() local 97 assertEqual(test4, rwbi, "root word break"); in TestRegUnreg()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/ |
D | BreakIteratorRegTest.java | 54 BreakIterator test4 = BreakIterator.getWordInstance(foo_locale); in TestRegUnreg() local 60 assertEqual(test4, twbi, "foo word == thai word"); in TestRegUnreg() 94 BreakIterator test4 = BreakIterator.getWordInstance(foo_locale); in TestRegUnreg() local 100 assertEqual(test4, rwbi, "root word break"); in TestRegUnreg()
|
/external/swiftshader/third_party/LLVM/test/MC/AsmParser/ |
D | macros.s | 34 .macro test4 macro 39 test4 a b)(,),(cd) label
|
/external/swiftshader/third_party/LLVM/test/CodeGen/ARM/ |
D | fp_convert.ll | 41 define float @test4(i32 %a, i32 %b) { 42 ; VFP2: test4: 44 ; NEON: test4:
|