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

<<21222324252627282930>>

  /art/build/
Android.common_build.mk 93 define set-target-local-clang-vars
142 art_gcc_cflags := -Wunused-but-set-parameter
185 # Base set of cflags used by all things ART.
311 define set-target-local-cflags-vars
  /cts/tests/core/runner/src/com/android/cts/runner/
CtsTestRunListener.java 178 f.set(test, null);
247 sDateFormatIs24HourField.set(null, value);
249 throw new AssertionError("Unable to set java.text.DateFormat.is24Hour", e);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
BurstCaptureTest.java 144 previewBuilder.set(CaptureRequest.CONTROL_AE_TARGET_FPS_RANGE,
146 burstBuilder.set(CaptureRequest.CONTROL_AE_TARGET_FPS_RANGE,
148 burstBuilder.set(CaptureRequest.CONTROL_AE_LOCK, true);
149 burstBuilder.set(CaptureRequest.CONTROL_AWB_LOCK, true);
195 previewBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
198 previewBuilder.set(CaptureRequest.CONTROL_AF_TRIGGER,
223 previewBuilder.set(CaptureRequest.CONTROL_AE_LOCK, true);
224 previewBuilder.set(CaptureRequest.CONTROL_AWB_LOCK, true);
  /dalvik/dexgen/src/com/android/dexgen/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/dexgen/src/com/android/dexgen/rop/type/
Prototype.java 100 parameterTypes.set(i, params[i]);
349 list.set(i, one);
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 36 * {@code non-null;} work set; bits indicate offsets in need of
42 * {@code non-null;} live set; bits indicate potentially-live
49 * {@code non-null;} block start set; bits indicate the starts of
318 result.set(i, bbs[i]);
336 Bits.set(workSet, 0);
337 Bits.set(blockSet, 0);
340 * And then process the work set, add new work based on
359 Bits.set(blockSet, start);
360 Bits.set(blockSet, end);
368 * Sets a bit in the work set, but only if the instruction in questio
    [all...]
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/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/droiddriver/src/io/appium/droiddriver/scroll/
AccessibilityEventScrollStepStrategy.java 62 public void set(Finder containerFinder, PhysicalDirection direction) { method in class:AccessibilityEventScrollStepStrategy.EndData
68 set(null, null); method
120 endData.set(containerFinder, direction);
  /external/guava/guava/src/com/google/common/collect/
ImmutableListMultimap.java 383 FieldSettersHolder.MAP_FIELD_SETTER.set(this, tmpMap);
384 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);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 39 import java.util.Set;
47 * Static utility methods pertaining to {@link Set} instances. Also see this
80 * Returns an immutable set instance containing the given enum elements.
81 * Internally, the returned set will be backed by an {@link EnumSet}.
83 * <p>The iteration order of the returned set follows the enum's iteration
86 * @param anElement one of the elements the set should contain
87 * @param otherElements the rest of the elements the set should contain
88 * @return an immutable set containing those elements, minus duplicates
98 * Returns an immutable set instance containing the given enum elements.
99 * Internally, the returned set will be backed by an {@link EnumSet}
141 EnumSet<E> set = EnumSet.noneOf(elementType); local
178 HashSet<E> set = newHashSetWithExpectedSize(elements.length); local
233 HashSet<E> set = newHashSet(); local
269 Set<E> set = newConcurrentHashSet(); local
323 LinkedHashSet<E> set = newLinkedHashSet(); local
360 TreeSet<E> set = newTreeSet(); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedSetTest.java 50 import java.util.Set;
215 SortedSet<String> set = of(); local
216 assertSame(Ordering.natural(), set.comparator());
220 SortedSet<String> set = of(); local
221 assertSame(set, set.headSet("c"));
225 SortedSet<String> set = of(); local
226 assertSame(set, set.tailSet("f"));
230 SortedSet<String> set = of() local
235 SortedSet<String> set = of(); local
244 SortedSet<String> set = of(); local
254 SortedSet<String> set = of(); local
260 SortedSet<String> set = of("e"); local
265 SortedSet<String> set = of("e"); local
273 SortedSet<String> set = of("e"); local
281 SortedSet<String> set = of("e"); local
291 SortedSet<String> set = of("e"); local
296 SortedSet<String> set = of("e"); local
302 SortedSet<String> set = of("e"); local
308 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
340 ImmutableSortedSet<Interface> set = ImmutableSortedSet.of(a, b); local
357 SortedSet<String> set = of("e", "a", "e", "f", "b", "b", "d", "a", "c"); local
362 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
367 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
376 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
384 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
400 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
405 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
410 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
416 SortedSet<String> set = of("e", "f", "b", "d", "c"); local
425 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
431 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
438 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
448 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
454 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
460 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
472 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
483 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
501 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
507 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
514 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).build(); local
523 SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
531 SortedSet<String> set = local
537 SortedSet<String> set = local
543 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
550 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
557 SortedSet<String> set = of("e", "a", "f", "b", "d", "c"); local
564 SortedSet<String> set = copyOf(asList("e", "a", "f", "b", "d", "c")); local
569 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
574 SortedSet<String> set = local
580 SortedSet<String> set = copyOf(asIterator("e", "a", "f", "b", "d", "c")); local
585 SortedSet<String> set = local
591 SortedSet<String> set = copyOf(Sets.<String>newTreeSet()); local
596 SortedSet<String> set = local
603 SortedSet<String> set = local
611 SortedSet<String> set = local
618 SortedSet<String> set = local
625 SortedSet<String> set = local
633 SortedSet<String> set = local
642 SortedSet<String> set = copyOf(input); local
649 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
656 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
663 SortedSet<String> set = ImmutableSortedSet.copyOfSorted(input); local
669 SortedSet<String> set = of("a", "b", "c"); local
679 SortedSet<String> set = of("in", "the", "a"); local
692 SortedSet<String> set = of("a", "b", "c"); local
698 SortedSet<String> set = of("in", "the", "a"); local
704 SortedSet<String> set = of("a", "b", "f"); local
717 SortedSet<String> set = of("a", "b", "f"); local
729 SortedSet<String> set = of("a", "b", "f"); local
737 SortedSet<String> set = new ImmutableSortedSet.Builder<String>(comparator) local
753 SortedSet<String> set = new ImmutableSortedSet.Builder<String>(comparator) local
761 SortedSet<String> set = ImmutableSortedSet.<String>reverseOrder() local
776 SortedSet<Integer> set = new ImmutableSortedSet.Builder<Integer>(TO_STRING) local
782 SortedSet<Number> set = new ImmutableSortedSet.Builder<Number>(TO_STRING) local
808 ImmutableSortedSet<LegacyComparable> set local
814 ImmutableSortedSet<LegacyComparable> set = ImmutableSortedSet.copyOf( local
829 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
843 ImmutableSortedSet<LegacyComparable> set = builder.build(); local
857 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u"); local
865 ImmutableSet<String> set = ImmutableSortedSet.of("a", "e", "i", "o", "u"); local
873 ImmutableSet<String> set local
882 ImmutableSet<String> set local
891 ImmutableSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH).add( local
922 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
932 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
942 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
952 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
962 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
974 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
986 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
998 ImmutableSortedSet<String> set = ImmutableSortedSet.copyOf(strings); local
    [all...]
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/jdkadapter/
CalendarICU.java 222 public void set(int field, int value) { method in class:CalendarICU
224 fIcuCal.set(field, value);
227 // Note: These set methods call set(int field, int value) for each field.
229 // set(int field, int value), so the superclass implementations
231 //public void set(int year, int month, int date)
232 //public void set(int year, int month, int date, int hourOfDay, int minute)
233 //public void set(int year, int month, int date, int hourOfDay, int minute, int second)
289 // Mark "set" for all fields, so we can detect the invocation of
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
TestCanonicalIterator.java 11 import java.util.Set;
50 //Set itSet = new TreeSet();
51 //Set slowItSet = new TreeSet();
133 Set results = new TreeSet();
138 SortedSet set = new TreeSet(); local
143 set.clear();
151 set.add(result); // sort them
155 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]);
185 // set up for readable display
  /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/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 25 import java.util.Set;
61 * Test the set() method, passing in a null key
65 invocationRecord.set(null, STRING);
74 * Test the set() method, passing in a null value
77 invocationRecord.set(KEY1, null);
85 invocationRecord.set(KEY1, STRING);
108 invocationRecord.set(KEY1, STRING);
130 invocationRecord.set(KEY1, INT);
145 invocationRecord.set(KEY1, STRING);
153 Set set = new HashSet(); local
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 20 import java.util.Set;
63 * Test the set() method, passing in a null key
67 invocationRecord.set(null, STRING);
76 * Test the set() method, passing in a null value
79 invocationRecord.set(KEY1, null);
87 invocationRecord.set(KEY1, STRING);
110 invocationRecord.set(KEY1, STRING);
132 invocationRecord.set(KEY1, INT);
147 invocationRecord.set(KEY1, STRING);
155 Set set = new HashSet(); local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
InsnList.java 46 * {@link #set set}, {@link #insert(AbstractInsnNode, AbstractInsnNode)},
221 public void set(final AbstractInsnNode location, final AbstractInsnNode insn) { method in class:InsnList
634 public void set(Object o) { method in class:InsnList.InsnListIterator
635 InsnList.this.set(next.prev, (AbstractInsnNode) o);
  /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() {

Completed in 559 milliseconds

<<21222324252627282930>>