HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 401 - 425 of 2219) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramFragmentTest.java 56 c1.set(new ScriptField_ConstMatrix.Item(), 0, true);
62 c2.set(new ScriptField_ConstComplex.Item(), 0, true);
68 c3.set(new ScriptField_ConstExtra.Item(), 0, true);
ProgramVertexTest.java 67 c1.set(new ScriptField_ConstMatrix.Item(), 0, true);
73 c2.set(new ScriptField_ConstComplex.Item(), 0, true);
79 c3.set(new ScriptField_ConstExtra.Item(), 0, true);
  /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 108 calendar.set(Calendar.YEAR, 0);
116 calendar.set(Calendar.YEAR, year);
117 calendar.set(Calendar.MONTH, month);
118 calendar.set(Calendar.DAY_OF_MONTH, dayOfMonth);
123 // use the Calendar.YEAR field to track whether or not the year is set instead of
131 * longForm set to {@code true} by default.
236 // today against the target date, both dates are set to exactly 0000H.
237 today.set(Calendar.HOUR_OF_DAY, 0);
238 today.set(Calendar.MINUTE, 0);
239 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/apache-harmony/auth/src/test/java/common/javax/security/auth/
SubjectTest.java 41 import java.util.Set;
144 assertEquals("Principals set", 0, subject.getPrincipals().size());
146 assertEquals("Private credential set", 0, subject
149 assertEquals("Public credential set", 0, subject.getPublicCredentials()
154 * Testing Subject(boolean,Set,Set,Set) constructor
161 assertEquals("Principals set", h1, subject.getPrincipals());
163 assertEquals("Private credential set", h3, subject
166 assertEquals("Public credential set", h2, subjec
1452 Set<Object> set = subject.getPrivateCredentials(); local
1557 Set<Object> set = subject.getPrivateCredentials(); local
1638 Set<Object> set = subject.getPrivateCredentials(); local
1890 TestSuite set = new TestSuite("Set"); local
2021 TestSuite set = new TestSuite("Set"); local
2222 TestSuite set = new TestSuite("Set"); local
2334 TestSuite set = new TestSuite("Set"); local
2391 TestSuite set = new TestSuite("Set"); local
2448 TestSuite set = new TestSuite("Set"); local
    [all...]
  /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...]
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
LODGeomap.java 138 store.set((((float) x) + offsetX) / (float) (totalSize - 1), // calculates percentage of texture here
668 normal.set(normalBuffer.get(idx), normalBuffer.get(idx+1), normalBuffer.get(idx+2));
669 tangent.set(normal.cross(new Vector3f(0,0,1)));
670 binormal.set(new Vector3f(1,0,0).cross(normal));
684 v1.set(c, getValue(c, r), r);
685 t1.set(textureBuffer.get(texIdx), textureBuffer.get(texIdx + 1));
689 v3.set(c, getValue(c, r), r + 1);
694 t3.set(u, v);
696 v3.set(c, getValue(c, r + 1), r + 1);
697 t3.set(textureBuffer.get(texIdxNext), textureBuffer.get(texIdxNext + 1));
    [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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Settings.js 205 set: function(value)
234 this.set(currentValue);
238 set: function(value)
251 WebInspector.Setting.prototype.set.call(this, value);
337 this._setting.set(experimentsSetting);
357 this._setting.set(cleanedUpExperimentSetting);
431 versionSetting.set(currentVersion);
454 versionSetting.set([]);
460 fileSystemMappingSetting.set({});
468 WebInspector.settings.showAdvancedHeapSnapshotProperties.set(advancedMode)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
AnimationFactory.java 92 void set(Quaternion rot) { method in class:AnimationFactory.Rotation
93 rotation.set(rot);
96 eulerAngles.set(a[0], a[1], a[2]);
99 void set(float x, float y, float z) { method in class:AnimationFactory.Rotation
102 eulerAngles.set(x, y, z);
218 t.set(translation);
243 r.set(rotation);
274 r.set(x, y, z);
301 dr.set(prevRot.eulerAngles.x + cursor * dXAngle, prevRot.eulerAngles.y + cursor * dYAngle, prevRot.eulerAngles.z + cursor * dZAngle);
325 s.set(scale)
    [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
  /dalvik/dexgen/src/com/android/dexgen/util/
Bits.java 31 * Constructs a bit set to contain bits up to the given index (exclusive).
42 * Gets the maximum index (exclusive) for the given bit set.
44 * @param bits {@code non-null;} bit set in question
45 * @return {@code >= 0;} the maximum index (exclusive) that may be set
54 * @param bits {@code non-null;} bit set to operate on
55 * @param idx {@code >= 0, < getMax(set);} which bit
67 * @param bits {@code non-null;} bit set to operate on
68 * @param idx {@code >= 0, < getMax(set);} which bit
71 public static void set(int[] bits, int idx, boolean value) { method in class:Bits
85 * @param bits {@code non-null;} bit set to operate o
88 public static void set(int[] bits, int idx) { method in class:Bits
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchTable.java 42 * this with the index for an element which was never set; if you
56 * @param entry {@code non-null;} the entry to set at {@code n}
58 public void set(int n, Entry entry) { method in class:CatchTable

Completed in 769 milliseconds

<<11121314151617181920>>