HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 476 - 500 of 3150) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
xattr.h 39 int (*set)(struct inode *inode, const char *name, const void *buffer, member in struct:xattr_handler
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_contains.py 9 class set(base_set): class in inherits:base_set
21 b = set(1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py 104 def set(self, value, name=name): function in function:defproperty
109 prop = property(get, set, doc=doc)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_contains.py 9 class set(base_set): class in inherits:base_set
21 b = set(1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
minicompat.py 104 def set(self, value, name=name): function in function:defproperty
109 prop = property(get, set, doc=doc)
  /sdk/find_java2/src/
JavaPath.cpp 40 void CJavaPath::set(int version, CPath path) { function in class:CJavaPath
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlockList.java 60 * this with the index for an element which was never set; if you
74 * @param bb {@code null-ok;} the element to set at {@code n}
76 public void set(int n, BasicBlock bb) { method in class:BasicBlockList
77 super.set(n, bb);
200 result.set(i, one.withRegisterOffset(delta));
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlockList.java 60 * this with the index for an element which was never set; if you
74 * @param bb {@code null-ok;} the element to set at {@code n}
76 public void set(int n, BasicBlock bb) { method in class:BasicBlockList
77 super.set(n, bb);
199 result.set(i, one.withRegisterOffset(delta));
  /development/samples/devbytes/animation/Anticipation/src/com/example/android/anticipation/
AnticiButton.java 137 AnimatorSet set = new AnimatorSet(); local
138 set.playSequentially(moveAnim, skewAnim, wobbleAnim);
140 set.play(finishDownAnim).before(moveAnim);
142 set.start();
223 mTempRect.set(0, 0, getRight(), getBottom());
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardFlip.java 259 AnimatorSet set = new AnimatorSet(); local
260 set.playTogether(animations);
261 set.addListener(new AnimatorListenerAdapter() {
267 set.start();
287 AnimatorSet set = new AnimatorSet(); local
288 set.playTogether(animations);
289 set.addListener(new AnimatorListenerAdapter() {
295 set.start();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Set.java 9 * ASN.1 <code>SET</code> and <code>SET OF</code> constructs.
11 * Note: This does not know which syntax the set is!
12 * (The difference: ordering of SET elements or not ordering.)
22 * <h4>8.11 Encoding of a set value </h4>
23 * <b>8.11.1</b> The encoding of a set value shall be constructed
27 * ASN.1 definition of the set type, in an order chosen by the sender,
35 * NOTE &mdash; The order of data values in a set value is not significant,
38 * <h4>8.12 Encoding of a set-of value</h4>
39 * <b>8.12.1</b> The encoding of a set-of value shall be constructed
98 private Vector set = new Vector(); field in class:ASN1Set
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlockList.java 60 * this with the index for an element which was never set; if you
74 * @param bb {@code null-ok;} the element to set at {@code n}
76 public void set(int n, BasicBlock bb) { method in class:BasicBlockList
77 super.set(n, bb);
199 result.set(i, one.withRegisterOffset(delta));
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSetTest.java 29 import java.util.Set;
109 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
110 ASSERT.that(set.headSet(1)).isEmpty();
111 ASSERT.that(set.headSet(2)).has().item(1);
112 ASSERT.that(set.headSet(3)).has().exactly(1, 2).inOrder();
113 ASSERT.that(set.headSet(4)).has().exactly(1, 2, 3).inOrder();
114 ASSERT.that(set.headSet(Integer.MAX_VALUE)).has().exactly(1, 2, 3).inOrder();
115 ASSERT.that(set.headSet(1, true)).has().item(1);
116 ASSERT.that(set.headSet(2, true)).has().exactly(1, 2).inOrder();
117 ASSERT.that(set.headSet(3, true)).has().exactly(1, 2, 3).inOrder()
127 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
143 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
160 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
190 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
206 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
265 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
275 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
    [all...]
MultisetsTest.java 42 TreeMultiset<DerivedComparable> set = TreeMultiset.create(); local
43 assertTrue(set.isEmpty());
44 set.add(new DerivedComparable("foo"), 2);
45 set.add(new DerivedComparable("bar"), 3);
46 ASSERT.that(set).has().exactly(
52 TreeMultiset<LegacyComparable> set = TreeMultiset.create(); local
53 assertTrue(set.isEmpty());
54 set.add(new LegacyComparable("foo"), 2);
55 set.add(new LegacyComparable("bar"), 3);
56 ASSERT.that(set).has().exactly(new LegacyComparable("bar")
    [all...]
ImmutableSortedSetTest.java 30 import java.util.Set;
103 SortedSet<String> set = of(); local
104 assertSame(Ordering.natural(), set.comparator());
108 SortedSet<String> set = of(); local
109 assertSame(set, set.headSet("c"));
113 SortedSet<String> set = of(); local
114 assertSame(set, set.tailSet("f"));
118 SortedSet<String> set = of() local
123 SortedSet<String> set = of(); local
132 SortedSet<String> set = of(); local
141 SortedSet<String> set = of("e"); local
146 SortedSet<String> set = of("e"); local
154 SortedSet<String> set = of("e"); local
162 SortedSet<String> set = of("e"); local
172 SortedSet<String> set = of("e"); local
177 SortedSet<String> set = of("e"); local
182 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
214 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b); local
231 SortedSet<String> set = of("e", "a", "e", "f", "b", "b", "d", "a", "c"); local
236 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
241 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
250 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
258 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
273 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
278 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
285 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
291 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
298 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
308 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
314 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
320 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
332 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
343 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
361 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
367 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
373 SortedSet<String> set = local
379 SortedSet<String> set = local
385 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
392 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
399 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
406 SortedSet<String> set = copyOf(asList("e", "a", "f", "b", "d", "c")); local
411 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
416 SortedSet<String> set = local
422 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
427 SortedSet<String> set = local
433 SortedSet<String> set = copyOf(Sets.<String>newTreeSet()); local
438 SortedSet<String> set = local
445 SortedSet<String> set = local
453 SortedSet<String> set = local
460 SortedSet<String> set = local
467 SortedSet<String> set = local
475 SortedSet<String> set = local
484 SortedSet<String> set = copyOf(input); local
491 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
498 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
505 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
511 SortedSet<String> set = of("a", "b", "c"); local
521 SortedSet<String> set = of("in", "the", "a"); local
534 SortedSet<String> set = of("a", "b", "c"); local
540 SortedSet<String> set = of("in", "the", "a"); local
546 SortedSet<String> set = of("a", "b", "f"); local
559 SortedSet<String> set = of("a", "b", "f"); local
571 SortedSet<String> set = of("a", "b", "f"); local
579 SortedSet<String> set = new ImmutableSortedSet.Builder<String>(comparator) local
592 SortedSet<String> set = ImmutableSortedSet.<String>reverseOrder() local
607 SortedSet<Integer> set = new ImmutableSortedSet.Builder<Integer>(TO_STRING) local
613 SortedSet<Number> set = new ImmutableSortedSet.Builder<Number>(TO_STRING) local
639 ImmutableSortedSet<LegacyComparable> set local
645 ImmutableSortedSet<LegacyComparable> set = ImmutableSortedSet.copyOf( local
660 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
674 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
688 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u"); local
695 ImmutableSet<String> set local
703 ImmutableSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
734 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
744 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
754 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
764 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
774 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
786 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
798 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
810 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 33 import java.util.Set;
134 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
135 ASSERT.that(set.headSet(1)).isEmpty();
136 ASSERT.that(set.headSet(2)).has().item(1);
137 ASSERT.that(set.headSet(3)).has().exactly(1, 2).inOrder();
138 ASSERT.that(set.headSet(4)).has().exactly(1, 2, 3).inOrder();
139 ASSERT.that(set.headSet(Integer.MAX_VALUE)).has().exactly(1, 2, 3).inOrder();
140 ASSERT.that(set.headSet(1, true)).has().item(1);
141 ASSERT.that(set.headSet(2, true)).has().exactly(1, 2).inOrder();
142 ASSERT.that(set.headSet(3, true)).has().exactly(1, 2, 3).inOrder()
152 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
168 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
185 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
215 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
231 ImmutableSortedSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
290 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
300 ContiguousSet<Integer> set = ContiguousSet.create(Range.closed(1, 3), integers()); local
    [all...]
MultisetsTest.java 44 TreeMultiset<DerivedComparable> set = TreeMultiset.create(); local
45 assertTrue(set.isEmpty());
46 set.add(new DerivedComparable("foo"), 2);
47 set.add(new DerivedComparable("bar"), 3);
48 ASSERT.that(set).has().exactly(
54 TreeMultiset<LegacyComparable> set = TreeMultiset.create(); local
55 assertTrue(set.isEmpty());
56 set.add(new LegacyComparable("foo"), 2);
57 set.add(new LegacyComparable("bar"), 3);
58 ASSERT.that(set).has().exactly(new LegacyComparable("bar")
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
TestCase.java 36 protected void set(int field, int value) { method in class:TestCase
96 set(Calendar.ERA, era); method
97 set(Calendar.YEAR, year); method
98 set(Calendar.MONTH, month - 1); method
99 set(Calendar.DATE, day); method
100 set(Calendar.DAY_OF_WEEK, dayOfWeek); method
101 set(Calendar.HOUR, hour); method
102 set(Calendar.MINUTE, min); method
103 set(Calendar.SECOND, sec); method
130 greg.set(gregYear, gregMonth-1, gregDay)
133 set(Calendar.ERA, era); method
134 set(Calendar.YEAR, year); method
135 set(Calendar.MONTH, month - 1); method
136 set(Calendar.DATE, day); method
137 set(Calendar.DAY_OF_WEEK, dayOfWeek); method
138 set(Calendar.HOUR, hour); method
139 set(Calendar.MINUTE, min); method
140 set(Calendar.SECOND, sec); method
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
AnyScriptTest.java 148 private void assertContainsAll(String message, UnicodeSet set, String string) {
149 handleAssert(set.containsAll(string), message, set, string, "contains all of", false); local
152 private void assertContainsNone(String message, UnicodeSet set, String string) {
153 handleAssert(set.containsNone(string), message, set, string, "contains none of", false); local
157 private String getList(UnicodeSet set) {
159 for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.next();) {
  /external/vogar/src/vogar/target/
TestEnvironment.java 78 // so we set it again. No-op on earlier releases.
99 // so we set it again. No-op on earlier releases.
210 verifyMapField.set(null, new LyingMap());
214 restrictedField.set(null, Boolean.FALSE);
235 dateFormatIs24HourField.set(null, value);
237 Error e2 = new AssertionError("Unable to set java.text.DateFormat.is24Hour");
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 92 public void set(Object o) { method in class:OldListIteratorTest.Mock_ListIterator
175 l.set(new Integer(1));
183 l.set((Integer)objArray[objArray.length - i - 1]);
188 l.set(new Integer(1));
197 ml.set("Wrong element");
204 ml.set(new Double("3.14"));
211 ml.set("");
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 278 final AnimatorSet set = new AnimatorSet(); local
279 set.playTogether(animators);
280 if (listener != null) set.addListener(listener);
281 set.addListener(this);
282 mLastAnimator = set;
283 set.start();
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
DateUtils.java 109 calendar.set(Calendar.YEAR, 0);
117 calendar.set(Calendar.YEAR, year);
118 calendar.set(Calendar.MONTH, month);
119 calendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
124 // use the Calendar.YEAR field to track whether or not the year is set instead of
132 * longForm set to {@code true} by default.
237 // today against the target date, both dates are set to exactly 0000H.
238 today.set(Calendar.HOUR_OF_DAY, 0);
239 today.set(Calendar.MINUTE, 0);
240 today.set(Calendar.SECOND, 0)
    [all...]
  /frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
UiTest.java 95 testData.set(dataItem, 0, true);
204 mPvStarAlloc.set(i, 0, true);
266 mTextureAllocs.set(texElem, i, false);
275 mSampleTextAllocs.set(textElem, i, false);
284 mSampleListViewAllocs.set(textElem, i, false);
  /external/replicaisland/src/com/replica/replicaisland/
CollisionSystem.java 73 mTemporarySegments.set(x, null);
80 mPendingTemporarySegments.set(x, null);
100 * @param movementDirection If set, only segments with normals that oppose this direction will
105 * @param excludeObject If set, dynamic surfaces from this object will be ignored.
134 hitPoint.set(tempHitPoint);
135 hitNormal.set(tempHitNormal);
139 hitPoint.set(tempHitPoint);
140 hitNormal.set(tempHitNormal);
204 worldTileOffset.set(xOffset, yOffset);
239 newSegment.set(startPoint, endPoint, normal)
686 public void set(Vector2 start, Vector2 end, Vector2 norm) { method in class:CollisionSystem.LineSegment
    [all...]

Completed in 195 milliseconds

<<11121314151617181920>>