/external/valgrind/none/tests/s390x/ |
H A D | spechelper-or.stdout.exp | 0 Test #1 result = 0 3 Test #2 result = 0xffffffff
|
H A D | spechelper-icm-1.stdout.exp | 0 Test #1 mask == 0, value == 0xFFFFFFFF --> cc == 0 3 Test #2 mask == 0xF, value == 0 --> cc == 0 5 Test #3 load one byte, msb set --> cc == 1 7 Test #4 load two bytes, msb set --> cc == 1 9 Test #5 load three bytes, msb set --> cc == 1 11 Test #6 load four bytes, msb set --> cc == 1 13 Test #7 load one byte, msb not set --> cc == 2 15 Test #8 load two bytes, msb not set --> cc == 2 17 Test #9 load three bytes, msb not set --> cc == 2 19 Test #1 [all...] |
H A D | spechelper-icm-2.stdout.exp | 0 Test #1 mask == 0, value == 0xFFFFFFFF --> cc == 0 3 Test #2 mask == 0xF, value == 0 --> cc == 0 5 Test #3 load one byte, msb set --> cc == 1 7 Test #4 load two bytes, msb set --> cc == 1 9 Test #5 load three bytes, msb set --> cc == 1 11 Test #6 load four bytes, msb set --> cc == 1 13 Test #7 load one byte, msb not set --> cc == 2 15 Test #8 load two bytes, msb not set --> cc == 2 17 Test #9 load three bytes, msb not set --> cc == 2 19 Test #1 [all...] |
H A D | spechelper-clr.stdout.exp | 0 Test #1 op1 == op2 3 Test #2 op1 > op2 5 Test #3 op1 < op2
|
H A D | spechelper-cr.stdout.exp | 0 Test #1 op1 == op2 3 Test #2 op1 > op2 5 Test #3 op1 < op2
|
H A D | spechelper-ltr.stdout.exp | 0 Test #1 value = 0 3 Test #2 value > 0 5 Test #3 value < 0
|
H A D | spechelper-slgr.stdout.exp | 0 Test #1 op1 == op2 3 Test #2 op1 < op2 5 Test #3 op1 > op2
|
H A D | spechelper-slr.stdout.exp | 0 Test #1 op1 == op2 3 Test #2 op1 < op2 5 Test #3 op1 > op2
|
H A D | spechelper-algr.stdout.exp | 0 Test #1 cc == 0 3 Test #2 cc == 1 5 Test #3 cc == 2 7 Test #4 cc == 3
|
H A D | spechelper-alr.stdout.exp | 0 Test #1 cc == 0 3 Test #2 cc == 1 5 Test #3 cc == 2 7 Test #4 cc == 3
|
H A D | spechelper-tm.stdout.exp | 0 Test #1 mask == 0, value == ~0 --> cc == 0 3 Test #2 mask == 0xFF, value == 0 --> cc == 0 5 Test #3 mask == 0xFF, value == 0xFF --> cc == 3 7 Test #4 mask == 0x80, value == 0x80 --> cc == 3 9 Test #5 mask == 0xF0, value == 0x90 --> cc == 1 11 Test #6 mask == 0xF0, value == 0x30 --> cc == 1
|
H A D | spechelper-tmll.stdout.exp | 0 Test #1 mask == 0, value == ~0 --> cc == 0 3 Test #2 mask == 0xFFF, value == 0 --> cc == 0 5 Test #3 mask == 0xFFFF, value == 0xFFFF --> cc == 3 7 Test #4 mask == 0x8000, value == 0x8000 --> cc == 3 9 Test #5 mask == 0xF000, value == 0x9000 --> cc == 2 11 Test #6 mask == 0xF000, value == 0x3000 --> cc == 1
|
/external/clang/test/Misc/ |
H A D | ast-dump-lookups.cpp | 1 // RUN: %clang_cc1 -std=c++11 -ast-dump -ast-dump-filter Test %s | FileCheck -check-prefix DECLS %s 2 // RUN: %clang_cc1 -std=c++11 -ast-dump-lookups -ast-dump-filter Test %s | FileCheck -check-prefix LOOKUPS %s 3 // RUN: %clang_cc1 -std=c++11 -ast-dump -ast-dump-lookups -ast-dump-filter Test %s | FileCheck -check-prefix DECLS-LOOKUPS %s 5 namespace Test { namespace 10 namespace Test { } namespace 12 // DECLS: Dumping Test: 13 // DECLS-NEXT: NamespaceDecl {{.*}} Test 18 // DECLS: Dumping Test: 19 // DECLS-NEXT: NamespaceDecl {{.*}} Test 21 // LOOKUPS: Dumping Test [all...] |
/external/nanopb-c/tests/no_messages/ |
H A D | no_messages.proto | 0 /* Test that a file without any messages works. */ 3 enum Test {
|
/external/valgrind/memcheck/tests/ |
H A D | addressable.stdout.exp | 0 Test 1: PASS 2 Test 2: PASS 3 Test 3: PASS 4 Test 4: PASS 5 Test 5: PASS
|
/external/valgrind/none/tests/amd64/ |
H A D | faultstatus.stderr.exp | 2 Test 1: PASS 3 Test 2: PASS 4 Test 3: PASS
|
/external/valgrind/none/tests/mips32/ |
H A D | SignalException.stderr.exp | 0 Test 1: PASS 2 Test 2: PASS 3 Test 3: PASS
|
/external/testng/src/test/java/test/mixed/ |
H A D | JUnit4Test1.java | 3 import org.junit.Test; 11 @Test 16 @Test
|
H A D | TestNGGroups.java | 3 import org.testng.annotations.Test; 5 @Test(groups = {"unit"}) 7 @Test 12 @Test(groups = {"ignore"})
|
/external/clang/test/SemaCXX/ |
H A D | warn-new-overaligned-2.cpp | 10 struct Test { struct 20 Test t; 21 new Test; 22 new Test[10];
|
/external/testng/src/test/java/test/dependsongroup/ |
H A D | FirstSampleTest.java | 3 import org.testng.annotations.Test; 5 @Test(groups = { "first" }, dependsOnGroups = { "zero" }) 8 @Test 13 @Test
|
H A D | SecondSampleTest.java | 3 import org.testng.annotations.Test; 5 @Test(groups = { "second" }, dependsOnGroups = { "zero" }) 8 @Test 13 @Test
|
H A D | ZeroSampleTest.java | 3 import org.testng.annotations.Test; 5 @Test(groups = { "zero" }) 8 @Test 13 @Test
|
/external/testng/src/test/java/test/methodinterceptors/ |
H A D | FooTest.java | 3 import org.testng.annotations.Test; 7 @Test(groups = "fast") 10 @Test 13 @Test
|
/external/testng/src/test/java/test/preserveorder/ |
H A D | EdnTest.java | 3 import org.testng.annotations.Test; 5 @Test(singleThreaded = true) 8 @Test 12 @Test
|