Searched defs:add (Results 176 - 200 of 546) sorted by relevance

1234567891011>>

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPath.java53 * @param segment the segment to add
55 public void add(XMPPathSegment segment) method in class:XMPPath
57 segments.add(segment);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Devent-hub.rb23 def add( *listeners ) method in class:ANTLR3.Debug.EventHub
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtemplate.rb297 new.add( :values ) do | p |
309 def add( name, options = nil ) method in class:ParameterList
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntervalSet.java70 s.add(a);
77 s.add(a,b);
84 public void add(int el) { method in class:IntervalSet
85 add(el,el);
88 /** Add interval; i.e., add all integers from a to b to set.
95 public void add(int a, int b) { method in class:IntervalSet
96 add(Interval.create(a,b));
100 protected void add(Interval addition) { method in class:IntervalSet
101 //System.out.println("add "+addition+" to "+intervals.toString());
132 iter.add(additio
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractListTest.java44 public void add(int i, Object o) { method in class:AbstractListTest.SimpleList
45 this.arrayList.add(i, o);
62 list.add(new Integer(3));
63 list.add(new Integer(15));
64 list.add(new Integer(5));
65 list.add(new Integer(1));
66 list.add(new Integer(7));
82 list.add(new Object());
83 list.add(new Object());
96 list.add(ne
231 public void add(int idx, E o) { method in class:AbstractListTest.MockArrayList
[all...]
H A DAbstractSequentialListTest.java74 list.add(1);
75 list.add("value");
100 list.add(1);
105 list.add("value");
171 public void add(Object object) { method in class:AbstractSequentialListTest.MockListIterator
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java113 public abstract ECPoint add(ECPoint b); method in class:ECPoint
241 public ECPoint add(ECPoint b) method in class:ECPoint.Fp
292 ECFieldElement gamma = this.x.square().multiply(THREE).add(curve.a).divide(y.multiply(TWO));
309 return add(b.negate());
445 * @see org.bouncycastle.math.ec.ECPoint#add(org.bouncycastle.math.ec.ECPoint)
447 public ECPoint add(ECPoint b) method in class:ECPoint.F2m
458 * @param b The other <code>ECPoints.F2m</code> to add to
492 = (ECFieldElement.F2m)(this.y.add(y2)).divide(this.x.add(x2));
495 = (ECFieldElement.F2m)lambda.square().add(lambd
[all...]
H A DSimpleBigDecimal.java18 //extends Number // not in J2ME - add compatibility class?
88 public SimpleBigDecimal add(SimpleBigDecimal b) method in class:SimpleBigDecimal
91 return new SimpleBigDecimal(bigInt.add(b.bigInt), scale);
94 public SimpleBigDecimal add(BigInteger b) method in class:SimpleBigDecimal
96 return new SimpleBigDecimal(bigInt.add(b.shiftLeft(scale)), scale);
106 return add(b.negate());
162 return add(oneHalf.adjustScale(scale)).floor();
207 floorBigInt = floorBigInt.add(ECConstants.ONE);
/external/chromium/chrome/browser/resources/touch_ntp/standalone/
H A Dstandalone_hack.js13 * just in the latest version of Chrome, this hack attempts to add some support
422 /* Hack to add Element.classList to older browsers that don't yet support it.
493 classListProto.add = function(token) {
511 this.add(token);
533 /* Hack to add Function.bind to older browsers that don't yet support it. From:
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DMixedItemSection.java163 * that it has been added to this instance. It is invalid to add the
164 * same item to more than one instance, nor to add the same items
167 * @param item {@code non-null;} the item to add
169 public void add(OffsettedItem item) { method in class:MixedItemSection
182 items.add(item);
187 * (which may not be the one passed in). This will add the item if no
202 add(item);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntList.java49 result.add(value);
64 result.add(value0);
65 result.add(value1);
212 * @param value the value to add
214 public void add(int value) { method in class:IntList
348 result.add(values[i]);
/external/elfutils/lib/
H A Dmd5.c214 size_t add = 128 - left_over > len ? len : 128 - left_over; local
216 memcpy (&ctx->buffer[left_over], buffer, add);
217 ctx->buflen += add;
225 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63],
229 buffer = (const char *) buffer + add;
230 len -= add;
H A Dsha1.c131 size_t add = 128 - left_over > len ? len : 128 - left_over; local
133 memcpy (&ctx->buffer[left_over], buffer, add);
134 ctx->buflen += add;
142 memcpy (ctx->buffer, &ctx->buffer[(left_over + add) & ~63],
146 buffer = (const char *) buffer + add;
147 len -= add;
/external/emma/core/java12/com/vladium/emma/data/
H A DMetaData.java108 public boolean add (final ClassDescriptor cls, final boolean overwrite) method in class:MetaData
143 if (m_packagesWarned.add (packageVMName))
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLDocument.java32 super.add (m_head = IElement.Factory.create (Tag.HEAD));
33 super.add (m_body = IElement.Factory.create (Tag.BODY));
44 m_head.add (meta);
53 m_head.add (titleElement);
100 if (m_header != null) m_body.add (0, m_header);
101 if (m_footer != null) m_body.add (m_body.size (), m_footer);
107 * Overridden to add to the doc body.
109 public IElementList add (final IContent content) method in class:HTMLDocument
111 m_body.add (content);
131 m_head.add (styl
[all...]
/external/emma/core/java12/com/vladium/jcd/cls/
H A DConstantCollection.java99 _clone.m_constants.add (constant == null ? null : constant.clone ());
162 // add new index value if necessary:
170 public int add (final CONSTANT_info constant) method in class:ConstantCollection
172 m_constants.add (constant);
179 m_constants.add (null); // insert padding empty slots
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java227 @Override public int add(@Nullable E element, int occurrences) { method in class:AbstractMapBasedMultiset
H A DAbstractMultiset.java35 * optionally overriding {@link #add(Object, int)} and
79 @Override public boolean add(@Nullable E element) { method in class:AbstractMultiset
80 add(element, 1);
85 public int add(E element, int occurrences) { method in class:AbstractMultiset
H A DConcurrentHashMultiset.java203 list.add(element);
214 * @param element the element to add
215 * @param occurrences the number of occurrences to add
220 @Override public int add(E element, int occurrences) { method in class:ConcurrentHashMultiset
557 // Safe as long as we never add a new entry, which we won't.
H A DForwardingCollection.java36 * overriding {@link #add} alone <b>will not</b> change the behavior of {@link
84 public boolean add(E element) { method in class:ForwardingCollection
85 return delegate().add(element);
151 * A sensible definition of {@link #addAll} in terms of {@link #add}. If you
152 * override {@link #add}, you may wish to override {@link #addAll} to forward
H A DForwardingList.java41 * overriding {@link #add} alone <b>will not</b> change the behavior of {@link
65 public void add(int index, E element) { method in class:ForwardingList
66 delegate().add(index, element);
123 * A sensible default implementation of {@link #add(Object)}, in terms of
124 * {@link #add(int, Object)}. If you override {@link #add(int, Object)}, you
125 * may wish to override {@link #add(Object)} to forward to this
131 add(size(), element);
137 * terms of the {@code add} method of {@link #listIterator(int)}. If you
H A DForwardingMultiset.java37 * overriding {@link #add(Object, int)} alone <b>will not</b> change the
38 * behavior of {@link #add(Object)}, which can lead to unexpected behavior. In
39 * this case, you should override {@code add(Object)} as well, either providing
66 public int add(E element, int occurrences) { method in class:ForwardingMultiset
67 return delegate().add(element, occurrences);
146 * A sensible definition of {@link #add(Object)} in terms of {@link
147 * #add(Object, int)}. If you override {@link #add(Object, int)}, you may
148 * wish to override {@link #add(Object)} to forward to this implementation.
153 add(elemen
[all...]
H A DLinkedHashMultimap.java54 * then add the key back to the multimap, that key will come last in the key
192 entries.add(createEntry(value));
197 @Override public boolean add(@Nullable V value) { method in class:LinkedHashMultimap.SetDecorator
198 boolean changed = delegate.add(value);
200 linkedEntries.add(createEntry(value));
331 * support the {@code add} or {@code addAll} operations.
390 linkedEntries.add(Maps.immutableEntry(key, value));
H A DMultiset.java45 * bulk-modification operations, for example {@link #add(Object, int)}, to add
49 * #add(Object)} or {@link #remove(Object)} are encouraged to implement the
65 * implemented. Most implementations should support either all add operations
109 * #add(Object)}. This method is functionally equivalent (except in the case
113 * @param element the element to add occurrences of; may be null only if
115 * @param occurrences the number of occurrences of the element to add. May be
125 int add(@Nullable E element, int occurrences); method in interface:Multiset
146 * @param element the element to add or remove occurrences of; may be null
189 * the multiset. Implementations are not expected to support the add
389 boolean add(E element); method in interface:Multiset
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java110 public UnsignedInteger add(UnsignedInteger val) { method in class:UnsignedInteger

Completed in 4264 milliseconds

1234567891011>>