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

1234567891011>>

/external/webkit/Source/WebCore/html/canvas/
H A DUint16Array.h43 void set(TypedArrayBase<unsigned short>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned short>::set(array, offset, ec); } function in class:WebCore::Uint16Array
44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned short>::set(index, value); } function in class:WebCore::Uint16Array
H A DUint32Array.h43 void set(TypedArrayBase<unsigned int>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned int>::set(array, offset, ec); } function in class:WebCore::Uint32Array
44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned int>::set(index, value); } function in class:WebCore::Uint32Array
H A DUint8Array.h43 void set(TypedArrayBase<unsigned char>* array, unsigned offset, ExceptionCode& ec) { TypedArrayBase<unsigned char>::set(array, offset, ec); } function in class:WebCore::Uint8Array
44 void set(unsigned index, double value) { IntegralTypedArrayBase<unsigned char>::set(index, value); } function in class:WebCore::Uint8Array
/external/webkit/Source/WebCore/platform/audio/
H A DAudioChannel.h56 // A "blank" audio channel -- must call set() before it's useful...
65 void set(float* storage, size_t length) function in class:WebCore::AudioChannel
/external/webkit/Source/WebCore/rendering/
H A DVerticalPositionCache.h54 void set(RenderObject* renderer, FontBaseline baselineType, int position) function in class:WebCore::VerticalPositionCache
57 m_alphabeticPositions.set(renderer, position);
59 m_ideographicPositions.set(renderer, position);
/external/webkit/Source/WebCore/websockets/
H A DWebSocketHandshakeRequest.cpp48 void WebSocketHandshakeRequest::Key3::set(const unsigned char key3[8]) function in class:WebCore::WebSocketHandshakeRequest::Key3
90 m_key3.set(key3);
/external/webkit/Source/WebKit/chromium/src/
H A DWebSpeechInputResult.cpp44 void WebSpeechInputResult::set(const WebString& utterance, double confidence) function in class:WebKit::WebSpeechInputResult
/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/chromium/chrome/browser/sync/
H A Dprofile_sync_service_startup_unittest.cc122 syncable::ModelTypeSet set; local
123 set.insert(syncable::BOOKMARKS);
124 service_->OnUserChoseDatatypes(false, set);
/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.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);

Completed in 482 milliseconds

1234567891011>>