/external/valgrind/main/none/tests/linux/ |
mremap.stderr.exp | 2 mremap(grow, nomove, constrained): Cannot allocate memory
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ConstraintsTest.java | 77 Collection<String> constrained = Constraints.constrainedCollection( local 80 constrained.add("qux"); 81 constrained.addAll(asList("cat", "dog")); 84 ASSERT.that(constrained).hasContentsInOrder("foo", "bar", TEST_ELEMENT, "qux", "cat", "dog"); 89 Collection<String> constrained = Constraints.constrainedCollection( local 92 constrained.add(TEST_ELEMENT); 96 constrained.addAll(asList("baz", TEST_ELEMENT)); 99 ASSERT.that(constrained).hasContentsInOrder("foo", "bar"); 105 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT); local 107 constrained.add("qux") 119 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT); local 134 SortedSet<String> constrained = Constraints.constrainedSortedSet( local 152 SortedSet<String> constrained = Constraints.constrainedSortedSet( local 180 List<String> constrained = Constraints.constrainedList( local 209 List<String> constrained = Constraints.constrainedList( local 218 List<String> constrained = Constraints.constrainedList( local 266 Multiset<String> constrained = Constraints.constrainedMultiset( local 289 Multiset<String> constrained = Constraints.constrainedMultiset( local 309 List<String> constrained = Constraints.constrainedList( local [all...] |
MapConstraintsTest.java | 103 Map<String, Integer> constrained = MapConstraints.constrainedMap( local 106 constrained.put("foo", 1); 108 constrained.putAll(ImmutableMap.of("baz", 3)); 109 assertTrue(map.equals(constrained)); 110 assertTrue(constrained.equals(map)); 111 assertEquals(map.entrySet(), constrained.entrySet()); 112 assertEquals(map.keySet(), constrained.keySet()); 114 HashMultiset.create(constrained.values())); 116 assertEquals(map.toString(), constrained.toString()); 117 assertEquals(map.hashCode(), constrained.hashCode()) 127 Map<String, Integer> constrained = MapConstraints.constrainedMap( local 153 BiMap<String, Integer> constrained = MapConstraints.constrainedBiMap( local 177 BiMap<String, Integer> constrained = MapConstraints.constrainedBiMap( local 213 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local 319 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local 430 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local 457 Map<String, Integer> constrained local 472 Map<String, Integer> constrained local 486 Multimap<String, Integer> constrained local 506 Multimap<String, Integer> constrained local 521 Multimap<String, Integer> constrained local 535 Multimap<String, Integer> constrained local 549 Multimap<String, Integer> constrained local 564 Multimap<String, Integer> constrained local 579 Map<String, Integer> constrained = MapConstraints.constrainedMap( local 588 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local 598 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local 608 Multimap<String, Integer> constrained = MapConstraints.constrainedMultimap( local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_urb.c | 134 (brw->urb.constrained && (brw->urb.vsize > vsize || 149 brw->urb.constrained = 0; 157 brw->urb.constrained = 1; 166 brw->urb.constrained = 1; 178 /* Mark us as operating with constrained nr_entries, so that next 180 * escaping constrained mode and getting back to normal performance. 182 brw->urb.constrained = 1; 194 printf("URB CONSTRAINED\n");
|
brw_context.h | 821 bool constrained; member in struct:brw_context::__anon13172 [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_urb.c | 134 (brw->urb.constrained && (brw->urb.vsize > vsize || 149 brw->urb.constrained = 0; 157 brw->urb.constrained = 1; 166 brw->urb.constrained = 1; 178 /* Mark us as operating with constrained nr_entries, so that next 180 * escaping constrained mode and getting back to normal performance. 182 brw->urb.constrained = 1; 194 printf("URB CONSTRAINED\n");
|
brw_context.h | 821 bool constrained; member in struct:brw_context::__anon23639 [all...] |
/external/openssh/ |
authfd.c | 542 int type, constrained = (life || confirm); local 548 type = constrained ? 562 type = constrained ? 572 if (constrained) { 634 int type, constrained = (life || confirm); local 637 type = constrained ? 648 if (constrained) {
|
/external/chromium_org/third_party/icu/source/data/region/ |
reslocal.mk | 6 # constrained by
|
/external/chromium_org/third_party/icu/source/data/zone/ |
reslocal.mk | 6 # constrained by
|
/external/chromium_org/third_party/icu/source/data/curr/ |
reslocal.mk | 6 # constrained by
|
/external/chromium_org/third_party/icu/source/data/lang/ |
reslocal.mk | 6 # constrained by
|
/external/chromium_org/third_party/icu/source/data/locales/ |
reslocal.mk | 6 # constrained by
|
/frameworks/base/data/fonts/ |
Android.mk | 42 # On space-constrained devices, we include a subset of fonts:
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.runtime.compatibility_3.2.100.v20100505.jar | |
/external/chromium_org/chrome/browser/resources/gaia_auth/ |
main.js | 58 this.constrained_ = params.constrained == '1';
|
/packages/apps/Gallery2/src/com/android/gallery3d/ui/ |
PositionController.java | 137 // Constrained frame is a rectangle that the focused box should fit into if 138 // it is constrained. It has two effects: 140 // (1) In page mode, if the focused box is constrained, scaling for the 141 // focused box is adjusted to fit into the constrained frame, instead of the 144 // (2) In page mode, if the focused box is constrained, the mPlatform's 145 // default center (mDefaultX/Y) is moved to the center of the constrained 150 // Whether the focused box is constrained. 152 // Our current program's first call to moveBox() sets constrained = true, so [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
deltablue.js | 153 * of storing the constrained variables and other information required 535 * A constrained variable. In addition to its value, it maintain the
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-deltablue.js | 144 * of storing the constrained variables and other information required 526 * A constrained variable. In addition to its value, it maintain the
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-deltablue.js | 144 * of storing the constrained variables and other information required 526 * A constrained variable. In addition to its value, it maintain the
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-deltablue.js | 144 * of storing the constrained variables and other information required 526 * A constrained variable. In addition to its value, it maintain the
|
/external/chromium_org/v8/benchmarks/ |
deltablue.js | 150 * of storing the constrained variables and other information required 532 * A constrained variable. In addition to its value, it maintain the
|
/external/v8/benchmarks/ |
deltablue.js | 150 * of storing the constrained variables and other information required 532 * A constrained variable. In addition to its value, it maintain the
|
/external/libvorbis/doc/ |
08-residue.tex | 208 stages (8 in Vorbis I, as constrained by the elements of the cascade
|
/frameworks/base/docs/html/training/ |
training_toc.cs | 126 to present multiple UI components on large screens and a more constrained set of [all...] |