HomeSort by relevance Sort by last modified time
    Searched full:collection (Results 301 - 325 of 3911) sorted by null

<<11121314151617181920>>

  /external/v8/src/
func-name-inferrer.h 50 // Returns whether we have entered name collection state.
56 // Enters name collection state.
61 // Pushes an encountered name onto names stack when in collection state.
79 // Infers a function name and leaves names collection state.
87 // Leaves names collection state.
  /frameworks/base/docs/html/sdk/api_diff/9/changes/
java.util.concurrent.AbstractExecutorService.html 86 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_removed(java.util.Collection<java.util.concurrent.Callable<T>>)"></A>
87 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;invokeAll(<code>Collection&lt;Callable&lt;T&gt;&gt;</code>)</nobr>
93 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_removed(java.util.Collection<java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit)"></A>
94 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;invokeAll(<code>Collection&lt;Callable&lt;T&gt;&gt;,</nobr> long<nobr>,</nobr> TimeUnit<nobr><nobr></code>)</nobr>
100 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAny_removed(java.util.Collection<java.util.concurrent.Callable<T>>)"></A>
101 <nobr><code>T</code>&nbsp;invokeAny(<code>Collection&lt;Callable&lt;T&gt;&gt;</code>)</nobr>
107 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAny_removed(java.util.Collection<java.util.concurrent.Callable<T>>, long, java.util.concurrent.TimeUnit)"></A>
108 <nobr><code>T</code>&nbsp;invokeAny(<code>Collection&lt;Callable&lt;T&gt;&gt;,</nobr> long<nobr>,</nobr> TimeUnit<nobr><nobr></code>)</nobr>
122 <A NAME="java.util.concurrent.AbstractExecutorService.invokeAll_added(java.util.Collection<? extends java.util.concurrent.Callable<T>>)"></A>
123 <nobr><code>List&lt;Future&lt;T&gt;&gt;</code>&nbsp;<A HREF="../../../../reference/java/util/concurrent/AbstractExecutorService.html#invokeAll(java.util.Collection<? extends java.util.concurrent.Callable<T>>)" target="_top"><code>invokeAll</code></A>(<code>Colle (…)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
GeneralNames.java 26 import java.util.Collection;
79 * Returns the collection of pairs: (Integer (tag), Object (name value))*
81 public Collection<List<?>> getPairsList() {
82 Collection<List<?>> result = new ArrayList<List<?>>();
140 @Override public Collection getValues(Object object) {
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 20 import java.util.Collection;
24 * java.util.Collection
27 Collection<Integer> col; // must contain the Integers 0 to 99
33 public Support_CollectionTest(String p1, Collection<Integer> c) {
43 Collection<Integer> myCollection = new TreeSet<Integer>();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DictionaryCollection.java 26 import java.util.Collection;
31 * Class for a collection of dictionaries that behave like one dictionary.
52 public DictionaryCollection(final String dictType, final Collection<Dictionary> dictionaries) {
112 Log.w(TAG, "This collection already contains this dictionary: " + newDict);
122 Log.w(TAG, "This collection does not contain this dictionary: " + dict);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestEventTarget.cpp 113 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
114 RefPtr<Node> element = collection->item(index);
117 v8SetReturnValueFast(info, element.release(), collection);
129 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
131 bool result = collection->anonymousIndexedSetter(index, propertyValue);
146 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
148 bool result = collection->anonymousIndexedDeleter(index, exceptionState);
171 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
173 RefPtr<Node> element = collection->namedItem(propertyName);
176 v8SetReturnValueFast(info, element.release(), collection);
216 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
232 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
245 TestEventTarget* collection = V8TestEventTarget::toNative(info.Holder()); local
    [all...]
  /libcore/luni/src/main/java/java/util/
LinkedList.java 252 * elements contained in the specified {@code collection}. The order of the
254 * iteration order of {@code collection}.
256 * @param collection
257 * the collection of elements to add.
259 public LinkedList(Collection<? extends E> collection) {
261 addAll(collection);
324 * Inserts the objects in the specified collection at the specified location
326 * returned from the collection's iterator.
330 * @param collection
    [all...]
Queue.java 14 * A collection designed for holding elements prior to processing.
15 * Besides basic {@link java.util.Collection Collection} operations,
63 * java.util.Collection#add Collection.add} method, which can fail to
102 * @see java.util.Collection
112 * @param <E> the type of elements held in this collection
114 public interface Queue<E> extends Collection<E> {
122 * @return <tt>true</tt> (as specified by {@link Collection#add})
  /libcore/luni/src/test/java/tests/api/java/util/
ArrayListTest.java 21 import java.util.Collection;
67 * java.util.ArrayList#ArrayList(java.util.Collection)
70 // Test for method java.util.ArrayList(java.util.Collection)
72 assertTrue("arrayList created from collection has incorrect size", al
76 "arrayList created from collection has incorrect elements",
132 * java.util.ArrayList#addAll(int, java.util.Collection)
136 // java.util.Collection)
194 // * java.util.ArrayList#addAll(int, java.util.Collection)
200 // obj.addAll((int) -1, (Collection) null);
208 * java.util.ArrayList#addAll(java.util.Collection)
605 ArrayList collection = new ArrayList(); local
    [all...]
EnumMapTest.java 22 import java.util.Collection;
389 Collection c = new ArrayList();
645 Collection c = new ArrayList();
991 Collection collection = enumColorMap.values(); local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Iterables.java 32 import java.util.Collection;
108 return (iterable instanceof Collection)
109 ? ((Collection<?>) iterable).size()
119 if (iterable instanceof Collection) {
120 Collection<?> collection = (Collection<?>) iterable; local
122 return collection.contains(element);
134 * collection.
136 * <p>This method calls {@link Collection#removeAll} if {@code iterable} is
293 Collection<? extends T> collection = toCollection(iterable); local
    [all...]
HashMultimap.java 27 import java.util.Collection;
91 super(new HashMap<K, Collection<V>>());
95 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
101 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(
109 * <p>Creates an empty {@code HashSet} for a collection of values for one key.
111 * @return a new {@code HashSet} containing a collection of values for one key
135 Map<K, Collection<V>> map = Maps.newHashMapWithExpectedSize(distinctKeys);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ArrayListTest.java 21 import java.util.Collection;
75 * @tests java.util.ArrayList#ArrayList(java.util.Collection)
78 // Test for method java.util.ArrayList(java.util.Collection)
80 assertTrue("arrayList created from collection has incorrect size", al
84 "arrayList created from collection has incorrect elements",
90 Collection<String> collection = shrinksOnSize("A", "B", "C", "D"); local
91 ArrayList<String> list = new ArrayList<String>(collection);
189 * @tests java.util.ArrayList#addAll(int, java.util.Collection)
193 // java.util.Collection)
879 ArrayList collection = new ArrayList(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 519 public boolean addAll(Collection<? extends HDR> collection) {
520 return this.hlist.addAll(collection);
523 public boolean addAll(int index, Collection<? extends HDR> collection) {
524 return this.hlist.addAll(index, collection);
528 public boolean containsAll(Collection<?> collection) {
529 return this.hlist.containsAll(collection);
613 * @see List#removeAll(java.util.Collection)
    [all...]
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_collection.h 35 // Rearranges the positions of the panels in the collection
41 // Adds a panel to the collection. The panel may be a newly created panel or
91 // due to lack of space in the collection.
98 // num_panels() and panels() only includes panels in the collection that
147 // Minimizes or restores all panels in the collection.
164 // when adding the panel to the collection.
171 // All panels in the collection must fit within this area.
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-open-file-private.hh 139 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
185 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
202 static const hb_tag_t TTCTag = HB_TAG ('t','t','c','f'); /* TrueType Collection */
211 case CFFTag: /* All the non-collection tags */
222 /* Note: for non-collection SFNT data we ignore index. This is because
225 case CFFTag: /* All the non-collection tags */
238 case CFFTag: /* All the non-collection tags */
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ArrayListMultimap.java 25 import java.util.Collection;
98 super(new HashMap<K, Collection<V>>());
103 super(Maps.<K, Collection<V>>newHashMapWithExpectedSize(expectedKeys));
117 * Creates a new, empty {@code ArrayList} to hold the collection of values for
128 for (Collection<V> collection : backingMap().values()) {
129 ArrayList<V> arrayList = (ArrayList<V>) collection;
ImmutableSet.java 22 import java.util.Collection;
108 public static <E> ImmutableSet<E> copyOf(Collection<? extends E> elements) {
204 if (elements instanceof Collection) {
205 Collection<?> collection = (Collection<?>) elements; local
206 contents.ensureCapacity(contents.size() + collection.size());
  /external/harfbuzz_ng/src/
hb-open-file-private.hh 139 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
185 Tag ttcTag; /* TrueType Collection ID string: 'ttcf' */
202 static const hb_tag_t TTCTag = HB_TAG ('t','t','c','f'); /* TrueType Collection */
211 case CFFTag: /* All the non-collection tags */
222 /* Note: for non-collection SFNT data we ignore index. This is because
225 case CFFTag: /* All the non-collection tags */
238 case CFFTag: /* All the non-collection tags */
  /frameworks/base/core/java/android/net/
LinkProperties.java 30 import java.util.Collection;
64 private Collection<LinkAddress> mLinkAddresses = new ArrayList<LinkAddress>();
65 private Collection<InetAddress> mDnses = new ArrayList<InetAddress>();
67 private Collection<RouteInfo> mRoutes = new ArrayList<RouteInfo>();
77 public Collection<T> removed = new ArrayList<T>();
78 public Collection<T> added = new ArrayList<T>();
125 public Collection<String> getAllInterfaceNames() {
126 Collection interfaceNames = new ArrayList<String>(mStackedLinks.size() + 1);
137 public Collection<InetAddress> getAddresses() {
138 Collection<InetAddress> addresses = new ArrayList<InetAddress>()
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pGroupList.java 18 import java.util.Collection;
73 public Collection<WifiP2pGroup> getGroupList() {
127 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values();
151 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values();
187 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values();
199 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values();
213 final Collection<WifiP2pGroup> groups = mGroups.snapshot().values();
  /libcore/luni/src/main/java/java/security/cert/
CertificateFactorySpi.java 21 import java.util.Collection;
54 * Generates and initializes a collection of certificates from the provided
59 * @return a collection of certificates.
63 public abstract Collection<? extends Certificate>
80 * Generates and initializes a collection of <i>Certificate Revocation
85 * @return a collection of CRLs.
89 public abstract Collection<? extends CRL>
  /external/chromium_org/chrome_frame/
simple_resource_loader.cc 54 std::vector<std::wstring>* collection) {
55 if (collection->end() ==
56 std::find_if(collection->begin(), collection->end(),
58 collection->push_back(value);
64 // Returns true if the collection is modified.
67 std::vector<std::wstring>* collection) {
72 modified = PushBackIfAbsent(language, collection);
77 modified |= PushBackIfAbsent(language.substr(0, dash_pos), collection);
  /external/chromium_org/third_party/WebKit/Source/wtf/
HashSet.h 225 void deleteAllValues(HashTableType& collection)
228 iterator end = collection.end();
229 for (iterator it = collection.begin(); it != end; ++it)
234 inline void deleteAllValues(const HashSet<T, U, V>& collection)
236 deleteAllValues<typename HashSet<T, U, V>::ValueType>(collection.m_impl);
240 inline void copyToVector(const C& collection, W& vector)
244 vector.resize(collection.size());
246 iterator it = collection.begin();
247 iterator end = collection.end();

Completed in 2174 milliseconds

<<11121314151617181920>>