OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:addall
(Results
151 - 175
of
864
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/main/java/libcore/net/http/
RawHeaders.java
70
namesAndValues.
addAll
(copyFrom.namesAndValues);
174
public void
addAll
(String fieldName, List<String> headerFields) {
268
allValues.
addAll
(otherValues);
290
result.
addAll
(fieldName, values);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
ComboAlbum.java
50
items.
addAll
(fetchItems);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorGridDialog.java
80
list.
addAll
(getButtons((ViewGroup) v));
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSuggestionExtras.java
34
DEFAULT_COLUMNS.
addAll
(Arrays.asList(SuggestionCursorBackedCursor.COLUMNS));
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPlan.java
162
filter.getExcludedTests().
addAll
(excludedTests);
205
exclusionStrings.
addAll
(testFilter.getExcludedClasses());
/dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java
75
methodIds.
addAll
(getMethodIds(dex, memberNameIndexes, typeIndex));
76
fieldIds.
addAll
(getFieldIds(dex, memberNameIndexes, typeIndex));
/development/tools/idegen/src/com/android/idegen/
Module.java
131
allDependentImlFiles.
addAll
(child.getAllDependentImlFiles());
149
this.allDependencies.
addAll
(dependencies);
/external/android-mock/src/com/google/android/testing/mocking/
AndroidFrameworkMockGenerator.java
94
mocks.
addAll
(mockGenerator.createMocksForClass(clazz, version));
143
classes.
addAll
(mockGenerator.createMocksForClass(clazz, version));
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
MachineProbe.java
70
dfaStates.
addAll
(path);
176
// r.
addAll
( reaches.get(e.target) );
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java
173
// illegal call the subList's method
addAll
(int,Collection).
177
sub.
addAll
(1, c);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathBuilderSpi.java
83
targets.
addAll
(CertPathValidatorUtilities.findCertificates((X509CertStoreSelector)certSelect, pkixParams.getCertStores()));
228
issuers.
addAll
(CertPathValidatorUtilities.findIssuerCerts(tbvCert, pkixParams));
/external/guava/guava/src/com/google/common/collect/
ForwardingSortedSet.java
38
* #
addAll
}, which can lead to unexpected behavior. In this case, you should
39
* override {@code
addAll
} as well, either providing your own implementation, or
/external/guava/guava-testlib/src/com/google/common/collect/testing/
SafeTreeSet.java
70
@Override public boolean
addAll
(Collection<? extends E> collection) {
74
return delegate.
addAll
(collection);
/external/jmdns/src/javax/jmdns/impl/
DNSIncoming.java
262
in._questions.
addAll
(this._questions);
263
in._answers.
addAll
(this._answers);
264
in._authoritativeAnswers.
addAll
(this._authoritativeAnswers);
265
in._additionals.
addAll
(this._additionals);
535
this._questions.
addAll
(that.getQuestions());
536
this._answers.
addAll
(that.getAnswers());
537
this._authoritativeAnswers.
addAll
(that.getAuthorities());
538
this._additionals.
addAll
(that.getAdditionals());
/external/junit/src/org/junit/experimental/categories/
Categories.java
125
categories.
addAll
(Arrays.asList(directCategories(description)));
126
categories.
addAll
(Arrays.asList(directCategories(parentDescription(description))));
/external/objenesis/tck/src/org/objenesis/tck/
TextReporter.java
103
this.allCandidates.
addAll
(allCandidates);
104
this.allInstantiators.
addAll
(allInstantiators);
/external/v8/test/cctest/
test-list.cc
84
list.
AddAll
(other_list);
96
list.
AddAll
(other_list);
/frameworks/opt/vcard/java/com/android/vcard/
VCardProperty.java
126
mValueList.
addAll
(Arrays.asList(propertyValues));
134
mValueList.
addAll
(propertyValueList);
/libcore/luni/src/main/java/java/util/
AbstractList.java
259
public boolean
addAll
(int location, Collection<? extends E> collection) {
262
boolean result = fullList.
addAll
(location + offset,
276
public boolean
addAll
(Collection<? extends E> collection) {
278
boolean result = fullList.
addAll
(offset + size, collection);
448
public boolean
addAll
(int location, Collection<? extends E> collection) {
704
*
addAll
(int, Collection) and removeRange(int, int) methods first check the
706
* original AbstractList.
addAll
(Collection c) method of the returned
707
* subList calls the original
addAll
(offset + size, c).
AbstractQueue.java
124
* queue. Attempts to
addAll
of a queue to itself result in
151
public boolean
addAll
(Collection<? extends E> c) {
MiniEnumSet.java
121
public boolean
addAll
(Collection<? extends E> collection) {
136
return super.
addAll
(collection);
/libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java
40
* operations. Aggregate operations like {@link #
addAll
} and {@link #clear} are
282
public synchronized boolean
addAll
(Collection<? extends E> collection) {
283
return
addAll
(elements.length, collection);
286
public synchronized boolean
addAll
(int index, Collection<? extends E> collection) {
595
@Override public boolean
addAll
(int index, Collection<? extends E> collection) {
600
boolean result = CopyOnWriteArrayList.this.
addAll
(index + slice.from, collection);
606
@Override public boolean
addAll
(Collection<? extends E> collection) {
608
return
addAll
(size(), collection);
/libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java
148
m.
addAll
(n);
182
m.
addAll
(n);
/libcore/luni/src/test/java/tests/security/cert/
X509CRL2Test.java
86
extensionOids.
addAll
(pemCert.getCriticalExtensionOIDs());
87
extensionOids.
addAll
(pemCert.getNonCriticalExtensionOIDs());
/libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java
114
classpath.
addAll
(classpathToUrls("java.class.path"));
115
classpath.
addAll
(classpathToUrls("sun.boot.class.path"));
Completed in 420 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>