Searched defs:add (Results 126 - 150 of 940) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/jcd/cls/
H A DIAttributeCollection.java71 int add (Attribute_info attribute); method in interface:IAttributeCollection
H A DIFieldCollection.java77 int add (Field_info field); method in interface:IFieldCollection
H A DIMethodCollection.java74 int add (Method_info method); method in interface:IMethodCollection
H A DInterfaceCollection.java81 public int add (final int interface_index) method in class:InterfaceCollection
84 m_interfaces.add (interface_index);
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DDeclaredExceptionTable.java79 public int add (final int exception_index) method in class:DeclaredExceptionTable
82 m_exceptions.add (exception_index);
H A DExceptionHandlerTable.java58 _clone.m_exceptions.add (((Exception_info) m_exceptions.get (e)).clone ());
85 public int add (final Exception_info exception) method in class:ExceptionHandlerTable
88 m_exceptions.add (exception);
/external/emma/core/java12/com/vladium/util/
H A DIntVector.java123 public void add (final int value) method in class:IntVector
/external/guava/guava/src/com/google/common/collect/
H A DEvictingQueue.java33 * attempting to add new elements onto the queue and it is full.
90 return add(e);
99 @Override public boolean add(E e) { method in class:EvictingQueue
107 delegate.add(e);
/external/guava/guava/src/com/google/common/primitives/
H A DPrimitives.java48 add(primToWrap, wrapToPrim, boolean.class, Boolean.class);
49 add(primToWrap, wrapToPrim, byte.class, Byte.class);
50 add(primToWrap, wrapToPrim, char.class, Character.class);
51 add(primToWrap, wrapToPrim, double.class, Double.class);
52 add(primToWrap, wrapToPrim, float.class, Float.class);
53 add(primToWrap, wrapToPrim, int.class, Integer.class);
54 add(primToWrap, wrapToPrim, long.class, Long.class);
55 add(primToWrap, wrapToPrim, short.class, Short.class);
56 add(primToWrap, wrapToPrim, void.class, Void.class);
62 private static void add(Ma method in class:Primitives
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DListenerCallQueue.java51 /** Helper method to add this callback to all the queues. */
54 queue.add(this);
71 synchronized void add(Callback<L> callback) { method in class:ListenerCallQueue
72 waitQueue.add(callback);
75 /** Executes all listeners {@linkplain #add added} prior to this call, serially and in order.*/
/external/guice/core/src/com/google/inject/internal/
H A DWeakKeySet.java46 * This is already locked externally on add and getSources but we need it to handle clean up in
90 public void add(Key<?> key, State state, Object source) { method in class:WeakKeySet
105 sources.add(convertedSource);
113 keyAndSources.add(new KeyAndSource(key, convertedSource));
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRangeDateRule.java43 public void add(DateRule rule) { method in class:RangeDateRule
44 add(new Date(Long.MIN_VALUE), rule);
50 public void add(Date start, DateRule rule) { method in class:RangeDateRule
53 ranges.add(new Range(start, rule));
/external/icu/icu4c/source/i18n/
H A Dnfrlist.h65 void add(NFRule* thing) { function in class:NFRuleList
80 add(NULL); // ensure null termination
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeDateRule.java44 public void add(DateRule rule) { method in class:RangeDateRule
45 add(new Date(Long.MIN_VALUE), rule);
52 public void add(Date start, DateRule rule) { method in class:RangeDateRule
55 ranges.add(new Range(start, rule));
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
H A DTargetLoader.java32 public Class<?> add(final String name, final byte[] bytes) { method in class:TargetLoader
37 public Class<?> add(final Class<?> name, final byte[] bytes) { method in class:TargetLoader
38 return add(name.getName(), bytes);
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DCompositeResourceLoader.java39 add(loader);
45 add(loader);
49 public void add(ResourceLoader loader) { method in class:CompositeResourceLoader
50 loaders.add(loader);
/external/libdrm/
H A Dxf86atomic.h108 static inline int atomic_add_unless(atomic_t *v, int add, int unless) argument
112 while (c != unless && (old = atomic_cmpxchg(v, c, c + add)) != c)
/external/libhevc/common/
H A Dihevc_chroma_itrans_recon.c119 WORD32 add; local
130 add = 1 << (shift - 1);
153 CLIP_S16(((e[0] + o[0] + add) >> shift));
155 CLIP_S16(((e[1] + o[1] + add) >> shift));
157 CLIP_S16(((e[1] - o[1] + add) >> shift));
159 CLIP_S16(((e[0] - o[0] + add) >> shift));
171 add = 1 << (shift - 1);
187 CLIP_S16(((e[0] + o[0] + add) >> shift));
190 CLIP_S16(((e[1] + o[1] + add) >> shift));
193 CLIP_S16(((e[1] - o[1] + add) >> shif
[all...]
/external/llvm/test/MC/AArch64/
H A Darm64-diags.s251 add w1, w2, w3, lsr #75
254 ; CHECK-ERRORS: add w1, w2, w3, lsr #75
276 add w3, w5, sym@PAGEOFF label
278 ; CHECK-ERRORS: add w3, w5, sym@PAGEOFF
434 add.16b v0, v1, v2, v3
435 add.8b v0, v1
441 ; CHECK-ERRORS: add.16b v0, v1, v2, v3
444 ; CHECK-ERRORS: add.8b v0, v1
/external/lzma/Java/Tukaani/src/org/tukaani/xz/index/
H A DIndexBase.java44 void add(long unpaddedSize, long uncompressedSize) throws XZIOException { method in class:IndexBase
/external/mesa3d/src/compiler/nir/
H A Dnir_lower_atomics.c138 nir_alu_instr *add = nir_alu_instr_create(mem_ctx, nir_op_iadd); local
139 nir_ssa_dest_init(&add->instr, &add->dest.dest, 1, 32, NULL);
140 add->dest.write_mask = 0x1;
141 add->src[0].src.is_ssa = true;
142 add->src[0].src.ssa = &mul->dest.dest.ssa;
143 add->src[1].src.is_ssa = true;
144 add->src[1].src.ssa = offset_def;
145 nir_instr_insert_before(&instr->instr, &add->instr);
147 offset_def = &add
[all...]
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java77 public void add(Object header) { method in class:HeaderIterator
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DCertificatePinner.java57 * .add(hostname, "sha1/AAAAAAAAAAAAAAAAAAAAAAAAAAA=")
88 * .add("publicobject.com", "sha1/DmxUShsZuNiqPQsX2Oi9uv2sCnw=")
89 * .add("publicobject.com", "sha1/SXxoaOSEzPC6BgGmxAt/EAcsajw=")
90 * .add("publicobject.com", "sha1/blhOM3W9V/bVQhsWAcLYwPU6n24=")
91 * .add("publicobject.com", "sha1/T5x9IXmcrQ7YuQxXnxoCmeeQ84c=")
245 public Builder add(String hostname, String... pins) { method in class:CertificatePinner.Builder
262 hostPins.add(decodedPin);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyStringList.java86 * @throws UnsupportedOperationException if the <tt>add</tt> operation
89 void add(ByteString element); method in interface:LazyStringList
96 * @throws UnsupportedOperationException if the <tt>add</tt> operation
99 void add(byte[] element); method in interface:LazyStringList
/external/python/cpython2/Lib/compiler/
H A Dmisc.py18 def add(self, elt): member in class:Set

Completed in 603 milliseconds

1234567891011>>