Searched defs:set (Results 76 - 100 of 843) sorted by relevance

1234567891011>>

/external/skia/src/pathops/
H A DSkPathOpsRect.h38 void set(const SkDPoint& pt) { function in struct:SkDRect
/external/smali/util/src/main/java/org/jf/util/
H A DAbstractListIterator.java73 public void set(T t) { method in class:AbstractListIterator
/external/v8/test/mjsunit/
H A Dobject-seal.js104 function set() {}; function
105 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
110 assertEquals(set, desc.set);
126 assertEquals(set, desc.set);
171 // has been set to false on all properties manually and the extensible
172 // flag has also been set to false manually.
203 // Allow these functions to set u
[all...]
H A Dobject-freeze.js95 obj.x = { get: function() {return 43}, set: function() {} };
101 function set() {}; function
102 Object.defineProperty(obj2, 'x', { get: get, set: set, configurable: true });
107 assertEquals(set, desc.set);
119 assertEquals(set, desc.set);
160 // Test that isFrozen return the correct value even if configurable has been set
161 // to false on all properties manually and the extensible flag has also been set
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs156 public static void set( this IList list, int index, object value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
162 public static void set<T>( this IList<T> list, int index, T value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
168 public static void set<T>( this List<T> list, int index, T value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DOrderedHashSet.java36 * 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/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
H A Dp1-cxx11.cpp4 struct set{}; struct
7 void set(T value) {} function in struct:Value
11 v.set<double>(3.2);
19 v.set<double>(3.2);
22 int set; // Non-template. local
24 v.set<double>(3.2);
H A Dp1.cpp24 struct set{}; // expected-note{{lookup from the current scope refers here}} struct
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}} function in struct:Value
31 v.set<double>(3.2);
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
42 int set; // Non-template. local
44 v.set<double>(3.2);
/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.java50 public void set(int newValue) { method in class:Count
/external/icu/icu4c/source/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/icu/icu4c/source/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/icu/icu4c/source/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/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DAnyScriptTest.java148 private void assertContainsAll(String message, UnicodeSet set, String string) { argument
149 handleAssert(set.containsAll(string), message, set, string, "contains all of", false);
152 private void assertContainsNone(String message, UnicodeSet set, String string) { argument
153 handleAssert(set.containsNone(string), message, set, string, "contains none of", false);
157 private String getList(UnicodeSet set) { argument
159 for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.next();) {
H A DTestUtility.java52 public static String replaceAll(String source, UnicodeSet set, String replacement) { argument
57 if (set.contains(cp)) {
/external/javassist/src/main/javassist/compiler/ast/
H A DDoubleConst.java32 public void set(double v) { value = v; } method in class:DoubleConst

Completed in 1426 milliseconds

1234567891011>>