/frameworks/compile/mclinker/lib/LD/ |
SectionSymbolSet.cpp | 37 bool SectionSymbolSet::add(LDSection& pOutSect, NamePool& pNamePool) function in class:SectionSymbolSet 94 pSymTab.add(*sym);
|
/frameworks/ex/common/tools/ |
make-iana-tld-pattern.py | 90 def add(self, line): member in class:Bucket 141 getBucket(buckets, domain[0]).add(domain.strip()) 147 getBucket(buckets, 'xn--').add(result[2:-1])
|
/frameworks/volley/src/com/android/volley/toolbox/ |
ByteArrayPool.java | 114 mBuffersByLastUse.add(buf); 119 mBuffersBySize.add(pos, buf);
|
/frameworks/webview/chromium/java/com/android/webview/chromium/ |
WebBackForwardListChromium.java | 39 mHistroryItemList.add( 99 list.add(mHistroryItemList.get(i).clone());
|
/libcore/dom/src/test/java/org/w3c/domts/ |
DOMErrorMonitor.java | 44 errors.add(new DOMErrorImpl(error));
|
/libcore/libart/src/main/java/java/lang/ |
VMClassLoader.java | 61 list.add(new URL(urlStr));
|
/libcore/luni/src/main/java/java/security/cert/ |
PKIXParameters.java | 119 // add only X509Certificate 122 trustAnchors.add(new TrustAnchor((X509Certificate)c, null)); 200 modifiableList.add((PKIXCertPathChecker) certPathChecker.clone()); 227 this.certPathCheckers.add((PKIXCertPathChecker) certPathChecker.clone()); 236 * the {@code PKIXCertPathChecker} to add, if {@code null}, it 248 // add a copy to avoid possible modifications 249 certPathCheckers.add((PKIXCertPathChecker) checker.clone()); 299 * the store to add, if {@code null}, it will be ignored. 310 // add store 311 certStores.add(store) [all...] |
/libcore/luni/src/main/java/java/util/ |
ListIterator.java | 40 void add(E object); method in interface:ListIterator 109 * {@code remove} or {@code add} have already been called after 128 * {@code remove} or {@code add} have already been called after
|
UnsafeArrayList.java | 36 @Override public boolean add(T element) { method in class:UnsafeArrayList
|
/libcore/luni/src/main/java/java/util/concurrent/ |
BlockingQueue.java | 42 * <td>{@link #add add(e)}</td> 65 * to {@code add}, {@code put} or {@code offer} a {@code null}. A 160 * @param e the element to add 161 * @return {@code true} (as specified by {@link Collection#add}) 170 boolean add(E e); method in interface:BlockingQueue 177 * generally preferable to {@link #add}, which can fail to insert an 180 * @param e the element to add 195 * @param e the element to add 209 * @param e the element to add [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidArrayListTest.java | 34 array.add(new Integer(0)); 35 array.add(0, new Integer(1)); 36 array.add(1, new Integer(2)); 37 array.add(new Integer(3)); 38 array.add(new Integer(1)); 84 al.add("string"); 85 al.add(null);
|
/libcore/support/src/test/java/tests/support/ |
Support_CollectionTest.java | 44 myCollection.add(new Integer(101)); 45 myCollection.add(new Integer(102)); 46 myCollection.add(new Integer(103)); 48 // add 49 assertTrue("CollectionTest - a) add did not work", col.add(new Integer( 51 assertTrue("CollectionTest - b) add did not work", col
|
Support_MessageFormat.java | 87 v.add(new FieldContainer(3, 6, Field.ARGUMENT, 4)); 88 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH)); 89 v.add(new FieldContainer(6, 7, Field.ARGUMENT, 4)); 90 v.add(new FieldContainer(7, 9, Field.ARGUMENT, 4)); 91 v.add(new FieldContainer(7, 9, DateFormat.Field.DAY_OF_MONTH)); 92 v.add(new FieldContainer(9, 11, Field.ARGUMENT, 4)); 93 v.add(new FieldContainer(11, 15, Field.ARGUMENT, 4)); 94 v.add(new FieldContainer(11, 15, DateFormat.Field.YEAR)); 95 v.add(new FieldContainer(19, 20, Field.ARGUMENT, 3)); 96 v.add(new FieldContainer(19, 20, DateFormat.Field.HOUR1)) [all...] |
Support_UnmodifiableCollectionTest.java | 56 hs.add(new Integer(0)); 57 hs.add(new Integer(25)); 58 hs.add(new Integer(99)); 62 hs.add(new Integer(100)); 75 ss.add(it.next());
|
/packages/apps/Camera/src/com/android/camera/ |
IntArray.java | 25 public void add(int value) { method in class:IntArray
|
/packages/apps/Camera2/src/com/android/camera/ |
IntArray.java | 25 public void add(int value) { method in class:IntArray
|
/packages/apps/LegacyCamera/src/com/android/camera/ |
IntArray.java | 25 public void add(int value) { method in class:IntArray
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ListSuggestionCursorNoDuplicates.java | 40 public boolean add(Suggestion suggestion) { method in class:ListSuggestionCursorNoDuplicates 42 if (mSuggestionKeys.add(key)) { 43 return super.add(suggestion);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
InputPointers.java | 42 mXCoordinates.add(index, x); 43 mYCoordinates.add(index, y); 44 mPointerIds.add(index, pointerId); 45 mTimes.add(index, time); 50 mXCoordinates.add(x); 51 mYCoordinates.add(y); 52 mPointerIds.add(pointerId); 53 mTimes.add(time);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
Bastion.py | 139 def add(self, n): member in class:_test.Original 148 b.add(81) 149 b.add(18)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
WindowList.py | 9 def add(self, window): member in class:WindowList 62 registry.add(self)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
Bastion.py | 139 def add(self, n): member in class:_test.Original 148 b.add(81) 149 b.add(18)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
WindowList.py | 9 def add(self, window): member in class:WindowList 62 registry.add(self)
|
/external/doclava/src/com/google/doclava/ |
Comment.java | 120 SourcePositionInfo pos = SourcePositionInfo.add(mPosition, mText, 0); 140 endOfInlineTag++; // add one to make it a proper ending index 270 SourcePositionInfo pos = SourcePositionInfo.add(mPosition, mText, startOfBlock); 308 mInlineTagsList.add(new TextTagInfo("Text", "Text", text, pos)); 310 mParamTagsList.add(new ParamTagInfo("@param", "@param", text, mBase, pos)); 312 mSeeTagsList.add(new SeeTagInfo("@see", "@see", text, mBase, pos)); 314 mInlineTagsList.add(new SeeTagInfo(name, "@see", text, mBase, pos)); 316 mInlineTagsList.add(new SeeTagInfo(name, "@value", text, mBase, pos)); 318 mThrowsTagsList.add(new ThrowsTagInfo("@throws", "@throws", text, mBase, pos)); 320 mReturnTagsList.add(new ParsedTagInfo("@return", "@return", text, mBase, pos)) [all...] |
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
MapItem.java | 90 items.add(new MapItem(currentType, section, 102 // Add a MapItem for the final items in the section. 103 items.add(new MapItem(currentType, section, 106 // Add a MapItem for the self-referential section. 107 items.add(new MapItem(mapSection)); 111 mapSection.add( 199 // We have nothing to add.
|