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

<<21222324252627282930>>

  /dalvik/dx/src/com/android/dx/cf/code/
LocalVariableList.java 53 result.set(i, list1.get(i));
57 result.set(sz1 + i, list2.get(i));
90 result.set(i, item);
122 public void set(int n, Item item) { method in class:LocalVariableList
145 public void set(int n, int startPc, int length, CstString name, method in class:LocalVariableList
  /dalvik/dx/src/com/android/dx/cf/direct/
AnnotationParser.java 189 outerList.set(i, annotations);
399 list.set(i, parseValue());
  /dalvik/dx/src/com/android/dx/dex/code/
DalvInsnList.java 61 result.set(i, list.get(i));
80 * this with the index for an element which was never set; if you
94 * @param insn {@code non-null;} the instruction to set at {@code n}
96 public void set(int n, DalvInsn insn) { method in class:DalvInsnList
  /dalvik/dx/src/com/android/dx/rop/type/
Prototype.java 104 parameterTypes.set(i, params[i]);
353 list.set(i, one);
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
RepeatedFieldBuilder.java 94 // authoritative. This is the case where a Builder was set on the index.
98 // was set directly for an index.
250 builders.set(index, builder);
287 * @param index the index to set.
288 * @param message the message to set
297 messages.set(index, message);
300 builders.set(index, null);
511 messages.set(i, getMessage(i, true));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
DalvInsnList.java 62 result.set(i, list.get(i));
81 * this with the index for an element which was never set; if you
95 * @param insn {@code non-null;} the instruction to set at {@code n}
97 public void set(int n, DalvInsn insn) { method in class:DalvInsnList
  /external/dexmaker/src/dx/java/com/android/dx/rop/type/
Prototype.java 104 parameterTypes.set(i, params[i]);
353 list.set(i, one);
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 377 FieldSettersHolder.MAP_FIELD_SETTER.set(this, tmpMap);
378 FieldSettersHolder.SIZE_FIELD_SETTER.set(this, tmpSize);
Serialization.java 215 void set(T instance, Object value) { method in class:Serialization.FieldSetter
217 field.set(instance, value);
223 void set(T instance, int value) { method in class:Serialization.FieldSetter
225 field.set(instance, value);
Sets.java 48 import java.util.Set;
55 * Static utility methods pertaining to {@link Set} instances. Also see this
68 * Returns an immutable set instance containing the given enum elements.
69 * Internally, the returned set will be backed by an {@link EnumSet}.
71 * <p>The iteration order of the returned set follows the enum's iteration
74 * @param anElement one of the elements the set should contain
75 * @param otherElements the rest of the elements the set should contain
76 * @return an immutable set containing those elements, minus duplicates
86 * Returns an immutable set instance containing the given enum elements.
87 * Internally, the returned set will be backed by an {@link EnumSet}
109 EnumSet<E> set = EnumSet.of(first); local
138 EnumSet<E> set = EnumSet.noneOf(elementType); local
175 HashSet<E> set = newHashSetWithExpectedSize(elements.length); local
230 HashSet<E> set = newHashSet(); local
286 LinkedHashSet<E> set = newLinkedHashSet(); local
325 TreeSet<E> set = newTreeSet(); local
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 45 import java.util.Set;
52 * Static utility methods pertaining to {@link Set} instances. Also see this
65 * Returns an immutable set instance containing the given enum elements.
66 * Internally, the returned set will be backed by an {@link EnumSet}.
68 * <p>The iteration order of the returned set follows the enum's iteration
71 * @param anElement one of the elements the set should contain
72 * @param otherElements the rest of the elements the set should contain
73 * @return an immutable set containing those elements, minus duplicates
83 * Returns an immutable set instance containing the given enum elements.
84 * Internally, the returned set will be backed by an {@link EnumSet}
106 EnumSet<E> set = EnumSet.of(first); local
135 EnumSet<E> set = EnumSet.noneOf(elementType); local
172 HashSet<E> set = newHashSetWithExpectedSize(elements.length); local
227 HashSet<E> set = newHashSet(); local
283 LinkedHashSet<E> set = newLinkedHashSet(); local
322 TreeSet<E> set = newTreeSet(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractSetMultimapTest.java 27 import java.util.Set;
82 Set<Map.Entry<String, Collection<Integer>>> set local
85 Iterator<Map.Entry<String, Collection<Integer>>> i = set.iterator();
93 assertTrue(Collections.singleton(expected).equals(set));
94 assertTrue(set.equals(Collections.singleton(expected)));
98 assertSame(array, set.toArray(array));
161 Set<Map.Entry<String, Integer>> same = Sets.newHashSet(
172 Set<Map.Entry<String, Integer>> different3 = Sets.newHashSet(
179 Set<Map.Entry<String, Integer>> different4 = Sets.newHashSet
    [all...]
ImmutableSortedSetTest.java 34 import java.util.Set;
114 SortedSet<String> set = of(); local
115 assertSame(Ordering.natural(), set.comparator());
119 SortedSet<String> set = of(); local
120 assertSame(set, set.headSet("c"));
124 SortedSet<String> set = of(); local
125 assertSame(set, set.tailSet("f"));
129 SortedSet<String> set = of() local
134 SortedSet<String> set = of(); local
143 SortedSet<String> set = of(); local
153 SortedSet<String> set = of(); local
159 SortedSet<String> set = of("e"); local
164 SortedSet<String> set = of("e"); local
172 SortedSet<String> set = of("e"); local
180 SortedSet<String> set = of("e"); local
190 SortedSet<String> set = of("e"); local
195 SortedSet<String> set = of("e"); local
201 SortedSet<String> set = of("e"); local
207 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
239 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b); local
256 SortedSet<String> set = of("e", "a", "e", "f", "b", "b", "d", "a", "c"); local
261 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
266 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
275 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
283 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
299 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
304 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
309 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
315 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
324 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
330 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
337 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
347 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
353 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
359 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
371 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
382 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
400 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
406 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
413 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).build(); local
422 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
430 SortedSet<String> set = local
436 SortedSet<String> set = local
442 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
449 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
456 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
463 SortedSet<String> set = copyOf(asList("e", "a", "f", "b", "d", "c")); local
468 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
473 SortedSet<String> set = local
479 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
484 SortedSet<String> set = local
490 SortedSet<String> set = copyOf(Sets.<String>newTreeSet()); local
495 SortedSet<String> set = local
502 SortedSet<String> set = local
510 SortedSet<String> set = local
517 SortedSet<String> set = local
524 SortedSet<String> set = local
532 SortedSet<String> set = local
541 SortedSet<String> set = copyOf(input); local
548 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
555 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
562 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
568 SortedSet<String> set = of("a", "b", "c"); local
578 SortedSet<String> set = of("in", "the", "a"); local
591 SortedSet<String> set = of("a", "b", "c"); local
597 SortedSet<String> set = of("in", "the", "a"); local
603 SortedSet<String> set = of("a", "b", "f"); local
616 SortedSet<String> set = of("a", "b", "f"); local
628 SortedSet<String> set = of("a", "b", "f"); local
636 SortedSet<String> set = new ImmutableSortedSet.Builder<String>(comparator) local
651 SortedSet<String> set = new ImmutableSortedSet.Builder<String>(comparator) local
659 SortedSet<String> set = ImmutableSortedSet.<String>reverseOrder() local
674 SortedSet<Integer> set = new ImmutableSortedSet.Builder<Integer>(TO_STRING) local
680 SortedSet<Number> set = new ImmutableSortedSet.Builder<Number>(TO_STRING) local
706 ImmutableSortedSet<LegacyComparable> set local
712 ImmutableSortedSet<LegacyComparable> set = ImmutableSortedSet.copyOf( local
727 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
741 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
755 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u"); local
763 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u"); local
771 ImmutableSet<String> set local
780 ImmutableSet<String> set local
789 ImmutableSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
820 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
830 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
839 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
849 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
859 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
871 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
883 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
895 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector3f.java 121 this.set(copy);
125 * <code>set</code> sets the x,y,z values of the vector based on passed
136 public Vector3f set(float x, float y, float z) { method in class:Vector3f
144 * <code>set</code> sets the x,y,z values of the vector by copying the
151 public Vector3f set(Vector3f vect) { method in class:Vector3f
349 result.set(resX, resY, resZ);
566 return store.set(x * vec.x, y * vec.y, z * vec.z);
632 * negated and set to a new vector.
1040 * which field index in this vector to set.
1042 * to set to one of x, y or z.
    [all...]
  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 30 import java.util.Set;
100 * Set a namevalue object in this list.
103 public void set(NameValue nv) { method in class:DuplicateNameValueList
108 * Set a namevalue object in this list.
110 public void set(String name, Object value) { method in class:DuplicateNameValueList
193 retval.set((NameValue) ((NameValue) it.next()).clone());
NameValueList.java 39 import java.util.Set;
120 * Set a namevalue object in this list.
123 public void set(NameValue nv) { method in class:NameValueList
128 * Set a namevalue object in this list.
130 public void set(String name, Object value) { method in class:NameValueList
220 retval.set((NameValue) ((NameValue) it.next()).clone());
302 public Set<java.util.Map.Entry<String, NameValue>> entrySet() {
318 public Set<String> keySet() {
  /external/replicaisland/src/com/replica/replicaisland/
OrbitalMagnetComponent.java 68 mCenter.set(centerX, centerY);
71 mDelta.set(targetX, targetY);
77 mRim.set(mDelta);
87 mVelocity.set(gravityVector);
104 mVelocity.set(mDelta);
RenderSystem.java 56 element.set(object, position, priority, cameraRelative);
104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) { method in class:RenderSystem.RenderElement
  /frameworks/base/core/tests/coretests/src/android/util/
InternalSelectionView.java 157 mTempRect.set(rectLeft, rectTop, rectRight, rectTop + rowHeight);
170 mTempRect.set(rectLeft + 2, rectTop + 2,
199 rect.set(mPaddingLeft,
255 // set the row that is closest to the rect
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/
AutoFocusStateMachine.java 205 * <p>Create a new repeating request from repeatingBuilder and set that as the updated
230 repeatingBuilder.set(CaptureRequest.CONTROL_AF_MODE, mCurrentAfMode);
231 requestBuilder.set(CaptureRequest.CONTROL_AF_MODE, mCurrentAfMode);
233 repeatingBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
235 requestBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
245 * <p>Create a new repeating request from repeatingBuilder and set that as the updated
271 repeatingBuilder.set(CaptureRequest.CONTROL_AF_MODE, mCurrentAfMode);
272 requestBuilder.set(CaptureRequest.CONTROL_AF_MODE, mCurrentAfMode);
274 repeatingBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
276 requestBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER
    [all...]
  /frameworks/native/opengl/tests/testViewport/src/com/android/test/
TestView.java 170 public void set(int i, int j, float x, float y, float z) { method in class:TestView.Grid
255 mGrid.set(i,j, x, y, z);
  /frameworks/support/v13/java/android/support/v13/app/
FragmentStatePagerAdapter.java 46 * valid ID set.</p>
122 mFragments.set(position, fragment);
140 mSavedState.set(position, mFragmentManager.saveFragmentInstanceState(fragment));
141 mFragments.set(position, null);
221 mFragments.set(index, f);
  /frameworks/support/v4/java/android/support/v4/app/
FragmentStatePagerAdapter.java 42 * valid ID set.</p>
118 mFragments.set(position, fragment);
136 mSavedState.set(position, mFragmentManager.saveFragmentInstanceState(fragment));
137 mFragments.set(position, null);
217 mFragments.set(index, f);
  /libcore/luni/src/main/java/java/util/
AbstractList.java 140 public void set(E object) { method in class:AbstractList.FullListIterator
143 AbstractList.this.set(lastPosition, object);
231 public void set(E object) { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
232 iterator.set(object);
345 public E set(int location, E object) { method in class:AbstractList.SubAbstractList
348 return fullList.set(location + offset, object);
680 public E set(int location, E object) { method in class:AbstractList
703 * The subList's set(int, Object), get(int), add(int, Object), remove(int),
  /libcore/luni/src/test/java/libcore/icu/
DateIntervalFormatTest.java 40 c.set(Calendar.MONTH, Calendar.JANUARY);
41 c.set(Calendar.DAY_OF_MONTH, 19);
42 c.set(Calendar.HOUR_OF_DAY, 3);
43 c.set(Calendar.MINUTE, 30);
44 c.set(Calendar.SECOND, 15);
47 c.set(Calendar.YEAR, 2009);
50 c.set(Calendar.MINUTE, 0);
51 c.set(Calendar.SECOND, 0);
176 c.set(2042, Calendar.JANUARY, 19, 3, 30);
178 c.set(2046, Calendar.OCTOBER, 4, 3, 30)
    [all...]

Completed in 549 milliseconds

<<21222324252627282930>>