/third_party/node/test/parallel/ |
H A D | test-async-hooks-http-parser-destroy.js | 78 assert.deepStrictEqual(destroyedIdsIncomingMessage.sort(), 79 createdIdsIncomingMessage.sort()); 80 assert.deepStrictEqual(destroyedIdsClientRequest.sort(), 81 createdIdsClientRequest.sort());
|
H A D | test-url-parse-query.js | 16 assert.deepStrictEqual(Object.keys(actual).sort(), 17 Object.keys(expected).sort()); 81 const properties = Object.keys(actual).sort(); 82 assert.deepStrictEqual(properties, Object.keys(expected).sort());
|
H A D | test-binding-constants.js | 10 Object.keys(constants).sort(), ['crypto', 'fs', 'os', 'trace', 'zlib'] 14 Object.keys(constants.os).sort(), ['UV_UDP_REUSEADDR', 'dlopen', 'errno',
|
H A D | test-querystring-multichar-separator.js | 8 assert.deepStrictEqual(Object.keys(actual).sort(), 9 Object.keys(expected).sort());
|
/third_party/littlefs/scripts/ |
H A D | perf.py | 298 # sort and keep largest/first when duplicates 299 sym_at.sort(key=lambda x: (x[0], -x[2], x[1])) 368 # sort and keep first when duplicates 369 lines.sort() 376 # sort and keep first when duplicates 377 line_at.sort() 677 sort=None, 705 # sort again, now with diff info, note that python's sort is stable 706 names.sort() [all...] |
H A D | perfbd.py | 206 # sort and keep largest/first when duplicates 207 sym_at.sort(key=lambda x: (x[0], -x[2], x[1])) 276 # sort and keep first when duplicates 277 lines.sort() 284 # sort and keep first when duplicates 285 line_at.sort() 643 sort=None, 671 # sort again, now with diff info, note that python's sort is stable 672 names.sort() [all...] |
H A D | cov.py | 338 sort=None, 365 # sort again, now with diff info, note that python's sort is stable 366 names.sort() 368 names.sort(key=lambda n: tuple( 374 if sort: 375 for k, reverse in reversed(sort): 376 names.sort( 585 sort=None, 621 # sort, not [all...] |
H A D | code.py | 167 cmd = nm_path + ['--size-sort', path] 351 sort=None, 378 # sort again, now with diff info, note that python's sort is stable 379 names.sort() 381 names.sort(key=lambda n: tuple( 387 if sort: 388 for k, reverse in reversed(sort): 389 names.sort( 523 sort [all...] |
H A D | data.py | 167 cmd = nm_path + ['--size-sort', path] 351 sort=None, 378 # sort again, now with diff info, note that python's sort is stable 379 names.sort() 381 names.sort(key=lambda n: tuple( 387 if sort: 388 for k, reverse in reversed(sort): 389 names.sort( 523 sort [all...] |
H A D | summary.py | 385 sort=None, 412 # sort again, now with diff info, note that python's sort is stable 413 names.sort() 415 names.sort(key=lambda n: tuple( 421 if sort: 422 for k, reverse in reversed(sort): 423 names.sort( 567 sort=None, 653 # sort, not [all...] |
H A D | stack.py | 314 sort=None, 343 # sort again, now with diff info, note that python's sort is stable 344 names.sort() 346 names.sort(key=lambda n: tuple( 352 if sort: 353 for k, reverse in reversed(sort): 354 names.sort( 519 # note we're maintaining sort order 541 sort [all...] |
/test/testfwk/developer_test/src/core/command/ |
H A D | display.py | 313 subsystem_name_list.sort() 325 sub_list.sort() 352 sub_list.sort() 367 subsystem_name_list.sort() 372 part_name_list.sort()
|
/third_party/ltp/testcases/kernel/hotplug/cpu_hotplug/tools/ |
H A D | cpuhotplug_report_proc_interrupts | 9 foreach my $irq (sort keys %{$run1}) { 12 foreach my $cpu (sort keys %{$run1->{$irq}}) { 19 foreach my $cpu (sort keys %{$run1->{$irq}}) {
|
/third_party/protobuf/js/ |
H A D | map.js | 118 strKeys.sort(); 266 strKeys.sort(); 283 strKeys.sort(); 299 strKeys.sort(); 315 strKeys.sort(); 332 strKeys.sort(); 426 strKeys.sort();
|
/third_party/node/test/sequential/ |
H A D | test-fs-readdir-recursive.js | 135 dirents.sort((a, b) => (getDirentPath(a) < getDirentPath(b) ? -1 : 1)); 148 assert.deepStrictEqual(result.sort(), expected); 163 assert.deepStrictEqual(result.sort(), expected); 181 assert.deepStrictEqual(result.sort(), expected);
|
/third_party/ltp/testcases/kernel/tracing/dynamic_debug/ |
H A D | dynamic_debug01.sh | 96 | sort | uniq) 98 | sort | uniq) 100 | sort | uniq) 102 | sort | uniq)
|
/third_party/typescript/tests/baselines/reference/ |
H A D | interfaceAssignmentCompat.js | 33 x=x.sort(CompareYeux); // parameter mismatch 35 var z=x.sort(CompareEyes); // ok 78 x = x.sort(CompareYeux); // parameter mismatch
80 var z = x.sort(CompareEyes); // ok
|
H A D | reverseInferenceInContextualInstantiation.js | 4 x.sort(compare); // Error, but shouldn't be 10 x.sort(compare); // Error, but shouldn't be
|
/third_party/node/deps/v8/tools/clusterfuzz/js_fuzzer/ |
H A D | gen_exceptions.js | 88 failedParse.sort(); 89 failedParseStrict.sort(); 90 failedMutate.sort(); 96 slow.sort(slowestFirst); 97 verySlow.sort(slowestFirst);
|
/third_party/node/deps/npm/node_modules/cli-columns/ |
H A D | index.js | 11 sort: true, 61 if (options.sort !== false) { 62 cells = cells.sort(byPlainText);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | simple_ilist.h | 259 void sort() { sort(std::less<T>()); } in sort() function in llvm::simple_ilist 260 template <class Compare> void sort(Compare comp); 288 void simple_ilist<T, Options...>::sort(Compare comp) { in sort() function in llvm::simple_ilist 303 sort(comp); in sort() 304 RHS.sort(comp); in sort()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | simple_ilist.h | 263 void sort() { sort(std::less<T>()); } in sort() function in llvm::simple_ilist 264 template <class Compare> void sort(Compare comp); 292 void simple_ilist<T, Options...>::sort(Compare comp) { in sort() function in llvm::simple_ilist 307 sort(comp); in sort() 308 RHS.sort(comp); in sort()
|
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
H A D | CollationThreadTest.java | 137 sort(temporaryData, collator); 150 private static void sort(String[] data, Collator collator) { in sort() method in CollationThreadTest 151 Arrays.sort(data, collator); in sort() 213 sort(this.data, this.collator); in run() 215 control.fail(name + ": incorrect sort"); in run()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
H A D | CollationThreadTest.java | 140 sort(temporaryData, collator); 153 private static void sort(String[] data, Collator collator) { in sort() method in CollationThreadTest 154 Arrays.sort(data, collator); in sort() 216 sort(this.data, this.collator); in run() 218 control.fail(name + ": incorrect sort"); in run()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
H A D | TextStub.cpp | 521 llvm::sort(Section.Symbols.begin(), Section.Symbols.end()); in NormalizedTBD() 522 llvm::sort(Section.Classes.begin(), Section.Classes.end()); in NormalizedTBD() 523 llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end()); in NormalizedTBD() 524 llvm::sort(Section.IVars.begin(), Section.IVars.end()); in NormalizedTBD() 525 llvm::sort(Section.WeakDefSymbols.begin(), in NormalizedTBD() 527 llvm::sort(Section.TLVSymbols.begin(), Section.TLVSymbols.end()); in NormalizedTBD() 579 llvm::sort(Section.Symbols.begin(), Section.Symbols.end()); in NormalizedTBD() 580 llvm::sort(Section.Classes.begin(), Section.Classes.end()); in NormalizedTBD() 581 llvm::sort(Section.ClassEHs.begin(), Section.ClassEHs.end()); in NormalizedTBD() 582 llvm::sort(Sectio in NormalizedTBD() [all...] |