HomeSort by relevance Sort by last modified time
    Searched defs:testData (Results 1 - 25 of 339) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/crypto/x509/
pem_decrypt_test.go 17 for i, data := range testData {
42 for i, data := range testData {
74 var testData = []struct {
  /prebuilts/go/linux-x86/src/crypto/x509/
pem_decrypt_test.go 17 for i, data := range testData {
42 for i, data := range testData {
74 var testData = []struct {
  /external/boringssl/src/ssl/test/runner/poly1305/
poly1305_test.go 17 var testData = []struct {
82 for i, v := range testData {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
TransliteratorInstantiateAllTest.java 35 public static Collection testData() {
IncrementalProgressTest.java 32 public static String[][] testData(){
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
TransliteratorInstantiateAllTest.java 32 public static Collection testData() {
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305_test.go 17 var testData = []struct {
82 for i, v := range testData {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/crypto/poly1305/
poly1305_test.go 17 var testData = []struct {
82 for i, v := range testData {
  /external/curl/tests/libtest/
lib1531.c 30 static char const testData[] = ".abc\0xyz";
31 static off_t const testDataSize = sizeof(testData) - 1;
57 curl_easy_setopt(easy, CURLOPT_POSTFIELDS, testData);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
ResourceModule.java 29 * Info and one TestData sub-resources. The Info describes the data module
30 * itself. The TestData, which is a table resource, has a collection of test
39 * TestData:table {
69 private static final String TEST_DATA = "TestData";
78 UResourceBundle testData;
85 testData = getFromTable(res, TEST_DATA, UResourceBundle.TABLE);
103 public TestData getTestData(String testName) throws DataModuleFormatError {
104 return new UResourceTestData(defaultHeader, testData.get(testName));
108 return new IteratorAdapter(testData){
277 TestDataModule m = new ResourceModule("android/icu/dev/data/testdata/","DataDrivenCollationTest")
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
ResourceModule.java 28 * Info and one TestData sub-resources. The Info describes the data module
29 * itself. The TestData, which is a table resource, has a collection of test
38 * TestData:table {
68 private static final String TEST_DATA = "TestData";
77 UResourceBundle testData;
84 testData = getFromTable(res, TEST_DATA, UResourceBundle.TABLE);
102 public TestData getTestData(String testName) throws DataModuleFormatError {
103 return new UResourceTestData(defaultHeader, testData.get(testName));
107 return new IteratorAdapter(testData){
276 TestDataModule m = new ResourceModule("com/ibm/icu/dev/data/testdata/","DataDrivenCollationTest")
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/util/
TableFormatterTest.java 32 List<List<String>> testData = new ArrayList<List<String>>();
34 testData.add(Arrays.asList("1234", "12", "1234", "1"));
35 testData.add(Arrays.asList("12", "1234", "1", "11"));
39 String actualOutput = doDisplayTable(testData);
47 List<List<String>> testData = new ArrayList<List<String>>();
49 testData.add(Arrays.asList("1234", "12", "1234"));
50 testData.add(Arrays.asList("12", "1234"));
54 String actualOutput = doDisplayTable(testData);
62 private String doDisplayTable(List<List<String>> testData) {
65 new TableFormatter().displayTable(testData, writer)
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemAttachmentLoadTests.cpp 238 } testData[] = {
299 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(testData); ++ndx)
302 loadStaticTests->addChild(new AttachmentLoadTestCase(testCtx, name.c_str(), testData[ndx].clearValue, testData[ndx].data));
vktProtectedMemAttachmentClearTests.cpp 308 } testData[] = {
369 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(testData); ++ndx)
372 clearStaticTests->addChild(new AttachmentClearTestCase(testCtx, name.c_str(), testData[ndx].clearValue, testData[ndx].data, cmdBufferType));
vktProtectedMemClearColorImageTests.cpp 245 } testData[] = {
306 for (int ndx = 0; ndx < DE_LENGTH_OF_ARRAY(testData); ++ndx)
309 clearStaticTests->addChild(new ClearColorImageTestCase(testCtx, name.c_str(), testData[ndx].clearColorValue, testData[ndx].data, cmdBufferType));
  /external/jcommander/src/test/java/com/beust/jcommander/
CmdTest.java 50 public Object[][] testData() {
61 @Test(dataProvider = "testData")
69 @Test(dataProvider = "testData", expectedExceptions = MissingCommandException.class)
80 @Test(dataProvider = "testData")
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
WebPlatformUrlTest.java 50 public WebPlatformUrlTestData testData;
70 if (!testData.scheme.isEmpty() && !HTTP_URL_SCHEMES.contains(testData.scheme)) {
71 System.err.println("Ignoring unsupported scheme " + testData.scheme);
74 if (!testData.base.startsWith("https:")
75 && !testData.base.startsWith("http:")
76 && !testData.base.equals("about:blank")) {
77 System.err.println("Ignoring unsupported base " + testData.base);
83 if (KNOWN_FAILURES.contains(testData.toString())) {
84 System.err.println("Expected failure but was success: " + testData);
    [all...]
  /platform_testing/libraries/device-collectors/src/test/java/android/device/collectors/
BaseMetricListenerInstrumentedTest.java 70 public void onTestStart(DataRecord testData, Description description) {
72 assertFalse(testData.hasMetrics());
73 testData.addStringMetric(TEST_START_KEY, TEST_START_VALUE
78 public void onTestEnd(DataRecord testData, Description description) {
79 testData.addStringMetric(TEST_END_KEY, TEST_END_VALUE
  /cts/tests/tests/util/src/android/util/cts/
SparseIntArrayTest.java 138 final int[] testData = {
142 for (int i = 0; i < testData.length; i++) {
144 for (int value : testData) {
147 int size = testData.length;
158 for (int value : testData) {
161 for (int i = 0; i < testData.length; i++) {
166 for (int value : testData) {
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
RandomAccessFileInputStreamFactoryTest.java 42 private byte[] testData = null;
51 testData = new byte[128];
53 testData[x] = (byte) x;
57 out.write(testData);
61 factory = new RandomAccessFileInputStreamFactory(tempFile, 0, testData.length);
79 for (int x = 0; x < testData.length; x++) {
RandomAccessFileOutputStreamTest.java 44 private byte[] testData = null;
53 testData = new byte[128];
55 testData[x] = (byte) x;
119 stream.write(testData, 0, testData.length);
127 byte[] actual = new byte[testData.length];
129 Assert.assertArrayEquals(testData, actual);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
DataDrivenUScriptTest.java 54 public static Collection testData() {
132 public static Collection testData() {
181 public static Collection testData() {
269 public static Collection testData() {
302 public static Collection testData() {
338 public static Collection testData() {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
RegionTest.java 371 String[][] testData = {
397 for (String [] data : testData) {
413 String[][] testData = {
428 for (String [] data : testData) {
531 String[][] testData = {
541 for (String [] data : testData) {
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 49 TestData *testData = driver->createTestData(index, status);
51 name = testData->getName();
52 if (testData->getInfo(info, status)) {
60 processTest(testData);
62 delete testData;
73 void DataDrivenCalendarTest::testOps(TestData *testData,
99 while (testData->nextCase(currentCase, status)) {
366 void DataDrivenCalendarTest::testConvert(TestData *testData
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DataDrivenUScriptTest.java 51 public static Collection testData() {
129 public static Collection testData() {
178 public static Collection testData() {
266 public static Collection testData() {
299 public static Collection testData() {
335 public static Collection testData() {

Completed in 571 milliseconds

1 2 3 4 5 6 7 8 91011>>