Searched refs:list (Results 351 - 375 of 4308) sorted by relevance

<<11121314151617181920>>

/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableListTest.java132 List<String> list = ImmutableList.of();
133 assertEquals(Collections.emptyList(), list);
137 List<String> list = ImmutableList.of("a");
138 assertEquals(Collections.singletonList("a"), list);
142 List<String> list = ImmutableList.of("a", "b");
143 assertEquals(Lists.newArrayList("a", "b"), list);
147 List<String> list = ImmutableList.of("a", "b", "c");
148 assertEquals(Lists.newArrayList("a", "b", "c"), list);
152 List<String> list = ImmutableList.of("a", "b", "c", "d");
153 assertEquals(Lists.newArrayList("a", "b", "c", "d"), list);
505 perform(List<Integer> list) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DX509ExtensionUtil.java65 List list = new ArrayList();
66 list.add(Integers.valueOf(genName.getTagNo()));
72 list.add(genName.getName().toASN1Primitive());
75 list.add(X500Name.getInstance(genName.getName()).toString());
80 list.add(((ASN1String)genName.getName()).getString());
83 list.add(ASN1ObjectIdentifier.getInstance(genName.getName()).getId());
86 list.add(DEROctetString.getInstance(genName.getName()).getOctets());
92 temp.add(list);
/external/ceres-solver/internal/ceres/
H A Dlow_rank_inverse_hessian.h9 // this list of conditions and the following disclaimer.
11 // this list of conditions and the following disclaimer in the documentation
37 #include <list>
102 std::list<int> indices_;
/external/chromium_org/android_webview/browser/
H A Dgl_view_renderer_manager.h8 #include <list>
24 typedef std::list<RendererType> ListType;
/external/chromium_org/chrome/browser/browsing_data/
H A Dmock_browsing_data_quota_helper.h8 #include <list>
32 std::list<QuotaInfo> response_;
/external/chromium_org/chrome/browser/chromeos/events/
H A Devent_rewriter_controller.h8 #include <list>
42 typedef std::list<ui::EventSource*> EventSourceList;
/external/chromium_org/chrome/browser/extensions/
H A Dpolicy_handlers_unittest.cc20 base::ListValue list; local
29 list.DeepCopy(),
35 list.Append(new base::StringValue("abcdefghijklmnopabcdefghijklmnop"));
39 list.DeepCopy(),
45 list.Append(new base::StringValue("*"));
49 list.DeepCopy(),
55 list.Append(new base::StringValue("invalid"));
59 list.DeepCopy(),
101 base::ListValue list; local
109 list
205 base::ListValue list; local
266 base::ListValue list; local
[all...]
/external/chromium_org/chrome/browser/precache/
H A Dmost_visited_urls_provider.cc7 #include <list>
21 std::list<GURL> urls;
/external/chromium_org/chrome/browser/resources/options/
H A Dcookies_view.css5 /* Styles for the cookies list page. */
12 /* Styles for the cookies list elements in cookies_view.html. */
13 .cookies-list {
16 * special behavior of the cookies list. */
23 .cookies-list-content-area {
59 list.cookie-list .deletable-item {
64 list.cookie-list .deletable-item > :first-child {
69 list
[all...]
H A Dlanguage_dictionary_overlay.css33 #language-dictionary-overlay-word-list {
37 #language-dictionary-overlay-word-list.no-search-matches {
41 #language-dictionary-overlay-word-list > * {
45 .language-dictionary-overlay-word-list-item {
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Ddelayed_callback_runner.h8 #include <list>
41 typedef std::list<base::Closure> CallbackList;
52 // The list of callbacks to run. Callbacks are removed when run.
/external/chromium_org/chrome/browser/ui/webui/memory_internals/
H A Dmemory_internals_handler.cc37 void MemoryInternalsHandler::OnJSUpdate(const base::ListValue* list) { argument
38 proxy_->StartFetch(list);
/external/chromium_org/components/omnibox/
H A Danswers_cache.h8 #include <list>
40 typedef std::list<AnswersQueryData> Cache;
/external/chromium_org/content/browser/fileapi/
H A Dmock_file_update_observer.cc20 UpdateObserverList list; local
21 return list.AddObserver(observer, base::ThreadTaskRunnerHandle::Get().get());
/external/chromium_org/content/browser/
H A Dstartup_task_runner.h8 #include <list>
56 std::list<StartupTask> task_list_;
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_task.cc13 WebTask::WebTask(WebTaskList* list) : task_list_(list) { argument
/external/chromium_org/extensions/common/manifest_handlers/
H A Dnacl_modules_handler.h8 #include <list>
18 typedef std::list<NaClModuleInfo> List;
/external/chromium_org/media/video/capture/win/
H A Dcapability_list_win.h12 #include <list>
40 // Appends an entry to the list.
43 // Loops through the list of capabilities and returns an index of the best
52 typedef std::list<VideoCaptureCapabilityWin> Capabilities;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/socket/
H A Dfifo_packet.h10 #include <list>
23 // A FIFOPackiet is linked list of packets. Data is stored and returned
49 std::list<Packet*> packets_;
/external/chromium_org/net/ftp/
H A Dftp_auth_cache.h8 #include <list>
52 typedef std::list<Entry> EntryList;
54 // Internal representation of cache, an STL list. This makes lookups O(n),
/external/chromium_org/remoting/client/
H A Daudio_player.h8 #include <list>
40 typedef std::list<AudioPacket*> AudioPacketQueue;
/external/chromium_org/remoting/codec/
H A Dcodec_test.h8 #include <list>
54 const std::list<webrtc::DesktopFrame*>& frames);
/external/chromium_org/sandbox/win/src/
H A Dwin2k_threadpool.h8 #include <list>
48 // The list of pool wait objects.
49 typedef std::list<PoolObject> PoolObjects;
51 // This lock protects the list of pool wait objects.
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dremoteaudiosource.h9 * this list of conditions and the following disclaimer.
11 * this list of conditions and the following disclaimer in the documentation
31 #include <list>
51 typedef std::list<AudioObserver*> AudioObserverList;
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Degldisplay.c228 /* pop list head */
259 /* search the display list first */
275 /* add to the display list */
293 _EGLResource *list; local
295 list = display->ResourceLists[_EGL_RESOURCE_CONTEXT];
296 while (list) {
297 _EGLContext *ctx = (_EGLContext *) list;
298 list = list->Next;
305 list
360 _EGLResource *list = dpy->ResourceLists[type]; local
[all...]

Completed in 1442 milliseconds

<<11121314151617181920>>