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

1 2 3 4 5 6

  /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)");
  /prebuilts/go/darwin-x86/src/encoding/asn1/
common.go 15 // a flag denoting if this object is compound or not
63 // compound flag set.
137 // and expected compound flag.
  /prebuilts/go/linux-x86/src/encoding/asn1/
common.go 15 // a flag denoting if this object is compound or not
63 // compound flag set.
137 // and expected compound flag.
  /external/skia/gm/
textbloblooper.cpp 161 LooperSettings compound[] = { variable
192 compound, SK_ARRAY_COUNT(compound)));
  /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
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_ra.cpp 656 // the separate intervals for testing interference of compound values)
865 ldst->compound = lsrc->compound;
882 if (!rep->compound)
884 rep->compound = 1;
889 val->compound = 1;
895 INFO_DBG(prog->dbgFlags, REG_ALLOC, "compound: %%%i:%02x <- %%%i:%02x\n",
    [all...]
  /external/openssh/
auth-pam.c 1075 char *compound; local
1079 compound = xmalloc(len);
1081 snprintf(compound, len, "%s=%s", name, value);
1082 ret = pam_putenv(sshpam_handle, compound);
1083 free(compound);
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
ssa_test.go 66 func TestCompound(t *testing.T) { runTest(t, "compound.go") }
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
ssa_test.go 66 func TestCompound(t *testing.T) { runTest(t, "compound.go") }
  /toolchain/binutils/binutils-2.25/include/opcode/
tic6x-opcode-table.h 482 INSN(avg2, m, compound, 1616_m, C64X, 0,
488 INSN(avgu4, m, compound, 1616_m, C64X, 0,
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 
  /prebuilts/tools/common/m2/repository/net/bytebuddy/byte-buddy-agent/1.4.33/
byte-buddy-agent-1.4.33.jar 

Completed in 2617 milliseconds

1 2 3 4 5 6