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

1 2 3 4 5 6 7 8

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 823 ListenableFuture<List<String>> compound =
828 compound.addListener(listener, directExecutor());
831 assertFalse(compound.isDone());
833 assertFalse(compound.isDone());
835 assertFalse(compound.isDone());
838 assertTrue(compound.isDone());
841 List<String> results = compound.get();
849 ListenableFuture<List<String>> compound = Futures.allAsList(futures);
850 compound.addListener(listener, directExecutor());
851 assertTrue(compound.isDone())
    [all...]
  /external/icu/icu4c/source/data/mappings/
ucmfiles.mk 119 icu-internal-compound-d1.ucm icu-internal-compound-d2.ucm icu-internal-compound-d3.ucm icu-internal-compound-d4.ucm\
120 icu-internal-compound-d5.ucm icu-internal-compound-d6.ucm icu-internal-compound-d7.ucm \
121 icu-internal-compound-s1.ucm icu-internal-compound-s2.ucm icu-internal-compound-s3.ucm icu-internal-compound-t.ucm
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
OrderingTest.java 242 Comparator<String> comparator = Ordering.compound(ImmutableList.of(
258 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0));
275 Ordering<Number> a = numbers.compound(numbers);
277 // The compound takes the more specific type of the two, regardless of order
279 Ordering<Number> b = numbers.compound(objects);
280 Ordering<Number> c = objects.compound(numbers);
282 Ordering<Integer> d = numbers.compound(integers);
283 Ordering<Integer> e = integers.compound(numbers);
288 Ordering<Number> f = numbers.compound(objects).compound(objects); //bad IDE
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
OrderingTest.java 244 Comparator<String> comparator = Ordering.compound(ImmutableList.of(
260 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0));
277 Ordering<Number> a = numbers.compound(numbers);
279 // The compound takes the more specific type of the two, regardless of order
281 Ordering<Number> b = numbers.compound(objects);
282 Ordering<Number> c = objects.compound(numbers);
284 Ordering<Integer> d = numbers.compound(integers);
285 Ordering<Integer> e = integers.compound(numbers);
290 Ordering<Number> f = numbers.compound(objects).compound(objects); //bad IDE
    [all...]
  /prebuilts/go/darwin-x86/test/ken/
cplx5.go 7 // Test compound types made of complex numbers.
  /prebuilts/go/linux-x86/test/ken/
cplx5.go 7 // Test compound types made of complex numbers.
  /system/tools/aidl/
ast_cpp_unittest.cpp 158 ArgList compound({"foo", "bar", "baz"});
159 CompareGeneratedCode(compound, "(foo, bar, baz)");
  /frameworks/ml/nn/runtime/
ExecutionPlan.h 210 auto& temporaryToDefiningStep = compound()->mTemporaryToDefiningStep;
219 enum class Kind { ERROR, EMPTY, SIMPLE, COMPOUND };
271 enum { EMPTY, SIMPLE, COMPOUND } mState = EMPTY;
273 CompoundBody* compound() { function in class:android::nn::ExecutionPlan
274 nnAssert(mState == COMPOUND);
277 const CompoundBody* compound() const { function in class:android::nn::ExecutionPlan
278 nnAssert(mState == COMPOUND);
  /external/skia/gm/
textbloblooper.cpp 161 LooperSettings compound[] = { variable
192 compound, SK_ARRAY_COUNT(compound)));
  /external/skqp/gm/
textbloblooper.cpp 161 LooperSettings compound[] = { variable
192 compound, SK_ARRAY_COUNT(compound)));
  /external/python/cpython2/Demo/tix/samples/
PanedWin.py 65 I have implemented a new image type called "compound". It allows you
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
test_extensions.py 100 x = ttk.LabeledScale(self.root, compound='top')
103 x = ttk.LabeledScale(self.root, compound='bottom')
107 x = ttk.LabeledScale(self.root, compound='unknown')
  /external/python/cpython3/Lib/tkinter/test/test_ttk/
test_extensions.py 96 x = ttk.LabeledScale(self.root, compound='top')
99 x = ttk.LabeledScale(self.root, compound='bottom')
103 x = ttk.LabeledScale(self.root, compound='unknown')
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 89 x = ttk.LabeledScale(compound='top')
92 x = ttk.LabeledScale(compound='bottom')
95 x = ttk.LabeledScale(compound='unknown') # invert default positions
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 89 x = ttk.LabeledScale(compound='top')
92 x = ttk.LabeledScale(compound='bottom')
95 x = ttk.LabeledScale(compound='unknown') # invert default positions
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 89 x = ttk.LabeledScale(compound='top')
92 x = ttk.LabeledScale(compound='bottom')
95 x = ttk.LabeledScale(compound='unknown') # invert default positions
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/test_ttk/
test_extensions.py 89 x = ttk.LabeledScale(compound='top')
92 x = ttk.LabeledScale(compound='bottom')
95 x = ttk.LabeledScale(compound='unknown') # invert default positions
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
Demo.java 83 boolean compound = false;
154 } else if (compound) {
155 // Adding an item to a compound transliterator
181 translitMenu.add(citem = new CheckboxMenuItem("Compound"));
186 // If compound gets deselected, then select NONE
188 } else if (!compound) {
189 // Switching from non-compound to compound
193 compound = true;
313 // Compound Transliterato
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
compound.go 7 // Test compound objects
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
compound.go 7 // Test compound objects
  /prebuilts/go/darwin-x86/src/encoding/asn1/
common.go 15 // a flag denoting if this object is compound or not
65 // compound flag set.
141 // and expected compound flag.
  /prebuilts/go/linux-x86/src/encoding/asn1/
common.go 15 // a flag denoting if this object is compound or not
65 // compound flag set.
141 // and expected compound flag.
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 303 \qquad \bnfnt{compound-type}*
327 \qquad \bnfnt{compound-type}*
344 \qquad \bnfnt{compound-type}* \\
349 \qquad \bnfnt{compound-type}*
363 \qquad \bnfnt{compound-type}*
368 \qquad \bnfnt{compound-type}*
459 \qquad \bnfnt{compound-type}*
478 \qquad \bnfnt{compound-type}*
627 \qquad \bnfnt{compound-type}* \\
638 \qquad \bnfnt{compound-type}* \
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 63 * <li>{@link #compound(Comparator)}
380 * might use {@code byStatus.compound(byPriority)}. For a compound ordering
384 * is equivalent to one created using {@link Ordering#compound(Iterable)} on
388 public <U extends T> Ordering<U> compound( method in class:Ordering
401 * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}.
409 public static <T> Ordering<T> compound( method in class:Ordering
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_ra.cpp 761 // the separate intervals for testing interference of compound values)
1002 // Used when coalescing moves. The non-compound value will become one, e.g.:
1010 if (ldst->compound && !lsrc->compound) {
1016 ldst->compound = lsrc->compound;
1033 if (!rep->compound)
1035 rep->compound = 1;
1040 val->compound = 1;
1046 INFO_DBG(prog->dbgFlags, REG_ALLOC, "compound: %%%i:%02x <- %%%i:%02x\n"
    [all...]

Completed in 583 milliseconds

1 2 3 4 5 6 7 8