HomeSort by relevance Sort by last modified time
    Searched refs:collection (Results 226 - 250 of 413) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 32 // interface - a collection of unique objects with O(1) insertion,
134 // Add the value to the end of the collection. If the value was already in
138 // Add the value to the beginning of the collection. If the value was already in
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
CookiesTest.java 34 import java.util.Collection;
538 private void assertContains(Collection<String> collection, String element) {
539 for (String c : collection) {
544 fail("No " + element + " in " + collection);
547 private void assertContainsAll(Collection<String> collection, String... toFind) {
549 assertContains(collection, s);
  /external/chromium_org/chrome/browser/ui/panels/
base_panel_browser_test.cc 428 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
439 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
458 EXPECT_EQ(PanelCollection::STACKED, panel->collection()->type());
panel.h 172 PanelCollection* collection() const { return collection_; } function in class:Panel
174 // Sets the current panel collection that contains this panel.
196 // in the docked collection and squeezing mode is not on.
357 // Current collection of panels to which this panel belongs. This determines
364 // been minimized or squeezed due to lack of space in the collection.
381 // controller to add a panel to the collection without causing its bounds to
  /external/chromium_org/media/audio/win/
core_audio_util_win.cc 201 // Generate a collection of active (present and not disabled) audio endpoint
204 ScopedComPtr<IMMDeviceCollection> collection;
207 collection.Receive());
215 collection->GetCount(&number_of_active_devices);
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
webrunner.js 18 // name = The name of the test collection
128 updateTestPos({curID: curID, collection: testNames[curID], version: testVersions[curID]});
138 data.collection = testNames[curID];
480 var curID = result.collection;
526 var result = item.curID = item.collection;
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
Conversation.java 40 import java.util.Collection;
204 public static final Collection<Conversation> EMPTY = Collections.emptyList();
602 * found in the collection of conversations specified as the haystack. False
609 public final static boolean contains(Collection<Conversation> haystack, Conversation needle) {
628 * Returns a collection of a single conversation. This method always returns
629 * a valid collection even if the input conversation is null.
632 * @return a collection of the conversation.
634 public static Collection<Conversation> listOf(Conversation in) {
635 final Collection<Conversation> target = (in == null) ? EMPTY : ImmutableList.of(in);
689 * @param collection Any collection of conversation
    [all...]
  /external/libvorbis/doc/
05-comment.tex 104 versions of the same track title in a single collection. (e.g. remix
108 The collection name to which this track belongs
111 The track number of this piece if part of a specific larger collection or album
  /libcore/benchmarks/libs/
caliper.jar 
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestInterface.cpp 947 TestInterface* collection = V8TestInterface::toNative(info.Holder()); local
984 TestInterface* collection = V8TestInterface::toNative(info.Holder()); local
997 TestInterface* collection = V8TestInterface::toNative(info.Holder()); local
    [all...]
  /external/chromium_org/tools/page_cycler/database/
common.js 6 * @fileoverview A collection of common functions used by all database
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/110/1/.cp/ant_tasks/
publisher-ant.jar 
  /external/guava/guava/src/com/google/common/collect/
ImmutableSetMultimap.java 30 import java.util.Collection;
150 super(new LinkedHashMap<K, Collection<V>>());
152 @Override Collection<V> createCollection() {
166 super(new TreeMap<K, Collection<V>>(keyComparator));
169 @Override Collection<V> createCollection() {
224 Collection<V> collection = builderMultimap.get(checkNotNull(key)); local
226 collection.add(checkNotNull(value));
237 for (Entry<? extends K, ? extends Collection<? extends V>> entry
321 for (Entry<? extends K, ? extends Collection<? extends V>> entr
    [all...]
Multisets.java 25 import java.util.Collection;
144 @Override public boolean addAll(Collection<? extends E> elementsToAdd) {
156 @Override public boolean removeAll(Collection<?> elementsToRemove) {
160 @Override public boolean retainAll(Collection<?> elementsToRetain) {
410 @Override public boolean addAll(Collection<? extends E> c) {
459 @Override public boolean addAll(Collection<? extends E> c) {
732 Multiset<E> self, Collection<? extends E> elements) {
751 Multiset<?> self, Collection<?> elementsToRemove) {
752 Collection<?> collection = (elementsToRemove instanceof Multiset
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableList.java 25 import java.util.Collection;
148 return (elements instanceof Collection)
149 ? copyOf((Collection<? extends E>) elements)
157 public static <E> ImmutableList<E> copyOf(Collection<? extends E> elements) {
176 Collection<? extends E> collection) {
177 Object[] elements = collection.toArray();
182 @SuppressWarnings("unchecked") // collection had only Es in it
228 public final boolean addAll(int index, Collection<? extends E> newElements) {
ImmutableSetMultimap.java 25 import java.util.Collection;
145 super(new LinkedHashMap<K, Collection<V>>());
147 @Override Collection<V> createCollection() {
161 super(new TreeMap<K, Collection<V>>(keyComparator));
164 @Override Collection<V> createCollection() {
219 Collection<V> collection = builderMultimap.get(checkNotNull(key)); local
221 collection.add(checkNotNull(value));
232 for (Entry<? extends K, ? extends Collection<? extends V>> entry
316 for (Entry<? extends K, ? extends Collection<? extends V>> entr
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SortedMapInterfaceTest.java 20 import java.util.Collection;
177 private static <E> List<E> toList(Collection<E> collection) {
178 return new ArrayList<E>(collection);
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 609 private void decodeValueCollection(ASN1ValueCollection collection) throws IOException {
613 ASN1Type type = collection.type;
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view.cc 623 if (panel_->collection()->type() != PanelCollection::DOCKED)
863 panel_->collection()->RefreshLayout();
973 panel_->collection()->type() == PanelCollection::DOCKED &&
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
mediastreamsignaling_unittest.cc 178 // Verifies that |options| contain all tracks in |collection| and that
180 static void VerifyMediaOptions(StreamCollectionInterface* collection,
182 if (!collection) {
187 for (size_t i = 0; i < collection->count(); ++i) {
188 MediaStreamInterface* stream = collection->at(i);
412 // Create a collection of streams.
413 // CreateStreamCollection(1) creates a collection that
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_storage.h 39 // If retrieval fails, 'collection' will be NULL.
40 virtual void OnAllInfo(AppCacheInfoCollection* collection) {}
200 // Helper to call a collection of delegates.
  /external/guava/guava-tests/lib/
libtruth.jar 
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 30 Individual printers in a collection are named as
94 Individual printers in a collection are named as
330 Individual printers in a collection are named as
353 Individual printers in a collection are named as
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 30 Individual printers in a collection are named as
94 Individual printers in a collection are named as
330 Individual printers in a collection are named as
353 Individual printers in a collection are named as
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/
pretty_printers.py 30 Individual printers in a collection are named as
94 Individual printers in a collection are named as
330 Individual printers in a collection are named as
353 Individual printers in a collection are named as

Completed in 1572 milliseconds

1 2 3 4 5 6 7 8 91011>>