Home
last modified time | relevance | path

Searched refs:orders (Results 1 – 25 of 142) sorted by relevance

123456

/third_party/icu/icu4c/source/test/intltest/
Dtscoll.cpp392 LocalArray<Order> orders(getOrders(iter, orderLength)); in backAndForth() local
417 if (o != orders[index].order) { in backAndForth()
421 while (index > 0 && orders[--index].order == 0) { in backAndForth()
425 if (o != orders[index].order) { in backAndForth()
427 orders[index].order, o); in backAndForth()
435 if (offset != orders[index].offset) { in backAndForth()
437 orders[index].offset, offset); in backAndForth()
445 while (index != 0 && orders[index - 1].order == 0) in backAndForth()
489 LocalArray<Order> orders(new Order[maxSize]); in getOrders() local
501 uprv_memcpy(temp, orders.getAlias(), size * sizeof(Order)); in getOrders()
[all …]
Ditercoll.cpp191 Order *orders = getOrders(*iter, orderLength); in TestOffset() local
218 delete[] orders; in TestOffset()
/third_party/typescript/tests/baselines/reference/
DinferenceLimit.types19 …ise.all(result.map(populateItems)) .then((orders: Array<MyModule.MyModel>) => { resolv…
22 …ise.all(result.map(populateItems)) .then((orders: Array<MyModule.MyModel>) => { resolv…
76 …ise.all(result.map(populateItems)) .then((orders: Array<MyModule.MyModel>) => { resolv…
88 .then((orders: Array<MyModule.MyModel>) => {
90 >(orders: Array<MyModule.MyModel>) => { resolve(orders); } : (orders: Array<MyModule.My…
91 >orders : MyModule.MyModel[]
94 resolve(orders);
95 >resolve(orders) : void
97 >orders : MyModule.MyModel[]
DinferenceLimit.js27 .then((orders: Array<MyModule.MyModel>) => {
28 resolve(orders);
74 .then((orders) => {
75 resolve(orders);
DinferenceLimit.symbols72 .then((orders: Array<MyModule.MyModel>) => {
74 >orders : Symbol(orders, Decl(file1.ts, 23, 13))
79 resolve(orders);
81 >orders : Symbol(orders, Decl(file1.ts, 23, 13))
/third_party/icu/icu4c/source/test/cintltst/
Dcallcoll.c484 OrderAndOffset *orders =(OrderAndOffset *)malloc(sizeof(OrderAndOffset) * maxSize); in getOrders() local
495 memcpy(temp, orders, size * sizeof(OrderAndOffset)); in getOrders()
496 free(orders); in getOrders()
497 orders = temp; in getOrders()
501 orders[size].order = order; in getOrders()
502 orders[size].offset = offset; in getOrders()
512 memcpy(temp, orders, size * sizeof(OrderAndOffset)); in getOrders()
513 free(orders); in getOrders()
514 orders = temp; in getOrders()
520 return orders; in getOrders()
[all …]
Dcitertst.c566 OrderAndOffset *orders; in TestOffset() local
598 orders = getOrders(iter, &orderLength); in TestOffset()
630 free(orders); in TestOffset()
944 *orders; in TestSmallBuffer() local
966 orders = getOrders(iter, &count); in TestSmallBuffer()
983 if ((count > 250 && testorders[-- count].order != orders[1].order) || in TestSmallBuffer()
984 (count <= 250 && testorders[-- count].order != orders[0].order)) { in TestSmallBuffer()
991 free(orders); in TestSmallBuffer()
/third_party/ffmpeg/tests/fate/
Dalac.mak4 fate-alac-16-lpc-orders \
8 fate-alac-24-lpc-orders \
12 fate-alac-%-lpc-orders: OPTS = -min_prediction_order 1 -max_prediction_order 30
/third_party/typescript/tests/cases/compiler/
DinferenceLimit.ts27 .then((orders: Array<MyModule.MyModel>) => {
28 resolve(orders);
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
DCollationTest.java100 int[] orders = new int[maxSize]; in getOrders() local
107 System.arraycopy(orders, 0, temp, 0, size); in getOrders()
108 orders = temp; in getOrders()
110 orders[size++] = order; in getOrders()
115 System.arraycopy(orders, 0, temp, 0, size); in getOrders()
116 orders = temp; in getOrders()
118 return orders; in getOrders()
125 int[] orders = getOrders(iter); in backAndForth() local
128 int index = orders.length; in backAndForth()
135 if (o != orders[--index]) { in backAndForth()
[all …]
DCollationIteratorTest.java240 int[] orders = CollationTest.getOrders(iter); in TestOffset() local
241 logln("orders.length = " + orders.length); in TestOffset()
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationTest.java97 int[] orders = new int[maxSize]; in getOrders() local
104 System.arraycopy(orders, 0, temp, 0, size); in getOrders()
105 orders = temp; in getOrders()
107 orders[size++] = order; in getOrders()
112 System.arraycopy(orders, 0, temp, 0, size); in getOrders()
113 orders = temp; in getOrders()
115 return orders; in getOrders()
122 int[] orders = getOrders(iter); in backAndForth() local
125 int index = orders.length; in backAndForth()
132 if (o != orders[--index]) { in backAndForth()
[all …]
DCollationIteratorTest.java237 int[] orders = CollationTest.getOrders(iter); in TestOffset() local
238 logln("orders.length = " + orders.length); in TestOffset()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory/
DvktMemoryAllocationTests.cpp962 } orders[] = in createAllocationTestsCommon() local
978 for (size_t orderNdx = 0; orderNdx < DE_LENGTH_OF_ARRAY(orders); orderNdx++) in createAllocationTestsCommon()
980 const TestConfig::Order order = orders[orderNdx].order; in createAllocationTestsCommon()
981 const char* const orderName = orders[orderNdx].str; in createAllocationTestsCommon()
1028 for (size_t orderNdx = 0; orderNdx < DE_LENGTH_OF_ARRAY(orders); orderNdx++) in createAllocationTestsCommon()
1030 const TestConfig::Order order = orders[orderNdx].order; in createAllocationTestsCommon()
1031 const char* const orderName = orders[orderNdx].str; in createAllocationTestsCommon()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory/
DvktMemoryAllocationTests.cpp962 } orders[] = in createAllocationTestsCommon() local
978 for (size_t orderNdx = 0; orderNdx < DE_LENGTH_OF_ARRAY(orders); orderNdx++) in createAllocationTestsCommon()
980 const TestConfig::Order order = orders[orderNdx].order; in createAllocationTestsCommon()
981 const char* const orderName = orders[orderNdx].str; in createAllocationTestsCommon()
1028 for (size_t orderNdx = 0; orderNdx < DE_LENGTH_OF_ARRAY(orders); orderNdx++) in createAllocationTestsCommon()
1030 const TestConfig::Order order = orders[orderNdx].order; in createAllocationTestsCommon()
1031 const char* const orderName = orders[orderNdx].str; in createAllocationTestsCommon()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DFastOpenGLStateTransitions.md7 [VkPipeline][VkPipeline] for each state vector. Compiling VkPipelines is multiple orders of
15 pipeline recompilations are orders of manitude slower than OpenGL state changes.
/third_party/icu/docs/userguide/collation/
Dindex.md110 sorting orders. For example, in German dictionaries, "öf" would come before
113 * Sorting orders can change over time due to government regulations or new
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dsemantics_test.dart798 …testWidgets('Semantics widgets built with explicit sort orders are sorted properly', (WidgetTester…
853 …testWidgets('Semantics widgets without sort orders are sorted properly', (WidgetTester tester) asy…
972 …testWidgets('Semantics widgets without sort orders are sorted properly when no Directionality is p…
Dreparent_state_harder_test.dart89 testWidgets('Handle GlobalKey reparenting in weird orders', (WidgetTester tester) async {
/third_party/rust/crates/memchr/bench/data/pathological/
DREADME.md5 some common cases *a lot* faster (potentially by orders of magnitude). The key
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DREADME.md33 [VkPipeline][VkPipeline] for each state vector. Compiling VkPipelines is multiple orders of
39 pipeline recompilations are orders of manitude slower than OpenGL state changes.
/third_party/mbedtls/tests/data_files/
DReadme-x509.txt116 - crt_cat_*.pem: (1+2) concatenations in various orders:
/third_party/iowow/
DREADME.md156 /// then traverse records according to club name in ascending and descending orders.
/third_party/flutter/flutter/examples/catalog/lib/
Dcustom_a11y_traversal.dart12 /// traversal orders using sort keys.
/third_party/vk-gl-cts/external/vulkan-docs/src/appendices/
DVK_NV_shading_rate_image.txt87 We are including a mechanism to allow aplications to specify the orders of

123456