Home
last modified time | relevance | path

Searched refs:testArray (Results 1 – 21 of 21) sorted by relevance

/third_party/jerryscript/tests/jerry/es2015/
Dmap-iterators.js35 var testArray = [{0: '0', 1: 0}, variable
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/
DprivateNameFieldDestructuredBinding(target=esnext).types24 testArray() {
25 >testArray : () => number[]
49 ([this.#field, y] = this.testArray());
50 >([this.#field, y] = this.testArray()) : number[]
51 >[this.#field, y] = this.testArray() : number[]
56 >this.testArray() : number[]
57 >this.testArray : () => number[]
59 >testArray : () => number[]
DprivateNameFieldDestructuredBinding(target=es2015).types24 testArray() {
25 >testArray : () => number[]
49 ([this.#field, y] = this.testArray());
50 >([this.#field, y] = this.testArray()) : number[]
51 >[this.#field, y] = this.testArray() : number[]
56 >this.testArray() : number[]
57 >this.testArray : () => number[]
59 >testArray : () => number[]
DprivateNameFieldDestructuredBinding(target=esnext).js8 testArray() { method in A
14 ([this.#field, y] = this.testArray());
34 ([this.#field, y] = this.testArray());
45 testArray() { method in A
DprivateNameFieldDestructuredBinding(target=esnext).symbols19 testArray() {
20 >testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
37 ([this.#field, y] = this.testArray());
41 >this.testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
43 >testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
DprivateNameFieldDestructuredBinding(target=es2015).symbols19 testArray() {
20 >testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
37 ([this.#field, y] = this.testArray());
41 >this.testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
43 >testArray : Symbol(A.testArray, Decl(privateNameFieldDestructuredBinding.ts, 5, 5))
DprivateNameFieldDestructuredBinding(target=es2015).js8 testArray() { method in A
14 ([this.#field, y] = this.testArray());
43 …is, [({ set value(_m) { __classPrivateFieldSet(_c, _field, _m); } }).value, y] = this.testArray());
53 testArray() { method in A
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/
DTestCanonicalIterator.java39 static final String testArray[][] = { field in TestCanonicalIterator
147 for (int i = 0; i < testArray.length; ++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/
DTestCanonicalIterator.java36 static final String testArray[][] = { field in TestCanonicalIterator
144 for (int i = 0; i < testArray.length; ++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/skia/tests/
DTDPQueueTest.cpp161 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/flutter/skia/tests/
DTDPQueueTest.cpp161 SkTDArray<Dummy> testArray; in sort_test() local
162 testArray.setReserve(count); in sort_test()
164 Dummy *dummy = testArray.append(); in sort_test()
168 pqTest.insert(&testArray[i]); in sort_test()
176 dummy->fPriority = testArray[i].fPriority; in sort_test()
177 dummy->fValue = testArray[i].fValue; in sort_test()
/third_party/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
DTestBoilerplate.java46 T[] testArray = (T[]) list.toArray(); in _test() local
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/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/
DTestBoilerplate.java47 T[] testArray = (T[]) list.toArray(); in _test() local
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/skia/resources/sksl/shared/
DUniformArray.sksl1 uniform float testArray[5];
6 if (testArray[index] != float(index + 1)) {
/third_party/skia/tests/sksl/shared/
DUniformArray.glsl3 uniform float testArray[5];
8 if (testArray[index] != float(index + 1)) {
DUniformArray.metal5 array<float, 5> testArray;
18 if (_uniforms.testArray[index] != float(index + 1)) {
DUniformArray.asm.frag9 OpMemberName %_UniformBuffer 0 "testArray"
/third_party/typescript/tests/cases/conformance/classes/members/privateNames/
DprivateNameFieldDestructuredBinding.ts9 testArray() { method in A
15 ([this.#field, y] = this.testArray());
/third_party/icu/icu4c/source/test/intltest/
Dcanittst.cpp109 static const char * const testArray[][2] = { in TestBasic() local
152 for (i = 0; i < UPRV_LENGTHOF(testArray); ++i) { in TestBasic()
154 UnicodeString testStr = CharsToUnicodeString(testArray[i][0]); in TestBasic()
167 …(i + UnicodeString(": "), testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1])); in TestBasic()
/third_party/boost/libs/python/test/numpy/
Dufunc.py20 def testArray(self): member in TestUnary
43 def testArray(self): member in TestBinary
/third_party/json/test/thirdparty/doctest/
Ddoctest.h5736 std::vector<const TestCase*> testArray;
5738 testArray.push_back(&curr);
5739 p->numTestCases = testArray.size();
5742 if(!testArray.empty()) {
5744 std::sort(testArray.begin(), testArray.end(), fileOrderComparator);
5746 std::sort(testArray.begin(), testArray.end(), suiteOrderComparator);
5748 std::sort(testArray.begin(), testArray.end(), nameOrderComparator);
5753 const auto first = &testArray[0];
5754 for(size_t i = testArray.size() - 1; i > 0; --i) {
5774 for(auto& curr : testArray) {