/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
FuturesTest.java | 543 ListenableFuture<List<String>> compound = 548 compound.addListener(listener, MoreExecutors.sameThreadExecutor()); 551 assertFalse(compound.isDone()); 553 assertFalse(compound.isDone()); 555 assertFalse(compound.isDone()); 558 assertTrue(compound.isDone()); 561 List<String> results = compound.get(); 569 ListenableFuture<List<String>> compound = Futures.allAsList(futures); 570 compound.addListener(listener, MoreExecutors.sameThreadExecutor()); 571 assertTrue(compound.isDone()) [all...] |
/external/chromium_org/third_party/icu/source/data/mappings/ |
ucmfiles.mk | 116 icu-internal-compound-d1.ucm icu-internal-compound-d2.ucm icu-internal-compound-d3.ucm icu-internal-compound-d4.ucm\ 117 icu-internal-compound-d5.ucm icu-internal-compound-d6.ucm icu-internal-compound-d7.ucm \ 118 icu-internal-compound-s1.ucm icu-internal-compound-s2.ucm icu-internal-compound-s3.ucm icu-internal-compound-t.uc [all...] |
/external/icu4c/data/mappings/ |
ucmfiles.mk | 117 icu-internal-compound-d1.ucm icu-internal-compound-d2.ucm icu-internal-compound-d3.ucm icu-internal-compound-d4.ucm\ 118 icu-internal-compound-d5.ucm icu-internal-compound-d6.ucm icu-internal-compound-d7.ucm \ 119 icu-internal-compound-s1.ucm icu-internal-compound-s2.ucm icu-internal-compound-s3.ucm icu-internal-compound-t.ucm [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
assignment.js | 28 // Tests for compound assignments at the top level 49 // Test compound assignments in an anonymous function with local variables. 71 // Test compound assignments in an anonymous function with global variables. 93 // Test compound assignments in a named function with local variables. 117 // Test compound assignments in a named function with global variables. 143 // Tests for compound assignments in a loop at the top level 166 // Test compound assignments in an anonymous function with local variables. 190 // Test compound assignments in an anonymous function with global variables. 214 // Test compound assignments in a named function with local variables. 240 // Test compound assignments in a named function with global variables [all...] |
/external/v8/test/mjsunit/compiler/ |
assignment.js | 28 // Tests for compound assignments at the top level 49 // Test compound assignments in an anonymous function with local variables. 71 // Test compound assignments in an anonymous function with global variables. 93 // Test compound assignments in a named function with local variables. 117 // Test compound assignments in a named function with global variables. 143 // Tests for compound assignments in a loop at the top level 166 // Test compound assignments in an anonymous function with local variables. 190 // Test compound assignments in an anonymous function with global variables. 214 // Test compound assignments in a named function with local variables. 240 // Test compound assignments in a named function with global variables [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
OrderingTest.java | 227 Comparator<String> comparator = Ordering.compound(asList( 243 Comparator<String> comparator = byCharAt(1).compound(byCharAt(0)); 260 Ordering<Number> a = numbers.compound(numbers); 262 // The compound takes the more specific type of the two, regardless of order 264 Ordering<Number> b = numbers.compound(objects); 265 Ordering<Number> c = objects.compound(numbers); 267 Ordering<Integer> d = numbers.compound(integers); 268 Ordering<Integer> e = integers.compound(numbers); 273 Ordering<Number> f = numbers.compound(objects).compound(objects); //bad IDE [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
declarative_content_custom_bindings.js | 46 'list of valid compound selectors: ' +
|
/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/chromium_org/v8/test/mjsunit/regress/ |
regress-969.js | 55 // Compound assignment to global variable. 76 // Assignment, compound assignment, and pre and post-increment of named 103 // Assignment, compound assignment, and pre and post-increment of indexed
|
regress-crbug-140083.js | 30 // Test that the absence of a setter in a compound/count operation works.
|
/external/v8/test/mjsunit/regress/ |
regress-969.js | 55 // Compound assignment to global variable. 76 // Assignment, compound assignment, and pre and post-increment of named 103 // Assignment, compound assignment, and pre and post-increment of indexed
|
/external/chromium_org/third_party/mesa/src/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...] |
nv50_ir.cpp | 232 compound = 0; 249 compound = 0;
|
nv50_ir.h | 517 unsigned compMask : 8; // compound/component mask 518 unsigned compound : 1; // used by RA, value involved in split/merge
|
/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...] |
nv50_ir.cpp | 232 compound = 0; 249 compound = 0;
|
/external/openssh/ |
auth-pam.c | 1076 char *compound; local 1080 compound = xmalloc(len); 1082 snprintf(compound, len, "%s=%s", name, value); 1083 ret = pam_putenv(sshpam_handle, compound); 1084 xfree(compound);
|
/external/guava/guava/src/com/google/common/collect/ |
Ordering.java | 275 * Ordering.from(comp1).compound(comp2).compound(comp3) . . .}. 283 public static <T> Ordering<T> compound( method in class:Ordering 300 * might use {@code byStatus.compound(byPriority)}. For a compound ordering 304 * is equivalent to one created using {@link Ordering#compound(Iterable)} on 308 public <U extends T> Ordering<U> compound( method in class:Ordering
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar | |
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
ir.py | 390 class Compound(genpyx.Compound, Taged): 420 class Struct(genpyx.Struct, Compound): 426 class Union(genpyx.Union, Compound): 503 return self.spec.compound # i am a compound 504 compound = property(get_compound) variable in class:Declarator 761 if self and isinstance(self[0],Compound): 763 compound = property(get_compound) variable in class:TypeSpecifiers 943 # elif self[i].compound [all...] |
/external/chromium_org/content/browser/resources/media/ |
stats_graph_helper.js | 164 // both the simple and compound graph cases.
|
/external/chromium_org/third_party/sqlite/src/test/ |
collate5.test | 26 # collate5-2.* - Compound SELECT 27 # collate5-3.* - ORDER BY on compound SELECT 94 # The remainder of this file tests compound SELECT statements. 97 ifcapable !compound { 188 # for the compound SELECT operators works with record lengths that lie 217 # These tests - collate5-3.* - focus on compound SELECT queries that
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 155 def f4(two, (compound, (argument, list))): pass 156 def f5((compound, first), two): pass 161 ('two', '(compound, (argument, list))', 'compound', 'argument', 164 ('(compound, first)', 'two', 'compound', 'first')) 167 ('two', '.1', 'compound', 'argument', 'list')) 169 ('.0', 'two', 'compound', 'first'))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 155 def f4(two, (compound, (argument, list))): pass 156 def f5((compound, first), two): pass 161 ('two', '(compound, (argument, list))', 'compound', 'argument', 164 ('(compound, first)', 'two', 'compound', 'first')) 167 ('two', '.1', 'compound', 'argument', 'list')) 169 ('.0', 'two', 'compound', 'first'))
|