HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 451 - 475 of 2720) sorted by null

<<11121314151617181920>>

  /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)
  /system/extras/tests/bionic/libc/common/
test_cpu_set.c 67 test_1(cpu_set_t* set)
76 CPU_ZERO(set);
77 TEST_INT_EQ(CPU_COUNT(set),0);
78 T(CPU_EQUAL(set, other));
79 T(CPU_EQUAL(other, set));
82 F(CPU_ISSET(nn, set));
87 CPU_SET(nn, set);
88 TEST_INT_EQ(CPU_COUNT(set),1);
90 T(CPU_ISSET(mm, set) == (mm == nn));
92 CPU_CLR(nn, set);
203 cpu_set_t* set = CPU_ALLOC(count); local
    [all...]
  /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 11 private Vector set = new Vector(); field in class:ASN1Set
39 throw new IllegalArgumentException("failed to construct set from byte[]: " + e.getMessage());
56 * Return an ASN1 set from a tagged object. There is a special
60 * set - so we need to add it back (this will happen if the tagged
89 // surrounding set.
111 // into a set.
142 set.addElement(obj);
154 set.addElement(v.get(i));
172 set.addElement(array[i]);
183 return set.elements()
    [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/src/com/google/common/collect/
ImmutableSetMultimap.java 275 * Returns a newly-created immutable set multimap.
283 * Returns an immutable set multimap containing the same mappings as
325 ImmutableSet<V> set = (valueComparator == null) local
328 if (!set.isEmpty()) {
329 builder.put(key, set);
330 size += set.size();
351 * Returns an immutable set of the values for the given key. If no mappings
352 * in the multimap have the provided key, an empty immutable set is returned.
358 ImmutableSet<V> set = (ImmutableSet<V>) map.get(key); local
359 if (set != null)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 32 import java.util.Set;
105 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
106 ASSERT.that(set.headSet(1)).isEmpty();
107 ASSERT.that(set.headSet(2)).hasContentsInOrder(1);
108 ASSERT.that(set.headSet(3)).hasContentsInOrder(1, 2);
109 ASSERT.that(set.headSet(4)).hasContentsInOrder(1, 2, 3);
110 ASSERT.that(set.headSet(Integer.MAX_VALUE)).hasContentsInOrder(1, 2, 3);
111 ASSERT.that(set.headSet(1, true)).hasContentsInOrder(1);
112 ASSERT.that(set.headSet(2, true)).hasContentsInOrder(1, 2);
113 ASSERT.that(set.headSet(3, true)).hasContentsInOrder(1, 2, 3)
119 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
127 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
139 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
147 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
164 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
172 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
180 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
200 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
216 ImmutableSortedSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
265 ContiguousSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
274 ContiguousSet<Integer> set = Ranges.closed(1, 3).asSet(integers()); local
    [all...]
  /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 285 final AnimatorSet set = new AnimatorSet(); local
286 set.playTogether(animators);
287 if (listener != null) set.addListener(listener);
288 set.addListener(this);
289 mLastAnimator = set;
290 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...]
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 27 * Representation of a set of local variable arrays, with Java semantics.
64 * Constructs an instance with the specified primary and secondaries set.
67 * @param secondaries {@code non-null;} secondaries set, indexed by subroutine
124 ex.addContext("(locals array set; primary)");
132 ex.addContext("(locals array set: primary for caller "
144 sb.append("(locals array set; primary)\n");
154 sb.append("(locals array set: primary for caller "
194 public void set(int idx, TypeBearer type) { method in class:LocalsArraySet
197 primary.set(idx, type);
201 la.set(idx, type)
208 public void set(RegisterSpec spec) { method in class:LocalsArraySet
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrustDrawable.java 238 AnimatorSet set = new AnimatorSet(); local
239 set.playTogether(alphaAnimator, sizeAnimator);
241 set.addListener(new StateUpdateAnimatorListener());
243 return set;
  /frameworks/multidex/library/src/android/support/multidex/
MultiDex.java 40 import java.util.Set;
74 private static final Set<String> installedApk = new HashSet<String>();
337 jlrField.set(instance, combined);
409 suppressedExceptionsField.set(loader, dexElementsSuppressedExceptions);
499 pathField.set(loader, path.toString());
  /art/runtime/gc/accounting/
space_bitmap_test.cc 67 // Set all the odd bits in the first BitsPerWord * 3 to one.
72 space_bitmap->Set(obj);
128 bool set = r.next() % 2 == 1; variable
130 if (set) {
131 space_bitmap->Set(reinterpret_cast<mirror::Object*>(heap_begin + offset));
  /bionic/tests/
signal_test.cpp 55 sigset_t set; local
57 ASSERT_EQ(0, fn(&set));
69 sigset_t set; local
70 sigemptyset(&set);
74 ASSERT_EQ(-1, fn(&set, 0));
79 ASSERT_EQ(-1, fn(&set, SIGNAL_MAX() + 1));
84 ASSERT_EQ(0, fn(&set, SIGNAL_MIN()));
86 ASSERT_EQ(0, fn(&set, SIGNAL_MAX()));
193 // Restore the original set.
201 // See what's currently set for SIGALRM
    [all...]
  /cts/tests/tests/content/src/android/content/res/cts/
Resources_ThemeTest.java 67 AttributeSet set = Xml.asAttributeSet(parser); local
69 testTypedArray =mResTheme.obtainStyledAttributes(set, attrs, 0, 0);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchTable.java 43 * this with the index for an element which was never set; if you
57 * @param entry {@code non-null;} the entry to set at {@code n}
59 public void set(int n, Entry entry) { method in class:CatchTable
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstArray.java 140 * this with the index for an element which was never set; if you
154 * @param a {@code null-ok;} the element to set at {@code n}
156 public void set(int n, Constant a) { method in class:CstArray.List

Completed in 1671 milliseconds

<<11121314151617181920>>