HomeSort by relevance Sort by last modified time
    Searched refs:collection (Results 76 - 100 of 420) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLOptionsCollectionCustom.cpp 49 static void getNamedItems(HTMLOptionsCollection* collection, const AtomicString& name, const CallbackInfo& info)
52 collection->namedItems(name, namedItems);
60 v8SetReturnValueFast(info, namedItems.at(0).release(), collection);
64 v8SetReturnValueFast(info, NamedNodesCollection::create(namedItems), collection);
  /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) {
AbstractSequentialList.java 41 public boolean addAll(int location, Collection<? extends E> collection) {
43 Iterator<? extends E> colIt = collection.iterator();
Vector.java 104 * {@code collection}. The order of the elements in the new {@code Vector}
105 * is dependent on the iteration order of the seed collection.
107 * @param collection
108 * the collection of elements to add.
110 public Vector(Collection<? extends E> collection) {
111 this(collection.size(), 0);
112 Iterator<? extends E> it = collection.iterator();
161 * Inserts the objects in the specified collection at the specified location
163 * returned from the Collection iterator. The elements with an index equa
    [all...]
AbstractList.java 259 public boolean addAll(int location, Collection<? extends E> collection) {
263 collection);
265 size += collection.size();
276 public boolean addAll(Collection<? extends E> collection) {
278 boolean result = fullList.addAll(offset + size, collection);
280 size += collection.size();
430 * Inserts the objects in the specified Collection at the specified location
432 * the collection's iterator
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
CollectionUtils.java 23 import java.util.Collection;
77 public static <E> ArrayList<E> newArrayList(final Collection<E> collection) {
78 return new ArrayList<E>(collection);
90 final Collection<E> collection) {
91 return new CopyOnWriteArrayList<E>(collection);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleEngine.cpp 174 const StyleSheetCollection* collection = it->get(); local
175 activeAuthorStyleSheets.append(&collection->activeAuthorStyleSheets());
303 StyleSheetCollection* collection = ensureStyleSheetCollectionFor(treeScope); local
304 ASSERT(collection);
305 collection->addStyleSheetCandidateNode(node, createdByParser);
317 StyleSheetCollection* collection = styleSheetCollectionFor(treeScope); local
318 ASSERT(collection);
319 collection->removeStyleSheetCandidateNode(node, scopingNode);
345 ShadowTreeStyleSheetCollection* collection = static_cast<ShadowTreeStyleSheetCollection*>(styleSheetCollectionFor(treeScope)); local
346 ASSERT(collection);
403 ShadowTreeStyleSheetCollection* collection = static_cast<ShadowTreeStyleSheetCollection*>(styleSheetCollectionFor(*treeScope)); local
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_drag_browsertest.cc     [all...]
stacked_panel_drag_handler.cc 18 DCHECK_EQ(PanelCollection::STACKED, panel->collection()->type());
52 DCHECK_EQ(PanelCollection::STACKED, panel->collection()->type());
  /external/chromium_org/webkit/browser/appcache/
appcache_service.cc 190 virtual void OnAllInfo(AppCacheInfoCollection* collection) OVERRIDE;
207 AppCacheInfoCollection* collection) {
208 if (!collection) {
216 collection->infos_by_origin.find(origin_);
217 if (found == collection->infos_by_origin.end() || found->second.empty()) {
269 AppCacheService* service, AppCacheInfoCollection* collection,
271 : AsyncHelper(service, callback), collection_(collection) {
280 virtual void OnAllInfo(AppCacheInfoCollection* collection) OVERRIDE;
288 AppCacheInfoCollection* collection) {
289 if (collection)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumMapTest.java 20 import java.util.Collection;
386 Collection c = new ArrayList();
643 Collection c = new ArrayList();
990 Collection collection = enumColorMap.values(); local
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
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/chromium/chrome/browser/notifications/
balloon.cc 15 BalloonCollection* collection)
18 collection_(collection) {
  /external/chromium_org/chrome/browser/notifications/
balloon.cc 24 BalloonCollection* collection)
27 collection_(collection) {
  /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/
HashCountedSet.h 207 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, VectorType& vector)
211 vector.resize(collection.size());
213 iterator it = collection.begin();
214 iterator end = collection.end();
220 inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits>& collection, Vector<Value>& vector)
224 vector.resize(collection.size());
226 iterator it = collection.begin();
227 iterator end = collection.end();
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();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
AbstractListTester.java 22 import java.util.Collection;
35 * collection in setUp(), but that caused problems when a tester changed the
36 * value of list or collection but not both.
39 return (List<E>) collection;
46 * {@link AbstractCollectionTester#expectContents(Collection)} to verify that
49 @Override protected void expectContents(Collection<E> expectedCollection) {
71 return Platform.format("expected collection %s; actual collection %s",
72 expected, this.collection);
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListTest.java 28 import java.util.Collection;
57 @Override public boolean addAll(Collection<? extends T> collection) {
58 return standardAddAll(collection);
69 @Override public boolean containsAll(Collection<?> collection) {
70 return standardContainsAll(collection);
77 @Override public boolean removeAll(Collection<?> collection) {
78 return standardRemoveAll(collection);
    [all...]
  /frameworks/base/core/java/android/hardware/input/
KeyboardLayout.java 43 public KeyboardLayout(String descriptor, String label, String collection) {
46 mCollection = collection;
75 * Gets the name of the collection to which the keyboard layout belongs. This is
77 * @return The keyboard layout collection name.
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 24 import java.util.Collection;
69 * Returns a constrained view of the specified collection, using the specified
70 * constraint. Any operations that add new elements to the collection will
74 * <p>The returned collection is not serializable.
76 * @param collection the collection to constrain
78 * @return a constrained view of the collection
80 public static <E> Collection<E> constrainedCollection(
81 Collection<E> collection, Constraint<? super E> constraint)
    [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...]
  /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...]
  /external/chromium_org/ui/message_center/views/
message_popup_collection_unittest.cc 52 MessagePopupCollection* collection() { return collection_.get(); } function in class:message_center::test::MessagePopupCollectionTest
159 collection()->OnMouseExited(GetToast(id2));
204 collection()->SetDisplayInfo(gfx::Rect(0, 0, 590, 400), // Work-area.
226 collection()->SetDisplayInfo(gfx::Rect(0, 0, 600, 390), // Work-area.
232 collection()->SetDisplayInfo(gfx::Rect(0, 10, 600, 390), // Work-area.
254 collection()->SetDisplayInfo(gfx::Rect(0, 0, 600, 390), // Work-area.
263 collection()->SetDisplayInfo(gfx::Rect(10, 10, 590, 390), // Work-area.
285 collection()->SetDisplayInfo(gfx::Rect(0, 0, 600, 390), // Work-area.
294 collection()->SetDisplayInfo(gfx::Rect(0, 10, 580, 400), // Work-area.
316 collection()->SetDisplayInfo(gfx::Rect(0, 0, 600, 390), // Work-area
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
DOMTestCase.java 18 import java.util.Collection;
232 * Asserts that the length of the collection is the expected size.
238 * @param collection
239 * collection
244 NodeList collection) {
245 framework.assertSize(this, assertID, expectedSize, collection);
249 * Asserts that the length of the collection is the expected size.
255 * @param collection
256 * collection
261 NamedNodeMap collection) {
    [all...]

Completed in 1597 milliseconds

1 2 34 5 6 7 8 91011>>