Searched defs:set (Results 126 - 150 of 882) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/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
/external/dexmaker/src/dx/java/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));
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttributeSet.java37 public abstract AttributeSet set (Attribute attr, String value); method in class:AttributeSet
38 public abstract AttributeSet set (Attribute attr, int value); method in class:AttributeSet
88 public AttributeSet set (final Attribute attr, final String value) // null removes? method in class:AttributeSet.AttributeSetImpl
95 public AttributeSet set (final Attribute attr, final int value) method in class:AttributeSet.AttributeSetImpl
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java85 Attribute_info set (int offset, Attribute_info attribute); method in interface:IAttributeCollection
H A DIFieldCollection.java91 Field_info set (int offset, Field_info field); method in interface:IFieldCollection
H A DIMethodCollection.java88 Method_info set (int offset, Method_info method); method in interface:IMethodCollection
H A DInterfaceCollection.java89 public int set (final int offset, final int interface_index) method in class:InterfaceCollection
91 return m_interfaces.set (offset, interface_index);
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DDeclaredExceptionTable.java87 public int set (final int offset, final int exception_index) method in class:DeclaredExceptionTable
89 return m_exceptions.set (offset, exception_index);
H A DExceptionHandlerTable.java93 public Exception_info set (final int offset, final Exception_info exception) method in class:ExceptionHandlerTable
95 return (Exception_info) m_exceptions.set (offset, exception);
/external/emma/core/java12/com/vladium/util/
H A DIntVector.java112 public int set (final int index, final int value) method in class:IntVector
/external/guava/guava/src/com/google/common/collect/
H A DCount.java54 public void set(int newValue) { method in class:Count
/external/icu4c/common/unicode/
H A Dusetiter.h37 * UnicodeSetIterator it(set);
42 * <p>Each item in the set is accessed as a string. Set elements
49 * UnicodeSetIterator it(set);
102 * Create an iterator over the given set. The iterator is valid
103 * only so long as <tt>set</tt> is valid.
104 * @param set set to iterate over
107 UnicodeSetIterator(const UnicodeSet& set);
112 * constructor allowing the target to be set later.
169 * Advances the iteration position to the next element in the set,
252 const UnicodeSet* set; member in class:UnicodeSetIterator
[all...]
/external/icu4c/test/perf/unisetperf/draft/
H A Dtrieset.cpp16 * Modifies the trie index to make the BMP linear, and uses the original set
33 TrieSet(const UnicodeSet &set, UErrorCode &errorCode) argument
34 : trieData(NULL), latin1(NULL), restSet(set.clone()) {
46 UnicodeSetIterator iter(set);
/external/icu4c/test/perf/usetperf/
H A Dbitset.cpp13 // TODO: have a separate capacity, so the len can just be set to
37 void BitSet::set(int32_t bitIndex) { function in class:BitSet
/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java32 public void set(double v) { value = v; } method in class:DoubleConst
H A DIntConst.java32 public void set(long v) { value = v; } method in class:IntConst
/external/javassist/src/main/javassist/util/proxy/
H A DSecurityActions.java113 static void set(final Field fld, final Object target, final Object value) method in class:SecurityActions
117 fld.set(target, value);
122 fld.set(target, value);
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DVertexCache.java88 public void set(int index, int value) { method in class:VertexCache
96 inVcache.set(i, entries[i]);
/external/llvm/include/llvm/MC/
H A DMachineLocation.h56 void set(unsigned R) { function in class:llvm::MachineLocation
62 void set(unsigned R, int O) { function in class:llvm::MachineLocation
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java73 public void set(Object header) { method in class:HeaderIterator
/external/proguard/src/proguard/
H A DGPL.java59 * Returns a set of package names from the given stack trace.
100 * Returns a comma-separated list of package names from the set, excluding
101 * any subpackages of packages in the set.
133 * Returns whether the given set contains a prefix of the given name.
135 private static boolean containsPrefix(Set set, String name) argument
139 while (!set.contains(name.substring(0, index)))
/external/proguard/src/proguard/ant/
H A DMemberSpecificationElement.java60 // Get the referenced file set, or else this one.
170 private int requiredAccessFlags(boolean set, argument
183 if (token.startsWith("!") ^ set)
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAccount.java21 set(name, type);
25 set(parcel.readString(), parcel.readString());
53 private void set(String name, String type) throws Exception { method in class:ShadowAccount
58 nameF.set(realObject, name);
62 typeF.set(realObject, type);
H A DShadowAlarmManager.java24 public void set(int type, long triggerAtTime, PendingIntent operation) { method in class:ShadowAlarmManager
H A DShadowPoint.java28 public void set(int x, int y) { method in class:ShadowPoint

Completed in 547 milliseconds

1234567891011>>