/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstArray.java | 139 * this with the index for an element which was never set; if you 153 * @param a {@code null-ok;} the element to set at {@code n} 155 public void set(int n, Constant a) { method in class:CstArray.List
|
/external/dexmaker/src/dx/java/com/android/dx/util/ |
Bits.java | 31 * Constructs a bit set to contain bits up to the given index (exclusive). 42 * Gets the maximum index (exclusive) for the given bit set. 44 * @param bits {@code non-null;} bit set in question 45 * @return {@code >= 0;} the maximum index (exclusive) that may be set 54 * @param bits {@code non-null;} bit set to operate on 55 * @param idx {@code >= 0, < getMax(set);} which bit 67 * @param bits {@code non-null;} bit set to operate on 68 * @param idx {@code >= 0, < getMax(set);} which bit 71 public static void set(int[] bits, int idx, boolean value) { method in class:Bits 85 * @param bits {@code non-null;} bit set to operate o 88 public static void set(int[] bits, int idx) { method in class:Bits [all...] |
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/ |
DexmakerMockMaker.java | 23 import java.util.Set; 39 Set<Class> interfacesSet = settings.getExtraInterfaces(); 63 handlerField.set(mock, invocationHandler);
|
/external/elfutils/src/tests/ |
allregs.c | 74 const char *set, *pfx; member in struct:reginfo 85 if (a->set == b->set) 87 if (a->set == NULL) 89 if (b->set == NULL) 91 if (!strcmp (a->set, "integer")) 93 if (!strcmp (b->set, "integer")) 95 return strcmp (a->set, b->set); 118 state->info[regno].set = setname 172 const char *set = NULL; local [all...] |
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
AttributeSet.java | 37 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
|
HTMLTable.java | 38 if (width != null) attrs.set (Attribute.WIDTH, width); 39 if (border != null) attrs.set (Attribute.BORDER, border); 40 if (cellpadding != null) attrs.set (Attribute.CELLPADDING, cellpadding); 41 if (cellspacing != null) attrs.set (Attribute.CELLSPACING, cellspacing); 50 m_caption.getAttributes ().set (Attribute.ALIGN, align); 92 getAttributes ().set (Attribute.COLSPAN, span);
|
/external/emma/core/java12/com/vladium/jcd/cls/ |
FieldCollection.java | 116 public Field_info set (final int offset, final Field_info field) method in class:FieldCollection 118 return (Field_info) m_fields.set (offset, field);
|
MethodCollection.java | 116 public Method_info set (final int offset, final Method_info method) method in class:MethodCollection 118 return (Method_info) m_methods.set (offset, method);
|
/external/emma/core/java12/com/vladium/jcd/cls/attribute/ |
ExceptionHandlerTable.java | 93 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/ |
IntVector.java | 112 public int set (final int index, final int value) method in class:IntVector
|
/external/fonttools/Lib/fontTools/misc/ |
xmlReader.py | 28 self.progress.set(0, os.stat(self.fileName)[stat.ST_SIZE] // 100 or 1) 48 self.progress.set(pos // 100) 124 def set(self, val, maxval=None): member in class:ProgressPrinter
|
/external/google-breakpad/src/testing/scripts/generator/cpp/ |
tokenize.py | 36 if not hasattr(builtins, 'set'): 38 from sets import Set as set namespace 43 VALID_IDENTIFIER_CHARS = set(_letters + _letters.upper() + '_0123456789$') 44 HEX_DIGITS = set('0123456789abcdefABCDEF') 45 INT_OR_FLOAT_DIGITS = set('01234567890eE-+') 49 _STR_PREFIXES = set(('R', 'u8', 'u8R', 'u', 'uR', 'U', 'UR', 'L', 'LR')) 60 # It is always set to WHENCE_STREAM in this code. 132 int_or_float_digits2 = int_or_float_digits | set('.')
|
/external/guava/guava/src/com/google/common/collect/ |
ForwardingList.java | 105 public E set(int index, E element) { method in class:ForwardingList 106 return delegate().set(index, element); 196 * of {@link #size}, {@link #get(int)}, {@link #set(int, Object)}, {@link
|
/external/guava/guava/src/com/google/common/hash/ |
BloomFilterStrategies.java | 59 bitsChanged |= bits.set(combinedHash % bitSize); 103 bitsChanged |= bits.set((combinedHash & Long.MAX_VALUE) % bitSize); 160 boolean set(long index) { method in class:BloomFilterStrategies.BitArray 178 /** Number of set bits (1s) */
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
SimpleTimeLimiter.java | 30 import java.util.Set; 93 final Set<Method> interruptibleMethods 168 private static Set<Method> findInterruptibleMethods(Class<?> interfaceType) { 169 Set<Method> set = Sets.newHashSet(); local 172 set.add(m); 175 return set;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSet.java | 26 import java.util.Set; 40 public abstract class ImmutableSet<E> extends ImmutableCollection<E> implements Set<E> { 43 // Casting to any type is safe because the set will never hold any elements. 102 ImmutableSet<E> set = (ImmutableSet<E>) elements; local 103 return set; 118 Set<E> delegate = Sets.newLinkedHashSet(); 129 static <E> ImmutableSet<E> unsafeDelegate(Set<E> delegate) { 141 // Create the set first, to remove duplicates if necessary. 142 Set<E> set = Sets.newLinkedHashSet() local [all...] |
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/ |
AtomicInteger.java | 40 public final void set(int newValue) { method in class:AtomicInteger 45 set(newValue);
|
AtomicLong.java | 40 public final void set(long newValue) { method in class:AtomicLong 45 set(newValue);
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
ImmutableSetTest.java | 28 import java.util.Set; 40 @Override protected Set<String> of() { 44 @Override protected Set<String> of(String e) { 48 @Override protected Set<String> of(String e1, String e2) { 52 @Override protected Set<String> of(String e1, String e2, String e3) { 56 @Override protected Set<String> of( 61 @Override protected Set<String> of( 66 @Override protected Set<String> of(String e1, String e2, String e3, 71 @Override protected Set<String> copyOf(String[] elements) { 75 @Override protected Set<String> copyOf(Collection<String> elements) 88 ImmutableSet<String> set = ImmutableSet.copyOf(Lists.newArrayList("a", "a")); local 95 ImmutableSet<String> set = ImmutableSet.of( local 104 ImmutableSet<String> set = ImmutableSet.of( local 111 Set<String[]> set = ImmutableSet.<String[]>of(array); local 112 assertEquals(Collections.singleton(array), set); local [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/ |
Helpers.java | 41 import java.util.Set; 62 public static <E> Set<E> copyToSet(Iterable<? extends E> elements) { 63 Set<E> set = new LinkedHashSet<E>(); local 64 addAll(set, elements); 65 return set; 68 public static <E> Set<E> copyToSet(E[] elements) {
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
Helpers.java | 43 import java.util.Set; 64 public static <E> Set<E> copyToSet(Iterable<? extends E> elements) { 65 Set<E> set = new LinkedHashSet<E>(); local 66 addAll(set, elements); 67 return set; 70 public static <E> Set<E> copyToSet(E[] elements) {
|
/external/harfbuzz_ng/src/ |
hb-set.cc | 27 #include "hb-set-private.hh" 43 hb_set_t *set; local 45 if (!(set = hb_object_create<hb_set_t> ())) 48 set->clear (); 50 return set; 75 * @set: a set. 82 hb_set_reference (hb_set_t *set) 84 return hb_object_reference (set); 89 * @set: a set [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UnicodeSetIterator.java | 20 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.next();) { 27 * for (UnicodeSetIterator it = new UnicodeSetIterator(set); it.nextRange();) { 77 * Create an iterator over the given set. 78 * @param set set to iterate over 81 public UnicodeSetIterator(UnicodeSet set) { 82 reset(set); 88 * constructor allowing the target to be set later. 96 * Returns the next element in the set, either a single code point 97 * or a string. If there are no more elements in the set, retur 233 private UnicodeSet set; field in class:UnicodeSetIterator [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
ByteArrayWrapper.java | 125 * Set the internal byte array from offset 0 to (limit - start) with the 135 public final ByteArrayWrapper set(byte[] src, int start, int limit) method in class:ByteArrayWrapper
|
CECalendar.java | 117 * Constructs a <code>CECalendar</code> with the given date set 120 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 122 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field. 125 * @param date The value used to set the calendar's {@link #DATE DATE} time field. 129 this.set(year, month, date); 133 * Constructs a <code>CECalendar</code> with the given date set 136 * @param date The date to which the new calendar is set. 145 * and time set for the default time zone with the default <code>FORMAT</code> locale. 147 * @param year The value used to set the calendar's {@link #YEAR YEAR} time field. 148 * @param month The value used to set the calendar's {@link #MONTH MONTH} time field [all...] |