HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 176 - 200 of 4356) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
OrderedHashSet.java 36 * You can alter the ith element with set(i,value) too :) Unique list.
37 * I need the replace/set-element-i functionality so I'm subclassing
41 /** Track the elements as they are added to the set */
51 public T set(int i, T value) { method in class:OrderedHashSet
53 elements.set(i,value); // update list
54 super.remove(oldElement); // now update the set: remove/add
65 if ( result ) { // only track if new element not in set
102 ErrorManager.internalError("OrderedHashSet: elements and set size differs; "+
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
AnnotationsList.java 52 result.set(i, Annotations.combine(a1, a2));
70 * this with the index for an element which was never set; if you
85 * @param a {@code null-ok;} the element to set at {@code n}
87 public void set(int n, Annotations a) { method in class:AnnotationsList
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 58 catchLabels.set(i, catchLabels.get(i).primarySuccessor);
72 result.set(i, instructions.get(i));
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
SafeTreeSetTest.java 37 import java.util.Set;
46 @Override protected Set<String> create(String[] elements) {
57 @Override protected Set<String> create(String[] elements) {
58 NavigableSet<String> set =
60 Collections.addAll(set, elements);
61 return set;
85 SortedSet<String> set = new SafeTreeSet<String>(); local
86 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set);
87 assertEquals(set.comparator(), copy.comparator());
92 SortedSet<String> set = new SafeTreeSet<String>() local
100 SortedSet<String> set = new SafeTreeSet<String>(); local
    [all...]
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetUtils.java 26 import java.util.Set;
45 public static void assertNotInSet(WeakKeySet set, Key<?> key) {
46 // if we're expecting it to not be in the set, loop around and wait for threads to run.
48 if (!set.contains(key)) {
53 assertFalse(set.contains(key));
54 assertNull(set.getSources(Key.get(Integer.class)));
57 public static void assertInSet(WeakKeySet set, Key<?> key, int expectedSources,
59 assertTrue(set.contains(key));
60 assertEquals(expectedSources, set.getSources(key).size());
62 assertTrue("didn't contain source: " + source, set.getSources(key).contains(source))
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/src/com/badlogic/gdx/physics/box2d/joints/
FrictionJoint.java 40 localAnchorA.set(tmp[0], tmp[1]);
52 localAnchorB.set(tmp[0], tmp[1]);
62 /** Set the maximum friction force in N. */
82 /** Set the maximum friction torque in N*m. */
PulleyJoint.java 42 groundAnchorA.set(tmp[0], tmp[1]);
57 groundAnchorB.set(tmp[0], tmp[1]);
RopeJoint.java 43 localAnchorA.set(tmp[0], tmp[1]);
55 localAnchorB.set(tmp[0], tmp[1]);
75 /** Set the maximum length of the rope. */
WeldJoint.java 41 localAnchorA.set(tmp[0], tmp[1]);
53 localAnchorB.set(tmp[0], tmp[1]);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/com/badlogic/gdx/physics/box2d/joints/
DistanceJoint.java 40 localAnchorA.set(localAnchor.x, localAnchor.y);
46 localAnchorB.set(localAnchor.x, localAnchor.y);
50 /** Set/get the natural length. Manipulating the length can lead to non-physical behavior when the frequency is zero. */
55 /** Set/get the natural length. Manipulating the length can lead to non-physical behavior when the frequency is zero. */
60 /** Set/get frequency in Hz. */
65 /** Set/get frequency in Hz. */
70 /** Set/get damping ratio. */
75 /** Set/get damping ratio. */
DistanceJointDef.java 36 this.localAnchorA.set(bodyA.getLocalPoint(anchorA));
37 this.localAnchorB.set(bodyB.getLocalPoint(anchorB));
64 fd.localAnchorA.set(localAnchorA.x, localAnchorA.y);
65 fd.localAnchorB.set(localAnchorB.x, localAnchorB.y);
FrictionJoint.java 39 localAnchorA.set(localAnchor.x, localAnchor.y);
45 localAnchorB.set(localAnchor.x, localAnchor.y);
49 /** Set the maximum friction force in N. */
59 /** Set the maximum friction torque in N*m. */
FrictionJointDef.java 34 localAnchorA.set(bodyA.getLocalPoint(anchor));
35 localAnchorB.set(bodyB.getLocalPoint(anchor));
56 jd.localAnchorA.set(localAnchorA.x, localAnchorA.y);
57 jd.localAnchorB.set(localAnchorB.x, localAnchorB.y);
WeldJoint.java 39 localAnchorA.set(localAnchor.x, localAnchor.y);
45 localAnchorB.set(localAnchor.x, localAnchor.y);
WeldJointDef.java 33 this.localAnchorA.set(body1.getLocalPoint(anchor));
34 this.localAnchorB.set(body2.getLocalPoint(anchor));
61 jd.localAnchorA.set(localAnchorA.x, localAnchorA.y);
62 jd.localAnchorB.set(localAnchorB.x, localAnchorB.y);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
Rot.java 43 set(angle);
59 public Rot set(float angle) { method in class:Rot
65 public Rot set(Rot other) { method in class:Rot
82 xAxis.set(c, s);
86 yAxis.set(-s, c);
  /external/libgdx/gdx/src/com/badlogic/gdx/math/collision/
Segment.java 41 this.a.set(a);
42 this.b.set(b);
53 this.a.set(aX, aY, aZ);
54 this.b.set(bX, bY, bZ);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
RevealActivity.java 93 AnimatorSet set = new AnimatorSet(); local
94 set.playTogether(animator);
95 set.setDuration(DURATION);
96 set.addListener(mListener);
97 set.start();
  /frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
Camera2RequestSettingsSet.java 31 * A set of settings to be used when filing a {@link CaptureRequest}.
83 public <T> boolean set(Key<T> key, T value) { method in class:Camera2RequestSettingsSet
177 * Get this set of settings's revision identifier, which can be compared
196 * those forced to default as described in {@link set} are also forced to
197 * default in {@code this} set. Invoking this method increments {@code this}
250 requestBuilder.set(key, value);
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /art/test/527-checker-array-access-split/src/
Main.java 90 /// CHECK-START-ARM64: void Main.set(int[], int, int) instruction_simplifier_arm64 (before)
98 /// CHECK-START-ARM64: void Main.set(int[], int, int) instruction_simplifier_arm64 (after)
108 public static void set(int array[], int index, int value) { method in class:Main
329 set(array, 1, 456); method
  /bionic/libc/bionic/
tmpfile.cpp 46 sigset_t set; local
47 sigfillset(&set);
48 sigprocmask(SIG_BLOCK, &set, &old_set_);
  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 62 inline void set(const T inputX, const T inputY) { function in class:Vec2
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
StructPadTest.java 40 S.set(new ScriptField_PadMe.Item(), 0, true);
  /dalvik/dx/src/com/android/dx/ssa/
RegisterMapper.java 53 newSources.set(i, map(sources.get(i)));
64 * @param sources old register set
65 * @return new mapped register set, or old if nothing has changed.

Completed in 1537 milliseconds

1 2 3 4 5 6 78 91011>>