HomeSort by relevance Sort by last modified time
    Searched refs:distinct (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/Reactive-Extensions/RxCpp/Rx/v2/examples/doxygen/
distinct.cpp 6 SCENARIO("distinct sample"){
7 printf("//! [distinct sample]\n");
8 auto values = rxcpp::observable<>::from(1, 2, 2, 3, 3, 3, 4, 5, 5).distinct();
13 printf("//! [distinct sample]\n");
  /development/tools/repo_diff/service/repodiff/interactors/
manifest.go 28 func toMap(common, distinct []string) TypeMap {
29 ret := make(map[string]cst.ProjectType, len(common)+len(distinct))
33 for _, k := range distinct {
manifest_test.go 34 assert.Equal(t, 153, distinctCount, "Expected count of distinct project names")
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/
rx-distinct.hpp 5 /*! \file rx-distinct.hpp
9 \return Observable that emits those items from the source observable that are distinct.
14 \snippet distinct.cpp distinct sample
15 \snippet output.txt distinct sample
40 struct distinct struct in namespace:rxcpp::operators::detail
85 /*! @copydoc rx-distinct.hpp
88 auto distinct(AN&&... an)
103 class Distinct = rxo::detail::distinct<SourceValue>
    [all...]
  /external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/
distinct.cpp 2 #include <rxcpp/operators/rx-distinct.hpp>
4 SCENARIO("distinct - never", "[distinct][operators]"){
14 WHEN("distinct values are taken"){
19 | rxo::distinct()
42 SCENARIO("distinct - empty", "[distinct][operators]"){
53 WHEN("distinct values are taken"){
57 return xs.distinct()
83 SCENARIO("distinct - return", "[distinct][operators]")
    [all...]
  /external/linux-kselftest/tools/testing/selftests/tc-testing/bpf/
Makefile 24 -Wno-compare-distinct-pointer-types
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
NavigationBarColorVerifier.java 134 .distinct()
140 .distinct()
150 .distinct()
  /external/jline/src/src/main/java/jline/
CandidateListCompletionHandler.java 15 * A {@link CompletionHandler} that deals with multiple distinct completions
93 Set distinct = new HashSet(candidates); local
95 if (distinct.size() > reader.getAutoprintThreshhold()) {
125 // copy the values and make them distinct, without otherwise
127 if (distinct.size() != candidates.size()) {
  /external/autotest/venv/lucifer/cmd/
job_aborter.py 160 .distinct()
174 .distinct()
  /external/boringssl/src/util/fipstools/fipscommon/
const.go 18 // This value need only be distinct, i.e. so that we can safely
  /external/guava/guava/src/com/google/common/collect/
ImmutableMultiset.java 432 int distinct = multiset.entrySet().size();
433 elements = new Object[distinct];
434 counts = new int[distinct];
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultiset.java 421 int distinct = multiset.entrySet().size();
422 elements = new Object[distinct];
423 counts = new int[distinct];
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/nodeTypes/
NodeWithVariables.java 151 }).distinct().toArray();
  /external/autotest/tko/
frontend.py 83 "LEFT(GROUP_CONCAT(DISTINCT reason SEPARATOR '|'),500)"
141 rows = db.select('distinct machine_group', 'tko_machines',
203 def select(klass, db, where={}, distinct=False):
208 distinct):
  /external/autotest/frontend/afe/
model_logic.py 299 if query_set.query.distinct:
300 distinct = 'DISTINCT '
302 distinct = ''
304 sql_query = ('SELECT ' + distinct + ','.join(selects) + from_)
756 -no_distinct: if True, a DISTINCT will not be added to the SELECT
771 query = query.distinct()
    [all...]
  /external/autotest/scheduler/
monitor_db_cleanup.py 83 jobs = query.distinct()
107 hqes = query.distinct()
  /external/desugar/java/com/google/devtools/build/android/desugar/scan/
KeepScanner.java 165 .distinct() // drop duplicates due to method descriptors with different returns
183 .distinct() // so we don't process the same reference multiple times next
  /external/llvm/test/MC/SystemZ/
insn-bad.s 72 #CHECK: error: {{(instruction requires: distinct-ops)?}}
77 #CHECK: error: {{(instruction requires: distinct-ops)?}}
118 #CHECK: error: {{(instruction requires: distinct-ops)?}}
168 #CHECK: error: {{(instruction requires: distinct-ops)?}}
173 #CHECK: error: {{(instruction requires: distinct-ops)?}}
202 #CHECK: error: {{(instruction requires: distinct-ops)?}}
207 #CHECK: error: {{(instruction requires: distinct-ops)?}}
220 #CHECK: error: {{(instruction requires: distinct-ops)?}}
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
Makefile 116 -Wno-compare-distinct-pointer-types
  /external/llvm/utils/vim/syntax/
llvm.vim 69 \ distinct
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/vim/syntax/
llvm.vim 75 \ distinct
  /external/autotest/frontend/tko/
rpc_interface.py 138 for test_view in query.values('job_tag').distinct():
290 'test_name', 'hostname', 'machine_idx').distinct()
  /external/desugar/java/com/google/devtools/common/options/
OptionValueDescription.java 283 .distinct()
  /cts/tests/tests/net/src/android/net/wifi/cts/
WifiManagerTest.java 478 // This will generate a distinct stack trace if the initial connection fails.
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
tuple_points_to_analysis.cc 58 bool distinct = true; local
63 distinct = false;
68 return distinct;
    [all...]

Completed in 1241 milliseconds

1 2 3