/third_party/jerryscript/tests/jerry/es2015/ |
H A D | map-iterators.js | 35 var testArray = [{0: '0', 1: 0}, 43 var m = new Map(testArray); 128 m = new Map(testArray); 140 for (i = 0; i < testArray.length; i++) { 142 m.delete(testArray[i][0]); 143 m.set(testArray[i][0], testArray[i][1]); 172 m = new Map(testArray); 177 m.delete('' + testArray.length - 1);
|
/third_party/typescript/tests/baselines/reference/ |
H A D | privateNameFieldDestructuredBinding(target=es2022).js | 8 testArray() { 14 ([this.#field, y] = this.testArray()); 34 testArray() {
40 ([this.#field, y] = this.testArray());
|
H A D | privateNameFieldDestructuredBinding(target=esnext).js | 8 testArray() { 14 ([this.#field, y] = this.testArray()); 34 testArray() {
40 ([this.#field, y] = this.testArray());
|
H A D | privateNameStaticFieldDestructuredBinding(target=es2022).js | 8 testArray() { 14 ([A.#field, y] = this.testArray()); 33 testArray() {
40 ([A.#field, y] = this.testArray());
|
H A D | privateNameStaticFieldDestructuredBinding(target=esnext).js | 8 testArray() { 14 ([A.#field, y] = this.testArray()); 33 testArray() {
40 ([A.#field, y] = this.testArray());
|
H A D | privateNameFieldDestructuredBinding(target=es2015).js | 8 testArray() { 14 ([this.#field, y] = this.testArray()); 39 testArray() {
48 (_c = this, [({ set value(_m) { __classPrivateFieldSet(_c, _A_field, _m, "f"); } }).value, y] = this.testArray());
|
H A D | privateNameStaticFieldDestructuredBinding(target=es2015).js | 8 testArray() { 14 ([A.#field, y] = this.testArray()); 39 testArray() {
47 ([({ set value(_b) { __classPrivateFieldSet(A, _b, _b, "f", _A_field); } }).value, y] = this.testArray());
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | TestCanonicalIterator.java | 39 static final String testArray[][] = { field in TestCanonicalIterator 147 for (int i = 0; i < testArray.length; ++i) { in TestBasic() 148 //logln("Results for: " + name.transliterate(testArray[i])); in TestBasic() 149 CanonicalIterator it = new CanonicalIterator(testArray[i][0]); in TestBasic() 163 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]); in TestBasic() 168 if(!it.getSource().equals(Normalizer.normalize(testArray[i][0],Normalizer.NFD))){ in TestBasic()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | TestCanonicalIterator.java | 36 static final String testArray[][] = { field in TestCanonicalIterator 144 for (int i = 0; i < testArray.length; ++i) { in TestBasic() 145 //logln("Results for: " + name.transliterate(testArray[i])); in TestBasic() 146 CanonicalIterator it = new CanonicalIterator(testArray[i][0]); in TestBasic() 160 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]); in TestBasic() 165 if(!it.getSource().equals(Normalizer.normalize(testArray[i][0],Normalizer.NFD))){ in TestBasic()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/ |
H A D | TestBoilerplate.java | 47 T[] testArray = (T[]) list.toArray(); in _test() 48 for (int i = 0; i < testArray.length; ++i) { in _test() 50 T a = testArray[i]; in _test() 72 for (int j = i; j < testArray.length; ++j) { in _test() 73 b = testArray[j]; in _test()
|
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/ |
H A D | TestBoilerplate.java | 46 T[] testArray = (T[]) list.toArray(); in _test() 47 for (int i = 0; i < testArray.length; ++i) { in _test() 49 T a = testArray[i]; in _test() 71 for (int j = i; j < testArray.length; ++j) { in _test() 72 b = testArray[j]; in _test()
|
/third_party/skia/tests/ |
H A D | TDPQueueTest.cpp | 161 SkTDArray<Mock> testArray; in sort_test() local 162 testArray.setReserve(count); in sort_test() 164 Mock *mock = testArray.append(); in sort_test() 168 pqTest.insert(&testArray[i]); in sort_test() 176 mock->fPriority = testArray[i].fPriority; in sort_test() 177 mock->fValue = testArray[i].fValue; in sort_test()
|
/third_party/icu/icu4c/source/test/intltest/ |
H A D | canittst.cpp | 109 static const char * const testArray[][2] = { in TestBasic() local 152 for (i = 0; i < UPRV_LENGTHOF(testArray); ++i) { in TestBasic() 153 //logln("Results for: " + name.transliterate(testArray[i])); in TestBasic() 154 UnicodeString testStr = CharsToUnicodeString(testArray[i][0]); in TestBasic() 167 expectEqual(i + UnicodeString(": "), testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1])); in TestBasic()
|
/third_party/json/tests/thirdparty/doctest/ |
H A D | doctest.h | 6354 std::vector<const TestCase*> testArray; 6356 testArray.push_back(&curr); 6357 p->numTestCases = testArray.size(); 6360 if(!testArray.empty()) { 6362 std::sort(testArray.begin(), testArray.end(), fileOrderComparator); 6364 std::sort(testArray.begin(), testArray.end(), suiteOrderComparator); 6366 std::sort(testArray.begin(), testArray [all...] |