Home
last modified time | relevance | path

Searched refs:sorting (Results 1 – 25 of 241) sorted by relevance

12345678910

/external/perfetto/ui/src/controller/aggregation/
Daggregation_controller.ts83 this.previousSorting !== aggregatePreferences.sorting;
91 if (sortingChanged) this.previousSorting = aggregatePreferences.sorting;
121 let sorting = `${this.getDefaultSorting().column} ${ variable
123 if (pref && pref.sorting) {
124 sorting = `${pref.sorting.column} ${pref.sorting.direction}`;
126 const query = `select ${colIds} from ${this.kind} order by ${sorting}`;
/external/tensorflow/tensorflow/core/util/sparse/
Dsparse_tensor_test.cc65 std::vector<int64> sorting(N); in TEST() local
66 for (std::size_t n = 0; n < N; ++n) sorting[n] = n; in TEST()
72 std::sort(sorting.begin(), sorting.end(), sorter); in TEST()
73 EXPECT_EQ(sorting, std::vector<int64>({0, 4, 3, 2, 1})); in TEST()
76 std::sort(sorting.begin(), sorting.end(), sorter_fixed); in TEST()
77 EXPECT_EQ(sorting, std::vector<int64>({0, 4, 3, 2, 1})); in TEST()
82 for (std::size_t n = 0; n < N; ++n) sorting[n] = n; in TEST()
83 std::sort(sorting.begin(), sorting.end(), sorter1); in TEST()
84 EXPECT_EQ(sorting, std::vector<int64>({0, 3, 2, 1, 4})); in TEST()
87 for (std::size_t n = 0; n < N; ++n) sorting[n] = n; in TEST()
[all …]
/external/perfetto/ui/src/frontend/
Daggregation_panel.ts61 if (pref && pref.sorting && pref.sorting.column === col.columnId) {
62 sortIcon = pref.sorting.direction === 'DESC' ? 'arrow_drop_down' :
/external/harfbuzz_ng/docs/
Drepacker.md48 * [Topological sorting algorithm](https://en.wikipedia.org/wiki/Topological_sorting): an algorithm
49 which given a graph gives a linear sorting of the nodes such that all offsets will be positive.
51 * Overflow check: given a graph and a topological sorting it checks if there will be any overflows
81 The harfbuzz repacker uses two different algorithms for topological sorting:
87 sort will be used for all subsequent topological sorting operations.
109 The topological sorting operation is the core of the repacker and is run on each iteration so it ne…
110 to be as fast as possible. There's a few things that are done to speed up subsequent sorting
124 the topological sorting algorithm. Currently a basic heap based queue is used. Heap based queue's
132 If a graph contains multiple 32 bit offsets then the shortest distance sorting will be likely be
174 The sorting algorithm incorporates this via a "space" modifier that can be applied to nodes in the
/external/python/cpython3/Doc/howto/
Dsorting.rst14 In this document, we explore the various techniques for sorting data using Python.
63 takes a single argument and returns a key to use for sorting purposes. This
120 The operator module functions allow multiple levels of sorting. For example, to
162 This wonderful property lets you build complex sorts in a series of sorting
227 Now that Python sorting provides key-functions, this technique is not often needed.
311 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
Dindex.rst25 sorting.rst
/external/strace/
Dstrace-log-merge39 option which prints timestamps (otherwise sorting won't do any good).
/external/bsdiff/
DREADME.chromium10 files. By using suffix sorting and taking advantage of how executable files
/external/libdivsufsort/
DCHANGELOG.md14 * Improve the performance of the suffix-sorting algorithm
/external/python/cpython2/Doc/howto/
Dindex.rst26 sorting.rst
Dsorting.rst14 In this document, we explore the various techniques for sorting data using Python.
55 and returns a key to use for sorting purposes. This technique is fast because
105 The operator module functions allow multiple levels of sorting. For example, to
151 This wonderful property lets you build complex sorts in a series of sorting
275 * For locale aware sorting, use :func:`locale.strxfrm` for a key function or
/external/llvm/test/CodeGen/X86/
Dx86-64-sret-return-2.ll8 ; This used to crash due to topological sorting issues in selection DAG.
/external/fonttools/Tests/feaLib/data/
Dspec5d2.fea6 # must do the appropriate sorting.
/external/perfetto/ui/src/common/
Dactions.ts308 if (!prefs.sorting || prefs.sorting.column !== args.column) {
310 state.aggregatePreferences[args.id].sorting = {
314 } else if (prefs.sorting.direction === 'DESC') {
316 state.aggregatePreferences[args.id].sorting = {
322 state.aggregatePreferences[args.id].sorting = undefined;
/external/perfetto/protos/perfetto/common/
Dandroid_energy_consumer_descriptor.proto28 // For a group of energy consumers of the same logical type, sorting by
/external/bzip2/
Dbzip2.txt3 bzip2, bunzip2 - a block-sorting file compressor, v1.0.8
17 sorting text compression algorithm, and Huffman coding.
199 behaviour of the sorting algorithm in earlier ver-
318 The sorting phase of compression gathers together similar
376 block sorting transformation), David Wheeler (again, for
384 for faster sorting algorithms, so as to speed up compres-
DREADME.XML.STUFF3 lossless, block-sorting data compression.
DMakefile-libbz2_so11 # lossless, block-sorting data compression.
Dbzip2.1.preformatted6 bzip2, bunzip2 − a block‐sorting file compressor, v1.0.8
20 sorting text compression algorithm, and Huffman coding.
202 behaviour of the sorting algorithm in earlier ver­
321 The sorting phase of compression gathers together similar
381 block sorting transformation), David Wheeler (again, for
389 for faster sorting algorithms, so as to speed up compres­
/external/perfetto/protos/perfetto/trace/track_event/
Dchrome_thread_descriptor.proto84 // To support old UI. New UI should determine default sorting by thread_type.
Dthread_descriptor.proto73 // To support old UI. New UI should determine default sorting by thread_type.
Dprocess_descriptor.proto54 // To support old UI. New UI should determine default sorting by process_type.
Dchrome_process_descriptor.proto73 // To support old UI. New UI should determine default sorting by process_type.
/external/tensorflow/tensorflow/compiler/xla/client/lib/
DBUILD376 name = "sorting",
377 srcs = ["sorting.cc"],
378 hdrs = ["sorting.h"],
396 ":sorting",
/external/eigen/doc/
DTutorialSTL.dox54 Here is an example sorting each row of a matrix:

12345678910