Home
last modified time | relevance | path

Searched refs:testList (Results 1 – 15 of 15) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/decpp/
DdeAppendList.cpp60 AppendList<TestElem> testList; member
65 , testList (numElementsHint) in SharedState()
86 m_shared->testList.append(TestElem(m_threadNdx, elemNdx)); in run()
111 DE_TEST_ASSERT(sharedState.testList.size() == (size_t)numElements*(size_t)numThreads); in runAppendListTest()
118 for (AppendList<TestElem>::const_iterator elemIter = sharedState.testList.begin(); in runAppendListTest()
119 elemIter != sharedState.testList.end(); in runAppendListTest()
171 de::AppendList<ObjCountElem> testList (numElementsHint); in runClearTest() local
174 testList.append(ObjCountElem(&liveCount)); in runClearTest()
178 testList.clear(); in runClearTest()
183 testList.append(ObjCountElem(&liveCount)); in runClearTest()
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ios/
Dsimulators_test.dart63 final List<String> testList = <String>[
69 for (int i = 0; i < testList.length; i++) {
70 expect(compareIosVersions(testList[i], testList[i]), 0);
73 for (int i = 0; i < testList.length - 1; i++) {
74 for (int j = i + 1; j < testList.length; j++) {
75 expect(compareIosVersions(testList[i], testList[j]), lessThan(0));
76 expect(compareIosVersions(testList[j], testList[i]), greaterThan(0));
85 final List<String> testList = <String>[
96 for (int i = 0; i < testList.length; i++) {
97 expect(compareIphoneVersions(testList[i], testList[i]), 0);
[all …]
/third_party/vk-gl-cts/scripts/log/
Dbottleneck_report.py77 def __init__ (self, testList) : argument
79 self.testList = testList
89 self.element.numberOfTests = len(self.testList)
91 for test in self.testList :
/third_party/typescript/src/testRunner/
DexternalCompileRunner.ts29 const testList = this.tests && this.tests.length ? this.tests : this.getTestFiles(); constant
35 for (const test of testList) {
130 const testList = this.tests && this.tests.length ? this.tests : this.getTestFiles(); constant
139 for (const test of testList) {
/third_party/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DPerfTest.java382 Set testList = parseOptions(args); in run() local
385 for (Iterator iter = testList.iterator(); iter.hasNext();) { in run()
529 Set testList = new HashSet(); in parseOptions() local
534 testList.add(args[i]); in parseOptions()
544 if (testList.size() == 0) { in parseOptions()
548 testList.add((String)iter.next()); in parseOptions()
561 return testList; in parseOptions()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/
DvktSpvAsmNonSemanticInfoTests.cpp345 std::vector<TestData> testList = in createNonSemanticInfoGroup() local
357 for (const auto& item : testList) in createNonSemanticInfoGroup()
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/run_testlist/
Dmain.go57 testList = flag.String("test-list", "vk-master-PASS.txt", "path to a test list file") var
74 File: *testList,
/third_party/boost/libs/python/test/numpy/
Dufunc.py30 def testList(self): member in TestUnary
/third_party/libxml2/xstc/
Dxstc.py472 self.testList = []
486 self.testList.append(test)
627 for test in self.testList:
636 for test in self.testList:
/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
DDemo.java1091 …String[] testList = {"u\u0308", "u\u0316\u0308", "u\u0308\u0316", "u\u0301\u0308", "u\u0308\u0301"…
1092 for (int i = 0; i < testList.length; ++i) {
1093 String yy = y.transliterate(testList[i]);
1094 System.out.println(hex.transliterate(testList[i]) + " => " + hex.transliterate(yy));
/third_party/icu/icu4c/source/test/intltest/
Dusettest.cpp866 UnicodeSet* testList[] = { in TestStrings() local
886 for (int32_t i = 0; testList[i] != NULL; i+=2) { in TestStrings()
889 testList[i]->toPattern(pat0, TRUE); in TestStrings()
890 testList[i+1]->toPattern(pat1, TRUE); in TestStrings()
891 if (*testList[i] == *testList[i+1]) { in TestStrings()
897 delete testList[i]; in TestStrings()
898 delete testList[i+1]; in TestStrings()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
DUnicodeSetTest.java807 UnicodeSet[][] testList = { in TestStrings() local
821 for (int i = 0; i < testList.length; ++i) { in TestStrings()
822 if (!testList[i][0].equals(testList[i][1])) { in TestStrings()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
DUnicodeSetTest.java809 UnicodeSet[][] testList = { in TestStrings() local
823 for (int i = 0; i < testList.length; ++i) { in TestStrings()
824 if (!testList[i][0].equals(testList[i][1])) { in TestStrings()
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/
DDeqpTestRunner.java1983 List<TestDescription> testList = new ArrayList<>(tests.keySet()); in filterTests() local
1984 for (TestDescription test : testList) { in filterTests()
/third_party/python/Lib/test/
Dtest_marshal.py428 def testList(self): member in InstancingTestCase