/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentStyleSheetCollection.cpp | 55 void DocumentStyleSheetCollection::collectStyleSheetsFromCandidates(StyleEngine* engine, StyleSheetCollectionBase& collection, DocumentStyleSheetCollection::CollectFor collectFor) 134 collection.appendSheetForList(sheet); 136 collection.appendActiveStyleSheet(activeSheet); 140 static void collectActiveCSSStyleSheetsFromSeamlessParents(StyleSheetCollectionBase& collection, Document* document) 145 collection.appendActiveStyleSheets(seamlessParentIFrame->document().styleEngine()->activeAuthorStyleSheets()); 148 void DocumentStyleSheetCollection::collectStyleSheets(StyleEngine* engine, StyleSheetCollectionBase& collection, DocumentStyleSheetCollection::CollectFor colletFor) 151 collection.appendActiveStyleSheets(engine->injectedAuthorStyleSheets()); 152 collection.appendActiveStyleSheets(engine->documentAuthorStyleSheets()); 153 collectActiveCSSStyleSheetsFromSeamlessParents(collection, document()); 154 collectStyleSheetsFromCandidates(engine, collection, colletFor) 159 StyleSheetCollectionBase collection; local [all...] |
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
ForwardingImmutableCollection.java | 19 import java.util.Collection; 32 transient final Collection<E> delegate; 34 ForwardingImmutableCollection(Collection<E> delegate) { 46 @Override public boolean containsAll(Collection<?> targets) {
|
/libcore/luni/src/main/java/org/w3c/dom/ |
DOMImplementationList.java | 17 * of an ordered collection of DOM implementations, without defining or 18 * constraining how this collection is implemented. The items in the 26 * Returns the <code>index</code>th item in the collection. If 30 * @param index Index into the collection.
|
DOMStringList.java | 17 * ordered collection of <code>DOMString</code> values, without defining or 18 * constraining how this collection is implemented. The items in the 26 * Returns the <code>index</code>th item in the collection. If 29 * @param index Index into the collection.
|
NodeList.java | 17 * collection of nodes, without defining or constraining how this collection 25 * Returns the <code>index</code>th item in the collection. If 28 * @param index Index into the collection.
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/ |
ITestPackageRepo.java | 19 import java.util.Collection; 44 * Return a sorted {@link Collection} of all package names found in repo. 46 public Collection<String> getPackageNames();
|
/external/chromium_org/chrome/browser/ui/panels/ |
test_panel_collection_squeeze_observer.cc | 13 DockedPanelCollection* collection, Panel* active_panel) 16 content::Source<PanelCollection>(collection)), 17 panel_collection_(collection),
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestStringCollectionGenerator.java | 21 import java.util.Collection; 39 public Collection<String> create(Object... elements) { 48 protected abstract Collection<String> create(String[] elements);
|
AbstractContainerTester.java | 21 import java.util.Collection; 26 * Base class for testers of classes (including {@link Collection} 51 protected abstract Collection<E> actualContents(); 82 * @see #expectContents(java.util.Collection) 91 * Asserts that the collection under test contains exactly the given elements, 108 protected void expectContents(Collection<E> expected) { 117 * Asserts that the collection under test contains exactly the elements it was 119 * {@link #expectContents(java.util.Collection)}. In other words, for the 121 * of each given element has increased by one since the test collection was 126 * {@code collection} is a {@code Set} [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
AbstractMultisetTester.java | 24 * Base class for multiset collection tests. 31 return (Multiset<E>) collection; 35 collection =
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
AbstractSetTester.java | 31 * collection in setUp(), but that caused problems when a tester changed the 32 * value of set or collection but not both. 35 return (Set<E>) collection;
|
CollectionIsEmptyTester.java | 26 * collection. Can't be invoked directly; please see 36 assertTrue("isEmpty() should return true", collection.isEmpty()); 41 assertFalse("isEmpty() should return false", collection.isEmpty());
|
/external/guava/guava-tests/test/com/google/common/collect/ |
ConstrainedMultimapAsMapImplementsMapTest.java | 22 import java.util.Collection; 39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() { 46 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
|
ImmutableMultimapAsMapImplementsMapTest.java | 22 import java.util.Collection; 39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() { 43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
|
ImmutableSetMultimapAsMapImplementsMapTest.java | 22 import java.util.Collection; 39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() { 43 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
|
MultimapsTransformValuesAsMapTest.java | 22 import java.util.Collection; 38 @Override protected Map<String, Collection<Integer>> makeEmptyMap() { 44 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
|
UnmodifiableMultimapAsMapImplementsMapTest.java | 22 import java.util.Collection; 39 @Override protected Map<String, Collection<Integer>> makeEmptyMap() { 44 @Override protected Map<String, Collection<Integer>> makePopulatedMap() {
|
/frameworks/base/core/java/android/widget/ |
Advanceable.java | 20 * This interface can be implemented by any collection-type view which has a notion of 28 * Advances this collection, eg. shows the next view. 34 * collection to do any required setup.
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArrayList.java | 25 import java.util.Collection; 87 * Creates a new instance containing the elements of {@code collection}. 90 public CopyOnWriteArrayList(Collection<? extends E> collection) { 91 this((E[]) collection.toArray()); 124 public boolean containsAll(Collection<?> collection) { 126 return containsAll(collection, snapshot, 0, snapshot.length); 129 static boolean containsAll(Collection<?> collection, Object[] snapshot, int from, int to) [all...] |
BlockingQueue.java | 9 import java.util.Collection; 77 * the {@link java.util.Collection} interface. So, for example, it is 86 * <em>bulk</em> Collection operations {@code addAll}, 149 * @param <E> the type of elements held in this collection 161 * @return {@code true} (as specified by {@link Collection#add}) 277 * (<a href="../Collection.html#optional-restrictions">optional</a>) 279 * (<a href="../Collection.html#optional-restrictions">optional</a>) 292 * (<a href="../Collection.html#optional-restrictions">optional</a>) 294 * (<a href="../Collection.html#optional-restrictions">optional</a>) 300 * to the given collection. This operation may be mor [all...] |
/libcore/luni/src/test/java/libcore/java/security/cert/ |
X509CRLSelectorTest.java | 20 import java.util.Collection; 33 Collection<X500Principal> issuers = crlSelector.getIssuers(); 44 Collection<Object> issuers = crlSelector.getIssuerNames();
|
/libcore/luni/src/test/java/tests/security/cert/ |
CollectionCertStoreParametersTest.java | 30 import java.util.Collection; 59 Collection c = cp.getCollection(); 62 // check that empty collection is immutable 66 fail("empty collection must be immutable"); 72 * Test #1 for <code>CollectionCertStoreParameters(Collection)</code> 82 * Test #2 for <code>CollectionCertStoreParameters(Collection)</code> 87 // object passing Collection containing Object which is not 95 * Test #3 for <code>CollectionCertStoreParameters(Collection)</code> 100 // create using empty collection 105 // check that collection still empt [all...] |
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
AbstractSuggestionExtras.java | 20 import java.util.Collection; 34 public Collection<String> getExtraColumnNames() { 43 protected abstract Collection<String> doGetExtraColumnNames();
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
RecursionOverflowMessage.java | 34 import java.util.Collection; 44 public Collection targetRules; 45 public Collection callSiteStates; 50 Collection targetRules, 51 Collection callSiteStates)
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/ |
X509ExtensionUtil.java | 7 import java.util.Collection; 35 public static Collection getIssuerAlternativeNames(X509Certificate cert) 43 public static Collection getSubjectAlternativeNames(X509Certificate cert) 51 private static Collection getAlternativeNames(byte[] extVal) 60 Collection temp = new ArrayList();
|