Searched defs:set (Results 1 - 25 of 88) sorted by relevance

1234

/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_SetTest.java27 Set<Integer> set; // must contain only the Integers 0 to 99 field in class:Support_SetTest
35 set = s;
41 assertTrue("Set Test - Adding a duplicate element changed the set",
42 !set.add(new Integer(50)));
43 assertTrue("Set Test - Removing an element did not change the set", set
47 !set.contains(new Integer(50)));
48 set.add(new Integer(50));
49 new Support_CollectionTest("", set).runTest();
H A DSupport_BitSet.java33 * @see #set
47 * @see #set
65 * @see #set
84 * @return A boolean value indicating whether the bit at pos has been set.
89 * @see #set
127 public void set(int pos) { method in class:Support_BitSet
145 * @see #set
155 * @return A comma delimited list of the indices of all bits that are set.
184 * Returns the number of bits up to and including the highest bit set.
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x501/
H A DAttributes.java54 public static ASN1Sequence getASN1(InformationObjectSet set) { argument
56 ASN1OpenType any = new ASN1OpenType(id, set);
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlockList.java39 * index for an element which was never set; if you do that, this
72 public void set(int n, ByteBlock bb) { method in class:ByteBlockList
73 super.set(n, bb);
H A DLineNumberList.java49 result.set(i, list1.get(i));
53 result.set(sz1 + i, list2.get(i));
84 public void set(int n, Item item) { method in class:LineNumberList
99 public void set(int n, int startPc, int lineNumber) { method in class:LineNumberList
H A DLocalsArray.java86 public abstract void set(int idx, TypeBearer type); method in class:LocalsArray
92 * {@code set(spec.getReg(), spec)}.
96 public abstract void set(RegisterSpec spec); method in class:LocalsArray
173 * Gets the locals set appropriate for the current execution context.
/dalvik/dx/src/com/android/dx/cf/iface/
H A DStdAttributeList.java101 public void set(int n, Attribute attribute) { method in class:StdAttributeList
H A DStdFieldList.java46 public void set(int n, Field field) { method in class:StdFieldList
H A DStdMethodList.java46 public void set(int n, Method method) { method in class:StdMethodList
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotationsList.java52 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
/dalvik/dx/src/com/android/dx/rop/cst/
H A DStdConstantPool.java96 public void set(int n, Constant cst) { method in class:StdConstantPool
/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractSequentialList.java82 public E set(int location, E object) { method in class:AbstractSequentialList
88 it.set(object);
H A DListIterator.java119 * the object to set.
131 void set(E object); method in interface:ListIterator
/dalvik/vm/native/
H A Ddalvik_system_VMRuntime.c57 * native long nativeMinimumHeapSize(long size, boolean set)
59 * If set is true, sets the new minimum heap size to size; always
68 bool set = (args[3] != 0); local
79 size = dvmMinimumHeapSize(size, set);
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DInnerClassList.java58 public void set(int n, CstType innerClass, CstType outerClass, method in class:InnerClassList
/dalvik/dx/src/com/android/dx/cf/direct/
H A DFieldListParser.java78 protected Member set(int n, int accessFlags, CstNat nat, method in class:FieldListParser
83 fields.set(n, field);
H A DMethodListParser.java78 protected Member set(int n, int accessFlags, CstNat nat, method in class:MethodListParser
83 methods.set(n, meth);
H A DMemberListParser.java166 protected abstract Member set(int n, int accessFlags, CstNat nat, method in class:MemberListParser
217 Member member = set(i, accessFlags, nat, attributes);
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsnList.java37 * this with the index for an element which was never set; if you
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) { method in class:InsnList
/dalvik/dx/src/com/android/dx/ssa/back/
H A DInterferenceGraph.java87 * Merges the interference set for a register into a given bit set
90 * @param set {@code non-null;} interference set; will be merged
91 * with set for given register
93 public void mergeInterferenceSet(int reg, IntSet set) { argument
95 set.merge(interference.get(reg));
/dalvik/dx/src/com/android/dx/util/
H A DLabeledList.java83 labelToIndex.set(oldLabel, -1);
98 labelToIndex.set(label, index);
137 labelToIndex.set(li.getLabel(), i);
148 protected void set(int n, LabeledItem item) { method in class:LabeledList
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/atomic/
H A DAtomicBoolean.java101 public final void set(boolean newValue) { method in class:AtomicBoolean
H A DAtomicReference.java64 public final void set(V newValue) { method in class:AtomicReference
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/
H A DThreadLocalCache.java67 public void set(T value) { method in class:ThreadLocalCache
68 getThreadLocal().set(value);
/dalvik/dx/src/com/android/dx/dex/code/
H A DCatchHandlerList.java42 * this with the index for an element which was never set; if you
121 public void set(int n, CstType exceptionType, int handler) { method in class:CatchHandlerList
129 * @param entry {@code non-null;} the entry to set at {@code n}
131 public void set(int n, Entry entry) { method in class:CatchHandlerList

Completed in 617 milliseconds

1234