Searched refs:collection (Results 251 - 275 of 367) sorted by relevance

<<1112131415

/external/chromium_org/content/renderer/
H A Drender_font_warmup_win.cc164 // We always return pre-created font collection from here.
194 IDWriteFontCollection* collection = GetCustomFontCollection(factory); local
/external/chromium_org/ui/message_center/views/
H A Dtoast_contents_view.h45 base::WeakPtr<MessagePopupCollection> collection);
/external/guava/guava-tests/lib/
H A Dlibtruth-gwt.jar ... truth.subjects.CollectionSubject that (java.util.Collection) java.util.Collection target public org.junit ...
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFCompileUnit.h192 DWARFDebugInfoEntry::collection m_die_array; // The compile unit debug information entry item
/external/chromium_org/ui/compositor/
H A Dlayer.h421 void AddAnimatorsInTreeToCollection(LayerAnimatorCollection* collection);
422 void RemoveAnimatorsInTreeFromCollection(LayerAnimatorCollection* collection);
/external/lldb/include/lldb/Core/
H A DModuleSpec.h587 typedef std::vector<ModuleSpec> collection; ///< The module collection type. typedef in class:lldb_private::ModuleSpecList
588 collection m_specs; ///< The collection of modules.
/external/lldb/include/lldb/Target/
H A DPlatform.h745 typedef std::vector<lldb::PlatformSP> collection; typedef in class:lldb_private::PlatformList
747 collection m_platforms;
/external/lldb/tools/lldb-perf/lib/
H A DResults.cpp246 collection::const_iterator pos, end = m_dictionary.end();
266 collection::const_iterator pos, end = m_array.end();
/external/guava/guava/src/com/google/common/collect/
H A DLinkedListMultimap.java836 * <p>The iterator generated by the returned collection traverses the values
918 * <p>The iterator generated by the returned collection traverses the entries
1058 Collection<V> collection = LinkedListMultimap.this.get((K) key);
1059 return collection.isEmpty() ? null : collection;
1063 Collection<V> collection = removeAll(key);
1064 return collection.isEmpty() ? null : collection;
H A DImmutableSetMultimap.java224 Collection<V> collection = builderMultimap.get(checkNotNull(key));
226 collection.add(checkNotNull(value));
417 * Returns an immutable collection of all key-value pairs in the multimap.
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DLinkedListMultimap.java832 * <p>The iterator generated by the returned collection traverses the values
914 * <p>The iterator generated by the returned collection traverses the entries
1054 Collection<V> collection = LinkedListMultimap.this.get((K) key);
1055 return collection.isEmpty() ? null : collection;
1059 Collection<V> collection = removeAll(key);
1060 return collection.isEmpty() ? null : collection;
H A DImmutableList.java176 Collection<? extends E> collection) {
177 Object[] elements = collection.toArray();
182 @SuppressWarnings("unchecked") // collection had only Es in it
175 copyFromCollection( Collection<? extends E> collection) argument
H A DImmutableSetMultimap.java219 Collection<V> collection = builderMultimap.get(checkNotNull(key));
221 collection.add(checkNotNull(value));
412 * Returns an immutable collection of all key-value pairs in the multimap.
/external/chromium_org/third_party/sinonjs/src/
H A Dsinon.js962 sinon.collection = require("./sinon/collection");
2402 function each(collection, callback) {
2403 if (!collection) {
2407 for (var i = 0, l = collection.length; i < l; i += 1) {
2408 callback(collection[i]);
2863 var collection = {
2954 sinon.collection = collection;
2957 define(["module"], function(module) { module.exports = collection; });
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar ... toAdd int i public void addAll (java.util.Collection) java.util.Collection toAdd org.eclipse. ...
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.cpp57 DYLDImageInfo::collection::iterator pos, end = m_dyld_image_infos.end();
797 DYLDImageInfo::collection image_infos;
819 DynamicLoaderMacOSXDYLD::AddModulesUsingImageInfos (DYLDImageInfo::collection &image_infos)
926 DYLDImageInfo::collection image_infos;
960 DYLDImageInfo::collection::iterator pos, end = m_dyld_image_infos.end();
1019 DYLDImageInfo::collection &image_infos)
1309 DynamicLoaderMacOSXDYLD::UpdateImageInfosHeaderAndLoadCommands(DYLDImageInfo::collection &image_infos,
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Dwebrunner.js18 // 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;
793 updateTestPos({curID: testID, collection: tests[testID] ? tests[testID].name : testID, version: testVersions[testID]}, true);
/external/chromium_org/chrome/browser/ui/panels/
H A Dbase_panel_browser_test.cc422 EXPECT_EQ(PanelCollection::DOCKED, panel->collection()->type());
433 EXPECT_EQ(PanelCollection::DETACHED, panel->collection()->type());
452 EXPECT_EQ(PanelCollection::STACKED, panel->collection()->type());
H A Dstacked_panel_browsertest.cc1128 EXPECT_EQ(PanelCollection::DETACHED, panel1->collection()->type());
1141 EXPECT_EQ(PanelCollection::DETACHED, panel1->collection()->type());
1142 EXPECT_EQ(PanelCollection::DETACHED, new_panel->collection()->type());
1159 EXPECT_EQ(PanelCollection::STACKED, panel1->collection()->type());
1160 EXPECT_EQ(PanelCollection::STACKED, panel2->collection()->type());
1174 EXPECT_EQ(PanelCollection::STACKED, panel1->collection()->type());
1175 EXPECT_EQ(PanelCollection::STACKED, panel2->collection()->type());
1176 EXPECT_EQ(PanelCollection::DETACHED, new_panel->collection()->type());
1216 EXPECT_EQ(PanelCollection::STACKED, panel2->collection()->type());
1217 EXPECT_EQ(PanelCollection::STACKED, panel3->collection()
[all...]
/external/lldb/source/Target/
H A DStackFrameList.cpp614 collection::const_iterator begin = m_frames.begin();
615 collection::const_iterator end = m_frames.end();
618 collection::const_iterator pos = std::lower_bound (begin, end, stack_id, CompareStackID);
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java425 <T> void assertContains(Collection<T> collection, T value) { argument
426 assertTrue(collection.toString(), collection.contains(value));
/external/libvorbis/doc/
H A D05-comment.tex104 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
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dref.pxd55 # collection.
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/110/1/.cp/ant_tasks/
H A Dpublisher-ant.jar ... java.util.List) java.util.List collection java.util.ArrayList results Object obj org. ...
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DSortedMapInterfaceTest.java177 private static <E> List<E> toList(Collection<E> collection) { argument
178 return new ArrayList<E>(collection);

Completed in 7425 milliseconds

<<1112131415