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

<<11121314151617181920>>

  /external/nist-sip/java/gov/nist/core/
DuplicateNameValueList.java 27 import java.util.Collection;
138 Collection nv1 = this.getNameValue(key);
139 Collection nv2 = (Collection) other.nameValueMap.get(key);
152 Collection nv = this.getNameValue(name.toLowerCase());
163 public Collection getNameValue(String name) {
164 return (Collection) this.nameValueMap.get(name.toLowerCase());
253 public Collection<NameValue> values() {
MultiMap.java 23 * Instead of returning an Object, it returns a Collection.
25 * and then a Object get( key ); will return you a Collection
  /external/smack/src/org/jivesoftware/smackx/provider/
HeadersProvider.java 16 import java.util.Collection;
34 return new HeadersExtension((Collection<Header>)content);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
ConfigureNodeFields.java 46 * The collection with which a node is affiliated
50 collection, enum constant in enum:ConfigureNodeFields
77 * Who may associate leaf nodes with a collection
85 * collection
92 * The child nodes (leaf or collection) associated with a collection
100 * collection
121 * Whether the node is a leaf (default) or collection
EventElementType.java 24 /** A node has been associated or dissassociated with a collection node */
25 collection, enum constant in enum:EventElementType
LeafNode.java 17 import java.util.Collection;
110 public <T extends Item> List<T> getItems(Collection<String> ids)
203 Collection<T> items = new ArrayList<T>(1);
217 * For synchronous calls use {@link #send(Collection) send(Collection))}.
219 * @param items - The collection of items being sent
221 public <T extends Item> void publish(Collection<T> items)
274 Collection<T> items = new ArrayList<T>(1);
288 * For asynchronous calls, use {@link #publish(Collection) publish(Collection))}.
    [all...]
  /libcore/luni/src/main/java/java/util/
HashSet.java 68 * elements in the specified collection.
70 * @param collection
71 * the collection of elements to add.
73 public HashSet(Collection<? extends E> collection) {
74 this(new HashMap<E, HashSet<E>>(collection.size() < 6 ? 11 : collection
76 for (E e : collection) {
Map.java 233 * Returns a {@code Collection} of the values contained in this {@code Map}. The {@code Collection}
235 * {@code Collection} supports {@link Collection#remove}, {@link Collection#removeAll},
236 * {@link Collection#retainAll}, and {@link Collection#clear} operations,
237 * and it does not support {@link Collection#add} or {@link Collection#addAll} operations.
239 * This method returns a {@code Collection} which is the subclass o
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
CheckBroker.java 20 import java.util.Collection;
23 private Collection<OnCheckedChangedListener> mListeners =
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSourceResult.java 23 import java.util.Collection;
72 public Collection<String> getExtraColumns() {
SuggestionCursorWrapper.java 21 import java.util.Collection;
80 public Collection<String> getExtraColumns() {
SuggestionExtras.java 20 import java.util.Collection;
30 Collection<String> getExtraColumnNames();
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
MockSuggestionExtras.java 18 import java.util.Collection;
45 public Collection<String> doGetExtraColumnNames() {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BoundedTreeSet.java 21 import java.util.Collection;
45 public boolean addAll(final Collection<? extends SuggestedWordInfo> e) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
EmptyLaunchAction.java 21 import java.util.Collection;
28 public boolean doLaunchAction(DelayedLaunchInfo info, Collection<IDevice> devices) {
IAndroidLaunchAction.java 21 import java.util.Collection;
36 boolean doLaunchAction(DelayedLaunchInfo info, Collection<IDevice> devices);
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsRecorder.java 278 public CombiningRewriter(NetworkStatsCollection collection) {
279 mCollection = checkNotNull(collection, "missing NetworkStatsCollection");
344 final NetworkStatsCollection collection = new NetworkStatsCollection(mBucketDuration); local
345 collection.readLegacyNetwork(file);
347 final long startMillis = collection.getStartMillis();
348 final long endMillis = collection.getEndMillis();
350 if (!collection.isEmpty()) {
353 mRotator.rewriteActive(new CombiningRewriter(collection), startMillis);
362 final NetworkStatsCollection collection = new NetworkStatsCollection(mBucketDuration); local
363 collection.readLegacyUid(file, mOnlyTags)
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SlideModel.java 21 import java.util.Collection;
71 * Create a SlideModel with exist media collection.
74 * @param mediaList The exist media collection.
288 public boolean addAll(Collection<? extends MediaModel> collection) {
319 public boolean containsAll(Collection<?> collection) {
320 return mMedia.containsAll(collection);
340 public boolean removeAll(Collection<?> collection) {
    [all...]
  /development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetProvider.java 65 // provide the views for this collection.
74 // The empty view is displayed when the collection has no items. It should be a sibling
75 // of the collection view.
78 // Here we setup the a pending intent template. Individuals items of a collection
79 // cannot setup their own pending intents, instead, the collection as a whole can
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 20 import java.util.Collection;
24 * @tests java.util.Collection
28 Collection<Integer> col; // must contain the Integers 0 to 99
34 public Support_CollectionTest(String p1, Collection<Integer> c) {
44 Collection<Integer> myCollection = new TreeSet<Integer>();
  /external/chromium/chrome/browser/notifications/
notification_ui_manager.h 36 // Creates an initialized UI manager with a new balloon collection
44 // Initializes the UI manager with a balloon collection; this object
45 // takes ownership of the balloon collection.
65 // Returns balloon collection.
100 // An owned pointer to the collection of active balloons.
  /external/chromium_org/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.
  /external/guava/guava/src/com/google/common/collect/
ListMultimap.java 21 import java.util.Collection;
45 * {@link java.util.Collection} specified in the {@link Multimap} interface.
55 * {@link java.util.Collection} specified in the {@link Multimap} interface.
65 * {@link java.util.Collection} specified in the {@link Multimap} interface.
77 Map<K, Collection<V>> asMap();
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingExecutorService.java 21 import java.util.Collection;
55 Collection<? extends Callable<T>> tasks) throws InterruptedException {
61 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
67 public <T> T invokeAny(Collection<? extends Callable<T>> tasks)
74 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
  /external/guava/guava-tests/test/com/google/common/collect/
SynchronizedSetTest.java 24 import java.util.Collection;
86 @Override public boolean addAll(Collection<? extends E> c) {
101 @Override public boolean containsAll(Collection<?> c) {
118 @Override public boolean removeAll(Collection<?> c) {
123 @Override public boolean retainAll(Collection<?> c) {

Completed in 1087 milliseconds

<<11121314151617181920>>