Searched defs:set (Results 451 - 475 of 843) sorted by relevance

<<11121314151617181920>>

/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java396 public void set(Entry<K, V> e) { method in class:LinkedListMultimap.NodeIterator
543 public void set(V value) { method in class:LinkedListMultimap.ValueForKeyIterator
615 keyValues.set(newValues.next());
664 * progress (except through the iterator's own {@code add}, {@code set} or
731 public void set(V value) {
H A DLists.java481 * {@code addAll} and {@code set} methods are unsupported in the returned
802 @Override public T set(int index, @Nullable T element) { method in class:Lists.ReverseList
803 return forwardList.set(reverseIndex(index), element);
875 @Override public void set(T e) {
877 forwardIterator.set(e);
1018 @Override public E set(int index, E element) { method in class:Lists.AbstractListWrapper
1019 return backingList.set(index, element);
/external/guava/guava/src/com/google/common/primitives/
H A DInts.java497 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
498 * but any attempt to set a value to {@code null} will result in a {@link
574 @Override public Integer set(int index, Integer element) { method in class:Ints.IntArrayAsList
H A DLongs.java530 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
531 * but any attempt to set a value to {@code null} will result in a {@link
607 @Override public Long set(int index, Long element) { method in class:Longs.LongArrayAsList
H A DShorts.java496 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
497 * but any attempt to set a value to {@code null} will result in a {@link
573 @Override public Short set(int index, Short element) { method in class:Shorts.ShortArrayAsList
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DArrayTable.java63 * lists of allowed keys and values. See the {@link #at}, {@link #set}, {@link
350 public V set(int rowIndex, int columnIndex, @Nullable V value) { method in class:ArrayTable
450 return set(rowIndex, columnIndex, value);
504 return set(rowIndex, columnIndex, null);
515 * Returns an unmodifiable set of all row key / column key / value
516 * triplets. Changes to the table will update the returned set.
518 * <p>The returned set's iterator traverses the mappings with the first row
524 * @return set of table cells consisting of row key / column key / value
596 return set(index, columnIndex, newValue);
601 * Returns an immutable set o
[all...]
H A DLinkedListMultimap.java392 public void set(Entry<K, V> e) { method in class:LinkedListMultimap.NodeIterator
539 public void set(V value) { method in class:LinkedListMultimap.ValueForKeyIterator
611 keyValues.set(newValues.next());
660 * progress (except through the iterator's own {@code add}, {@code set} or
727 public void set(V value) {
H A DLists.java447 * {@code addAll} and {@code set} methods are unsupported in the returned
768 @Override public T set(int index, @Nullable T element) { method in class:Lists.ReverseList
769 return forwardList.set(reverseIndex(index), element);
841 @Override public void set(T e) {
843 forwardIterator.set(e);
984 @Override public E set(int index, E element) { method in class:Lists.AbstractListWrapper
985 return backingList.set(index, element);
H A DSets.java80 * 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}.
101 * <p>The iteration order of the returned set follows the enum's iteration
105 * set shoul
517 copyInto(S set) argument
1069 powerSet(Set<E> set) argument
1215 removeAllImpl(Set<?> set, Iterator<?> iterator) argument
1223 removeAllImpl(Set<?> set, Collection<?> collection) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DInts.java443 * Arrays#asList(Object[])}. The list supports {@link List#set(int, Object)},
444 * but any attempt to set a value to {@code null} will result in a {@link
520 @Override public Integer set(int index, Integer element) { method in class:Ints.IntArrayAsList
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DAbstractIteratorTester.java162 * elements and a set of features to support (from the enclosing
165 * {@link PermittedMetaException} instances, which wrap a set of all
198 * pop from and push to on a call to {@code set()}.
258 public void set(E e) { method in class:AbstractIteratorTester.MultiExceptionListIterator
363 * by {@code remove()}, {@code set()}, and {@code add()} calls
566 li.set(toInsert);
656 Stimulus<E, ListIterator<E>> set = new Stimulus<E, ListIterator<E>>("set") { field in class:AbstractIteratorTester
666 hasPrevious, nextIndex, previousIndex, previous, add, set);
/external/icu/icu4c/source/common/
H A Duniset.cpp101 static inline void _dbgct(UnicodeSet* set) { argument
103 set->toPattern(str, TRUE);
106 printf("DEBUG UnicodeSet: ct 0x%08X; %d %s\n", set, ++_dbgCount, buf);
109 static inline void _dbgdt(UnicodeSet* set) { argument
111 set->toPattern(str, TRUE);
114 printf("DEBUG UnicodeSet: dt 0x%08X; %d %s\n", set, --_dbgCount, buf);
119 #define _dbgct(set)
120 #define _dbgdt(set)
143 * Constructs an empty set.
158 } else { // If memory allocation failed, set t
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationruleparser.cpp663 UnicodeSet set; local
664 j = parseUnicodeSet(j, set, errorCode);
667 sink->optimize(set, errorReason, errorCode);
672 sink->suppressContractions(set, errorReason, errorCode);
745 CollationRuleParser::parseUnicodeSet(int32_t i, UnicodeSet &set, UErrorCode &errorCode) { argument
761 set.applyPattern(rules->tempSubStringBetween(i, j), errorCode);
H A Dtridpars.cpp85 UnicodeSet *set = new UnicodeSet(filter, ec); local
87 delete set;
89 t->adoptFilter(set);
246 * optional, and the return result will be set to 0 or 1.
728 UnicodeSet set(id, ppos, USET_IGNORE_SPACE, NULL, ec);
/external/icu/icu4c/source/test/cintltst/
H A Ducnvseltst.c281 /* get unicode set for that converter */
282 USet* set; local
287 set = uset_openEmpty();
289 ucnv_getUnicodeSet(test_converter, set,
292 uset_addAll(set, excludedCodePoints);
294 uset_freeze(set);
302 * (UBool)(uset_spanUTF8(set, utf8, length, USET_SPAN_SIMPLE) == length);
303 * They might be different if the set contains strings,
313 if (cp >= 0 && !uset_contains(set, cp)) {
318 uset_close(set);
[all...]
H A Dusettest.c26 static void expect(const USet* set,
30 static void expectContainment(const USet* set,
34 static void expectItems(const USet* set,
81 USet* set; local
86 set = uset_openEmpty();
87 expect(set, "", "abc{ab}", NULL);
88 uset_close(set);
90 set = uset_open(1, 0);
91 expect(set, "", "abc{ab}", NULL);
92 uset_close(set);
235 expect(const USet* set, const char* inList, const char* outList, UErrorCode* ec) argument
252 expectContainment(const USet* set, const char* list, UBool isIn) argument
354 expectItems(const USet* set, const char* items) argument
478 USet *set; local
528 USet *set = uset_openPattern(buf, len, &ec); local
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DLocaleIDParser.java96 private void set(int pos, String s) { method in class:LocaleIDParser
211 set(0, lang);
332 set(oldBlen, region);
500 set(0, baseName);
682 * Set the keyword value only if it is not already set to something else.
H A DTrie2Writable.java22 * @param initialValueP the initial value that is set for all code points
63 /* set the index-2 indexes for the 2=0x80>>UTRIE2_SHIFT_2 ASCII data blocks */
91 * set the remaining indexes in the BMP index-2 block
106 /* set the indexes in the null index-2 block */
113 /* set the index-1 indexes for the linear index-2 block */
121 /* set the remaining index-1 indexes to the null index-2 block */
132 set(i, initialValue);
291 public Trie2Writable set(int c, int value) { method in class:Trie2Writable
295 set(c, true, value);
300 private Trie2Writable set(in method in class:Trie2Writable
[all...]
H A DUnicodeSetStringSpan.java19 * Implement span() etc. for a set with strings.
45 * All code points in the string are contained in the parent set.
60 /** The strings of the parent set. */
69 /** Are there strings that are not fully contained in the code point set? */
82 public UnicodeSetStringSpan(final UnicodeSet set, final ArrayList<String> setStrings, int which) { argument
84 // TODO: With Java 6, just take the parent set's strings as is,
85 // as a NavigableSet<String>, rather than as an ArrayList copy of the set of strings.
91 spanSet.retainAll(set);
94 // addToSpanNotSet() will create a separate set if necessary.
126 // a set take
968 spanOne(final UnicodeSet set, CharSequence s, int start, int length) argument
980 spanOneBack(final UnicodeSet set, CharSequence s, int length) argument
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java50 * The logging is only possible if "-v" or verbose is set as an argument.
56 * in the form of XML. You must also set the CLDR directory using:
194 void set(String attributeName, String attributeValue) { method in class:TestCLDRVsICU.Handler
576 handler.set(attributes.getQName(i), attributes.getValue(i));
580 // handler.set("locale", uLocale.toString());
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
H A DTrieMap.java99 abstract void set(CharSequence string, int i); method in class:TrieMap.Matcher
215 public void set(CharSequence text, int start) { method in class:TrieMap.BytesTrieMap.BytesMatcher
280 // integers, and a mapping from those integers to a set of values
398 public void set(CharSequence text, int start) { method in class:TrieMap.CharsTrieMap.CharsMatcher
456 // integers, and a mapping from those integers to a set of values
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DTokenizer.java256 public void setSyntax(UnicodeSet set) { argument
257 syntax = set;
260 public void setWhiteSpace(UnicodeSet set) { argument
261 whiteSpace = set;
/external/javassist/src/main/javassist/bytecode/
H A DCodeAttribute.java191 public void set(byte[] newinfo) { method in class:CodeAttribute
192 throw new UnsupportedOperationException("CodeAttribute.set()");
273 void setCode(byte[] newinfo) { super.set(newinfo); }
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DMatrix3f.java43 * internally and is accessible via the get and set methods. Convenience methods
45 * set of values.
114 set(mat);
134 * matrix. If a null matrix is supplied, this matrix is set to the identity
141 public Matrix3f set(Matrix3f matrix) { method in class:Matrix3f
389 * limit set is not changed).
443 * the column to set.
445 * the data to set.
483 * the row to set.
485 * the data to set
531 public Matrix3f set(int i, int j, float value) { method in class:Matrix3f
586 public Matrix3f set(float[][] matrix) { method in class:Matrix3f
637 public Matrix3f set(float[] matrix) { method in class:Matrix3f
651 public Matrix3f set(float[] matrix, boolean rowMajor) { method in class:Matrix3f
691 public Matrix3f set(Quaternion quaternion) { method in class:Matrix3f
[all...]
H A DVector2f.java79 * Creates a Vector2f with x and y set to 0. Equivalent to Vector2f(0,0).
97 * set the x and y values of the vector
105 public Vector2f set(float x, float y) { method in class:Vector2f
112 * set the x and y values of the vector from another vector
118 public Vector2f set(Vector2f vec) { method in class:Vector2f
435 * negated and set to a new vector.

Completed in 517 milliseconds

<<11121314151617181920>>