HomeSort by relevance Sort by last modified time
    Searched refs:collection (Results 276 - 300 of 401) sorted by null

<<11121314151617

  /external/webkit/LayoutTests/dom/xhtml/level1/core/
selfxhtml.js 232 function size(collection)
234 return collection.length;
  /external/webkit/LayoutTests/dom/xhtml/level2/core/
selfxhtml.js 232 function size(collection)
234 return collection.length;
  /external/webkit/LayoutTests/dom/xhtml/level2/events/
selfxhtml.js 232 function size(collection)
234 return collection.length;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
selfxhtml.js 232 function size(collection)
234 return collection.length;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
selfxhtml.js 232 function size(collection)
234 return collection.length;
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 23 import java.util.Collection;
142 * java.util.Collections#synchronizedCollection(java.util.Collection)
207 * java.util.Collections#unmodifiableCollection(java.util.Collection)
272 * java.util.Collections#frequency(java.util.Collection,Object)
353 class Mock_Collection implements Collection {
358 public boolean addAll(Collection c) {
369 public boolean containsAll(Collection c) {
385 public boolean removeAll(Collection c) {
389 public boolean retainAll(Collection c) {
406 class Mock_WrongCollection implements Collection {
    [all...]
  /external/robolectric/lib/main/
hamcrest-core-1.2.jar 
json-20080701.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /external/guava/guava/src/com/google/common/collect/
MapConstraints.java 24 import java.util.Collection;
201 * with the constraint, and the collection returned by {@link Entry#getValue}
208 private static <K, V> Entry<K, Collection<V>> constrainedAsMapEntry(
209 final Entry<K, Collection<V>> entry,
213 return new ForwardingMapEntry<K, Collection<V>>() {
214 @Override protected Entry<K, Collection<V>> delegate() {
217 @Override public Collection<V> getValue() {
233 * be verified with the constraint, and the collection returned by {@link
242 private static <K, V> Set<Entry<K, Collection<V>>> constrainedAsMapEntries(
243 Set<Entry<K, Collection<V>>> entries
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
Deque.h 330 void deleteAllValues(const Deque<T, inlineCapacity>& collection)
333 iterator end = collection.end();
334 for (iterator it = collection.begin(); it != end; ++it)
Vector.h     [all...]
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TreeMapTest.java 32 import java.util.Collection;
191 Collection values = map.values();
197 Collection values2 = map2.values();
327 Collection<Double> valueCollection = smap.values();
716 // Test for method java.util.Collection java.util.TreeMap.values()
717 Collection vals = tm.values();
719 assertTrue("Returned collection of incorrect size",
722 assertTrue("Collection contains incorrect elements", vals
735 assertTrue("Returned collection of incorrect size",
738 assertTrue("Collection contains incorrect elements", val
1316 Collection collection = new LinkedList(); local
    [all...]
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /external/opencv/cxcore/src/
cxpersistence.cpp 247 icvFSCreateCollection( CvFileStorage* fs, int tag, CvFileNode* collection )
255 if( collection->tag != CV_NODE_NONE )
261 CV_CALL( collection->data.map = cvCreateMap( 0, sizeof(CvFileNodeHash),
269 // if <collection> contains some scalar element, add it to the newly created collection
270 if( CV_NODE_TYPE(collection->tag) != CV_NODE_NONE )
271 cvSeqPush( seq, collection );
273 collection->data.seq = seq;
276 collection->tag = tag;
277 cvSetSeqBlockSize( collection->data.seq, 8 )
    [all...]
  /external/oprofile/utils/
opcontrol 143 -s/--start start data collection
145 -t/--stop stop data collection
146 -h/--shutdown stop data collection and kill daemon
175 -c/--callgraph=#depth enable callgraph sample collection with a
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MultimapsTest.java 39 import java.util.Collection;
437 "foo", (Collection<Integer>) Collections.singleton(1)));
478 Map<String, Collection<Integer>> asMap = Multimaps.forMap(map).asMap();
484 Set<Entry<String, Collection<Integer>>> entries = asMap.entrySet();
556 Map<Color, Collection<Integer>> map = Maps.newEnumMap(Color.class);
569 Collection<Integer> collection = multimap.get(Color.BLUE); local
570 assertEquals(collection, collection);
579 Map<Color, Collection<Integer>> map = Maps.newEnumMap(Color.class)
    [all...]
  /external/v8/test/cctest/
test-profile-generator.cc 810 CpuProfilesCollection collection; local
816 CHECK(collection.StartProfiling(title.start(), i + 1)); // UID must be > 0.
819 CHECK(!collection.StartProfiling(
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 78 import java.util.Collection;
    [all...]

Completed in 1576 milliseconds

<<11121314151617