/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
CatchHandlerList.java | 42 * 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
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
RegisterSpecList.java | 41 result.set(0, spec); 55 result.set(0, spec0); 56 result.set(1, spec1); 71 result.set(0, spec0); 72 result.set(1, spec1); 73 result.set(2, spec2); 90 result.set(0, spec0); 91 result.set(1, spec1); 92 result.set(2, spec2); 93 result.set(3, spec3) 188 public void set(int n, RegisterSpec spec) { method in class:RegisterSpecList [all...] |
/external/dexmaker/src/dx/java/com/android/dx/util/ |
BitIntSet.java | 22 * A set of integers, represented by a bit set 32 * @param max the maximum value of ints in this set. 41 Bits.set(bits, value, true); 45 * Ensures that the bit set has the capacity to represent the given value. 61 Bits.set(bits, value, false); 84 Bits.set(bits, o.ints.get(i), true);
|
/external/e2fsprogs/misc/ |
chattr.c | 61 static int set; variable 176 set = 1; 210 if (set) { 212 printf (_("Flags of %s set as "), name); 224 printf(_("Flags of %s set as "), name); 241 printf (_("Version of %s set as %lu\n"), name, version); 305 if (set && (add || rem)) { 310 fputs("Can't both set and unset same flag.\n", stderr); 313 if (!(add || rem || set || set_version)) {
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
AttributeCollection.java | 150 public Attribute_info set (final int offset, final Attribute_info attribute) method in class:AttributeCollection 152 final Attribute_info result = (Attribute_info) m_attributes.set (offset, attribute);
|
/external/google-breakpad/src/client/windows/common/ |
ipc_protocol.h | 76 void set(const wchar_t* name_arg, const wchar_t* value_arg) { function in struct:google_breakpad::CustomInfoEntry
|
/external/guava/guava/src/com/google/common/base/internal/ |
Finalizer.java | 92 inheritableThreadLocals.set(thread, null);
|
/external/guava/guava/src/com/google/common/collect/ |
Constraints.java | 29 import java.util.Set; 116 * Returns a constrained view of the specified set, using the specified 117 * constraint. Any operations that add new elements to the set will call the 121 * <p>The returned set is not serializable. 123 * @param set the set to constrain 125 * @return a constrained view of the set 127 public static <E> Set<E> constrainedSet( 128 Set<E> set, Constraint<? super E> constraint) 257 @Override public E set(int index, E element) { method in class:Constraints.ConstrainedList 308 @Override public void set(E element) { method in class:Constraints.ConstrainedListIterator [all...] |
Iterables.java | 38 import java.util.Set; 185 // Note: Not all random access lists support set() so we need to deal with 195 list.set(to, element); 360 * iterable is a {@link Multiset} or {@link Set}. 367 } else if ((iterable instanceof Set)) { 368 return ((Set<?>) iterable).contains(element) ? 1 : 0; [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractFuture.java | 39 * Subclasses should provide a way to set the result of the computation through 40 * the protected methods {@link #set(Object)} and 155 * mayInterruptIfRunning} set to {@code true}. 174 * Subclasses should invoke this method to set the result of the computation 175 * to {@code value}. This will set the state of the future to 182 protected boolean set(@Nullable V value) { method in class:AbstractFuture 183 boolean result = sync.set(value); 191 * Subclasses should invoke this method to set the result of the computation 192 * to an error, {@code throwable}. This will set the state of the future to 217 * RUNNING to COMPLETING, that thread will then set the result of th 340 boolean set(@Nullable V v) { method in class:AbstractFuture.Sync [all...] |
AtomicDouble.java | 93 public final void set(double newValue) { method in class:AtomicDouble 104 set(newValue); 252 set(s.readDouble());
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableList.java | 220 public final E set(int index, E element) { method in class:ImmutableList
|
Iterables.java | 36 import java.util.Set; 183 // Note: Not all random access lists support set() so we need to deal with 193 list.set(to, element); 343 * iterable is a {@link Multiset} or {@link Set}. 350 } else if ((iterable instanceof Set)) { 351 return ((Set<?>) iterable).contains(element) ? 1 : 0; [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
SetsTest.java | 51 import java.util.Set; 92 Set<SomeEnum> units = Sets.immutableEnumSet(SomeEnum.D, SomeEnum.B); 133 EnumSet<SomeEnum> set = EnumSet.of(SomeEnum.A, SomeEnum.D); local 134 assertEquals(set, newEnumSet(set, SomeEnum.class)); 138 Set<SomeEnum> set = ImmutableSet.of(SomeEnum.B, SomeEnum.C); local 139 assertEquals(set, newEnumSet(set, SomeEnum.class)); 143 Set<SomeEnum> set = ImmutableSet.of(SomeEnum.A, SomeEnum.B, SomeEnum.C) local 148 HashSet<Integer> set = Sets.newHashSet(); local 153 HashSet<Integer> set = Sets.newHashSet(0, 1, 1); local 158 HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION); local 163 HashSet<Integer> set = Sets.newHashSet(SOME_ITERABLE); local 168 HashSet<Integer> set = Sets.newHashSetWithExpectedSize(0); local 173 HashSet<Integer> set = Sets.newHashSetWithExpectedSize(1000); local 178 HashSet<Integer> set = Sets.newHashSet(SOME_COLLECTION.iterator()); local 183 Set<Integer> set = Sets.newConcurrentHashSet(); local 188 Set<Integer> set = Sets.newConcurrentHashSet(SOME_COLLECTION); local 193 LinkedHashSet<Integer> set = Sets.newLinkedHashSet(); local 198 LinkedHashSet<Integer> set = Sets.newLinkedHashSet(LONGER_LIST); local 203 LinkedHashSet<Integer> set = Sets.newLinkedHashSet(new Iterable<Integer>() local 214 LinkedHashSet<Integer> set = Sets.newLinkedHashSetWithExpectedSize(0); local 219 LinkedHashSet<Integer> set = Sets.newLinkedHashSetWithExpectedSize(1000); local 224 TreeSet<Integer> set = Sets.newTreeSet(); local 229 TreeSet<Derived> set = Sets.newTreeSet(); local 237 TreeSet<LegacyComparable> set = Sets.newTreeSet(); local 246 TreeSet<Integer> set = Sets.newTreeSet(SOME_COLLECTION); local 251 TreeSet<Integer> set = Sets.newTreeSet(SOME_ITERABLE); local 258 TreeSet<Derived> set = Sets.newTreeSet(iterable); local 266 TreeSet<LegacyComparable> set = Sets.newTreeSet(iterable); local 272 TreeSet<Integer> set = Sets.newTreeSet(SOME_COMPARATOR); local 277 Set<Integer> set = Sets.newIdentityHashSet(); local 330 Set<SomeEnum> set = Collections.emptySet(); local 338 Set<Integer> set = Sets.newSetFromMap(new HashMap<Integer, Boolean>()); local 446 Set<Integer> set = ContiguousSet.create(Range.closed(0, 10000), DiscreteDomain.integers()); local [all...] |
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
SortedCopyBenchmark.java | 28 import java.util.Set; 71 Set<Integer> set = new LinkedHashSet<Integer>(size); local 74 while (set.size() < size) { 75 set.add(random.nextInt()); 77 List<Integer> list = new ArrayList<Integer>(set);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
CollectionBenchmarkSampleData.java | 25 import java.util.Set; 38 private final Set<Element> valuesInSet; 59 Set<Element> getValuesInSet() { 67 private Element[] createQueries(Set<Element> elementsInSet, int numQueries) { 97 private Set<Element> createData() { 98 Set<Element> set = Sets.newHashSetWithExpectedSize(size); local 99 while (set.size() < size) { 100 set.add(newElement()); 102 return set; [all...] |
ImmutableSetTest.java | 40 import java.util.Set; 90 @Override protected Set<String> of() { 94 @Override protected Set<String> of(String e) { 98 @Override protected Set<String> of(String e1, String e2) { 102 @Override protected Set<String> of(String e1, String e2, String e3) { 106 @Override protected Set<String> of( 111 @Override protected Set<String> of( 116 @Override protected Set<String> of(String e1, String e2, String e3, 121 @Override protected Set<String> copyOf(String[] elements) { 125 @Override protected Set<String> copyOf(Collection<String> elements) 138 ImmutableSet<String> set = ImmutableSet.copyOf(Lists.newArrayList("a", "a")); local 145 ImmutableSet<String> set = ImmutableSet.of( local 154 ImmutableSet<String> set = ImmutableSet.of( local 161 Set<String[]> set = ImmutableSet.<String[]>of(array); local 162 assertEquals(Collections.singleton(array), set); local 201 ImmutableSet<Integer> set = builder.build(); local [all...] |
/external/icu/icu4c/source/i18n/ |
astro.h | 31 * and time for which its calculations are performed. You can set and 96 void set(double lat, double lon) { function in class:CalendarAstronomer::Ecliptic 163 void set(double asc, double dec) { function in class:CalendarAstronomer::Equatorial 237 void set(double alt, double azim) { function in class:CalendarAstronomer::Horizon 303 * latitude and longitude. The object's time is set to the current 328 * Set the current date and time of this <code>CalendarAstronomer</code> object. All 342 * Set the current date and time of this <code>CalendarAstronomer</code> object. All 354 * Set the current date and time of this <code>CalendarAstronomer</code> object. All 535 * this calendar is currently set. 537 * NOTE: This method only works well if this object is set to 590 void set(double l) { value = l; } function in class:CalendarAstronomer::MoonAge [all...] |
collationiterator.h | 68 inline int64_t set(int32_t i, int64_t ce) { function in class:CollationIterator::CEBuffer 127 return ceBuffer.set(cesIndex++, 135 return ceBuffer.set(cesIndex++, Collation::NO_CE); 142 return ceBuffer.set(cesIndex++, 150 return ceBuffer.set(cesIndex++, 167 ceBuffer.set(cesIndex - 1, ce);
|
cpdtrans.cpp | 80 Transliterator(id, 0), // set filter to 0 here! 132 * constructors. Before calling init(), set trans and filter to NULL. 177 * constructors. Before calling init(), set trans and filter to NULL. 373 // First free trans[] and set count to zero. Once this is done, 374 // orphan the filter. Set up the new trans[]. 441 UnicodeSet set; local 444 result.addAll(trans[i]->getSourceSet(set)); 446 // Hiragana-Katakana; Katakana-Latin. The source set of 448 // But the source set for the entire transliterator is 450 // non-empty source set 463 UnicodeSet set; local [all...] |
/external/icu/icu4c/source/test/intltest/ |
canittst.cpp | 146 Hashtable *set = new Hashtable(FALSE, status); local 147 set->setValueDeleter(uprv_deleteUObject); 155 set->removeAll(); 162 set->put(result, new UnicodeString(result), status); // Add result to the table 166 expectEqual(i + UnicodeString(": "), testStr, collectionToString(set), CharsToUnicodeString(testArray[i][1])); 172 delete set; 223 // set up for readable display
|
trnserr.cpp | 110 errln("FAIL: Error code wasn't set either."); 122 errln("FAIL: Error code wasn't set either."); 157 errln("FAIL: The parse error offset isn't set correctly when fails."); 169 UnicodeSet set; local 173 if (!set.isEmpty()) { 176 set.applyPattern(badPattern, status); 219 /*UnicodeSet *set = new UnicodeSet(goodPattern, status); 227 //delete set;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
Row.java | 58 return set(0, item); 64 return set(1, item); 70 return set(2, item); 76 return set(3, item); 82 return set(4, item); 88 protected Row<C0, C1, C2, C3, C4> set(int i, Object item) { method in class:Row
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
PluralRanges.java | 59 void set(StandardPluralCategories start, StandardPluralCategories end, StandardPluralCategories result) { method in class:PluralRanges.Matrix 65 * Internal method for setting; throws exception if already set. 71 throw new IllegalArgumentException("Previously set value for <" + start + ", " + end + ", " 267 * @return true if set
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
JapaneseCalendar.java | 122 * Constructs a <code>JapaneseCalendar</code> with the given date set 125 * @param date The date to which the new calendar is set. 134 * Constructs a <code>JapaneseCalendar</code> with the given date set 137 * @param era The imperial era used to set the calendar's {@link #ERA ERA} field. 146 * @param year The value used to set the calendar's {@link #YEAR YEAR} field, 149 * @param month The value used to set the calendar's {@link #MONTH MONTH} field. 152 * @param date The value used to set the calendar's DATE field. 157 set(ERA, era); method 161 * Constructs a <code>JapaneseCalendar</code> with the given date set 164 * @param year The value used to set the calendar's {@link #YEAR YEAR} field 176 set(ERA, CURRENT_ERA); method 203 set(ERA, CURRENT_ERA); method [all...] |