Home
last modified time | relevance | path

Searched refs:testSet (Results 1 - 25 of 33) sorted by relevance

12

/third_party/typescript/tests/baselines/reference/
H A DinferFromGenericFunctionReturnTypes1.js50 const testSet = new SetOf<number>();
51 testSet.add(1);
52 testSet.add(2);
53 testSet.add(3);
55 testSet.transform(
64 testSet.transform(
116 var testSet = new SetOf();
117 testSet.add(1);
118 testSet.add(2);
119 testSet
[all...]
H A DinferFromGenericFunctionReturnTypes2.js72 const testSet = new SetOf<number>();
73 testSet.add(1);
74 testSet.add(2);
75 testSet.add(3);
77 const t1 = testSet.transform(
88 const t2 = testSet.transform(
150 var testSet = new SetOf();
151 testSet.add(1);
152 testSet.add(2);
153 testSet
[all...]
H A DdoYouNeedToChangeYourTargetLibraryES2015.js58 const testSet: Set<any> = null as any;
156 var testSet = null; variable
/third_party/vk-gl-cts/executor/
H A DxeBatchExecutor.cpp60 static void computeExecuteSet (TestSet& executeSet, const TestNode* root, const TestSet& testSet, const BatchResult* batchResult) in computeExecuteSet() argument
69 if (node->getNodeType() == TESTNODETYPE_TEST_CASE && testSet.hasNode(node)) in computeExecuteSet()
157 BatchExecutor::BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog) in BatchExecutor() argument
161 , m_testSet (testSet) in BatchExecutor()
306 static void writeCaseListNode (std::ostream& str, const TestNode* node, const TestSet& testSet) in writeCaseListNode() argument
308 DE_ASSERT(testSet.hasNode(node)); in writeCaseListNode()
326 if (testSet.hasNode(child)) in writeCaseListNode()
331 writeCaseListNode(str, child, testSet); in writeCaseListNode()
340 void BatchExecutor::launchTestSet (const TestSet& testSet) in launchTestSet() argument
343 XE_CHECK(testSet in launchTestSet()
[all...]
H A DxeBatchExecutor.hpp70 BatchExecutor (const TargetConfiguration& config, CommLink* commLink, const TestNode* root, const TestSet& testSet, BatchResult* batchResult, InfoLog* infoLog);
86 void launchTestSet (const TestSet& testSet);
/third_party/astc-encoder/Test/testlib/
H A Dresultset.py213 testSet: The test set these results are linked to.
217 def __init__(self, testSet):
222 testSet (TestSet): The test set these results are linked to.
224 self.testSet = testSet
236 def get_record(self, testSet, blkSz, name):
241 testSet (TestSet): The test set to get results from.
251 if testSet != self.testSet:
329 row = [self.testSet,
[all...]
H A Dimage.py55 testSet: The name of the test set.
102 self.testSet = parts[0]
/third_party/astc-encoder/Test/
H A Dastc_test_image.py68 def count_test_set(testSet, blockSizes):
73 testSet (TestSet): The test set to run.
81 for image in testSet.tests:
165 def run_test_set(encoder, testRef, testSet, quality, blockSizes, testRuns,
173 testSet (TestSet): The test set.
185 resultSet = trs.ResultSet(testSet.name)
188 maxCount = count_test_set(testSet, blockSizes)
190 dat = (testSet.name, encoder.name, quality)
196 for image in testSet.tests:
415 testSet
[all...]
H A Dastc_test_image_dl.py35 def download(testSet, index, srcUrl, dstPath):
40 testSet (str): The test set name.
51 print("%s image %u: Downloading" % (testSet, index))
54 print("%s image %u: Skipping" % (testSet, index))
130 testSet = "Kodak"
137 download(testSet, i, src, dst)
/third_party/vk-gl-cts/executor/tools/
H A DxeCommandLineExecutor.cpp305 void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) in addMatchingCases() argument
318 addMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in addMatchingCases()
323 testSet.add(child); in addMatchingCases()
329 void removeMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) in removeMatchingCases() argument
342 removeMatchingCases(static_cast<const xe::TestGroup&>(*child), testSet, filter); in removeMatchingCases()
347 testSet.remove(child); in removeMatchingCases()
409 void printBatchResultSummary (const xe::TestNode* root, const xe::TestSet& testSet, const xe::BatchResult& batchResult) in printBatchResultSummary() argument
417 if (node->getNodeType() == xe::TESTNODETYPE_TEST_CASE && testSet.hasNode(node)) in printBatchResultSummary()
586 xe::TestSet testSet; in runExecutor() local
590 addMatchingCases(root, testSet, filterIte in runExecutor()
[all...]
/third_party/skia/tests/
H A DPathOpsThreeWayTest.cpp43 const TestSet& testSet = testSets[index]; in testSetTest() local
44 int testCount = testSet.testCount; in testSetTest()
48 const Curve& oTest = testSet.tests[outer]; in testSetTest()
50 const Curve& iTest = testSet.tests[inner]; in testSetTest()
H A DPathOpsQuadReduceOrderTest.cpp13 static const QuadPts testSet[] = { variable
18 static const size_t testSetCount = SK_ARRAY_COUNT(testSet);
22 const QuadPts& q = testSet[index]; in oneOffTest()
H A DPathOpsQuadIntersectionTest.cpp59 static const QuadPts testSet[] = { variable
333 const size_t testSetCount = SK_ARRAY_COUNT(testSet);
336 const QuadPts& q1 = testSet[outer]; in oneOffTest1()
340 const QuadPts& q2 = testSet[inner]; in oneOffTest1()
416 const QuadPts& q1 = testSet[test1]; in intersectionFinder()
417 const QuadPts& q2 = testSet[test2]; in intersectionFinder()
539 const QuadPts& q1 = testSet[outer]; in DEF_TEST()
542 const QuadPts& q2 = testSet[inner]; in DEF_TEST()
H A DPathOpsConicIntersectionTest.cpp19 static const ConicPts testSet[] = { variable
45 const int testSetCount = (int) SK_ARRAY_COUNT(testSet);
331 const ConicPts& c1 = testSet[outer]; in oneOff()
332 const ConicPts& c2 = testSet[inner]; in oneOff()
H A DPathOpsCubicIntersectionTest.cpp74 static const CubicPts testSet[] = { variable
170 const int testSetCount = (int) SK_ARRAY_COUNT(testSet);
438 const CubicPts& cubic1 = testSet[outer]; in oneOff()
439 const CubicPts& cubic2 = testSet[inner]; in oneOff()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/translit/
H A DWriteCharts.java39 String testSet = ""; in main()
44 testSet = args[i]; in main()
46 print(testSet, args[i]); in main()
47 testSet = ""; in main()
122 public static void print(String testSet, String rawId) throws IOException { in print() argument
135 if (testSet.equals("")) { in print()
143 testSet = "[:" + source + ":]"; in print()
145 testSet = "[" + testSet + "\u30FC]"; in print()
146 printSet(testSet); in print()
[all...]
/third_party/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DWriteCharts.java36 String testSet = ""; in main()
41 testSet = args[i]; in main()
43 print(testSet, args[i]); in main()
44 testSet = ""; in main()
119 public static void print(String testSet, String rawId) throws IOException { in print() argument
132 if (testSet.equals("")) { in print()
140 testSet = "[:" + source + ":]"; in print()
142 testSet = "[" + testSet + "\u30FC]"; in print()
143 printSet(testSet); in print()
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/
H A DUnicodeSetTest.java146 UnicodeSet testSet; in TestPropertyAccess()
148 testSet = new UnicodeSet("[:" + propName + "=" + valueName + ":]"); in TestPropertyAccess()
157 for (UnicodeSetIterator it = new UnicodeSetIterator(testSet); it.next();) { in TestPropertyAccess()
263 UnicodeSet testSet = new UnicodeSet(); in toPatternAux()
264 testSet.add(start, end); in toPatternAux()
265 return checkPat(source, testSet); in toPatternAux()
268 boolean checkPat (String source, UnicodeSet testSet) { in checkPat() argument
274 String pat0 = testSet.toPattern(true); in checkPat()
275 if (!checkPat(source + " (escaped)", testSet, pat0)) return false; in checkPat()
278 //if (!checkPat(source + " (in code)", testSet, pat in checkPat()
295 checkPat(String source, UnicodeSet testSet, String pat) checkPat() argument
1751 CheckRangeSpeed(int iterations, UnicodeSet testSet) CheckRangeSpeed() argument
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetTest.java143 UnicodeSet testSet; in TestPropertyAccess()
145 testSet = new UnicodeSet("[:" + propName + "=" + valueName + ":]"); in TestPropertyAccess()
154 for (UnicodeSetIterator it = new UnicodeSetIterator(testSet); it.next();) { in TestPropertyAccess()
270 UnicodeSet testSet = new UnicodeSet(); in toPatternAux()
271 testSet.add(start, end); in toPatternAux()
272 return checkPat(source, testSet); in toPatternAux()
275 boolean checkPat (String source, UnicodeSet testSet) { in checkPat() argument
281 String pat0 = testSet.toPattern(true); in checkPat()
282 if (!checkPat(source + " (escaped)", testSet, pat0)) return false; in checkPat()
285 //if (!checkPat(source + " (in code)", testSet, pat in checkPat()
302 checkPat(String source, UnicodeSet testSet, String pat) checkPat() argument
1765 CheckRangeSpeed(int iterations, UnicodeSet testSet) CheckRangeSpeed() argument
[all...]
/third_party/icu/icu4c/source/test/intltest/
H A Dusettest.h109 const UnicodeSet& testSet);
111 UBool checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat);
H A Dusettest.cpp226 UnicodeSet testSet; in toPatternAux() local
227 testSet.add(start, end); in toPatternAux()
228 return checkPat(source, testSet); in toPatternAux()
232 const UnicodeSet& testSet) { in checkPat()
238 testSet.toPattern(pat0, true); in checkPat()
240 if (!checkPat(source + " (escaped)", testSet, pat0)) return false; in checkPat()
243 //if (!checkPat(source + " (in code)", testSet, pat1)) return false; in checkPat()
246 testSet.toPattern(pat2, false); in checkPat()
247 if (!checkPat(source, testSet, pat2)) return false; in checkPat()
250 // if (!checkPat(source + " (in code)", testSet, pat in checkPat()
231 checkPat(const UnicodeString& source, const UnicodeSet& testSet) checkPat() argument
257 checkPat(const UnicodeString& source, const UnicodeSet& testSet, const UnicodeString& pat) checkPat() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/util/
H A DCollectionUtilities.java446 * Returns the ending offset found by matching characters with testSet, until a position is found that doen't match
449 * @param testSet
452 public int span(CharSequence string, int offset, UnicodeSet testSet) { in span() argument
454 int newOffset = testSet.matchesAt(string, offset); in span()
460 * Returns the ending offset found by matching characters with testSet, until a position is found that does match
463 * @param testSet
466 public int spanNot(CharSequence string, int offset, UnicodeSet testSet) { in spanNot() argument
468 int newOffset = testSet.matchesAt(string, offset); in spanNot()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DCollectionUtilities.java443 * Returns the ending offset found by matching characters with testSet, until a position is found that doen't match
446 * @param testSet
449 public int span(CharSequence string, int offset, UnicodeSet testSet) { in span() argument
451 int newOffset = testSet.matchesAt(string, offset); in span()
457 * Returns the ending offset found by matching characters with testSet, until a position is found that does match
460 * @param testSet
463 public int spanNot(CharSequence string, int offset, UnicodeSet testSet) { in spanNot() argument
465 int newOffset = testSet.matchesAt(string, offset); in spanNot()
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/runner/
H A DTestSuite.cpp1227 std::vector<TestIdentifier> testSet = GetFilteredTests(&mTestFileLines, alsoRunDisabledTests); in TestSuite() local
1242 // If there's only one shard, we can use the testSet as defined above. in TestSuite()
1245 testSet = GetShardTests(testSet, mShardIndex, mShardCount, &mTestFileLines, in TestSuite()
1250 mFilterString = GetTestFilter(testSet); in TestSuite()
1283 mTestQueue = BatchTests(testSet, mBatchSize); in TestSuite()
1303 mTotalResultCount = testSet.size(); in TestSuite()
1325 for (const TestIdentifier &id : testSet) in TestSuite()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DProtobufArrayListTest.java154 public void testSet() { in testSet() method in ProtobufArrayListTest

Completed in 29 milliseconds

12