Searched refs:list (Results 401 - 425 of 4308) sorted by relevance

<<11121314151617181920>>

/external/qemu/distrib/mini-glib/src/
H A Dglib-mini.c175 // Create empty list of results.
180 // Input list is not empty, so try to split it.
197 // Convert list into NULL-terminated vector.
232 // Single-linked list
238 void g_slist_free(GSList* list) { argument
239 while (list) {
240 GSList* next = list->next;
241 g_free(list);
242 list = next;
246 GSList* g_slist_last(GSList* list) { argument
252 g_slist_find(GSList* list, const void* data) argument
261 g_slist_append(GSList* list, void* data) argument
274 g_slist_prepend(GSList* list, void* data) argument
281 g_slist_remove(GSList* list, const void* data) argument
297 g_slist_foreach(GSList* list, GFunc func, void* user_data) argument
310 GSList* list = NULL; local
330 g_slist_sort_real(GSList* list, GFunc compare_func, void* user_data) argument
357 g_slist_sort(GSList* list, GCompareFunc compare_func) argument
[all...]
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/
H A Dmain.js152 * @param {function()=} opt_callback Function called when list view loaded or
165 if (list.parentId == id)
168 addOneShotEventListener(list, 'load', opt_callback);
173 * Updates the parent ID of the bookmark list and selects the correct tree item.
177 // Setting list.parentId fires 'load' event.
178 list.parentId = id;
181 // calls updateHash() when list view displayed specified folder.
205 // After the list reloads, edit the desired bookmark.
207 var index = list.dataModel.findIndexById(bookmarkNode.id);
209 var sm = list
[all...]
/external/chromium_org/chrome/browser/media/
H A Dnative_desktop_media_list_unittest.cc80 void SetWindowList(const WindowList& list) { argument
82 window_list_ = list;
168 webrtc::WindowCapturer::WindowList list; local
173 list.push_back(window);
175 window_capturer_->SetWindowList(list);
202 return list;
222 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(1, false); local
232 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(2, false); local
267 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(1, false); local
276 list
287 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(2, false); local
301 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(2, false); local
318 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(1, false); local
347 webrtc::WindowCapturer::WindowList list = AddWindowsAndVerify(2, false); local
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dthread_cache.cc9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
158 FreeList* list = &list_[cl];
159 ASSERT(list->empty());
162 const int num_to_move = min<int>(list->max_length(), batch_size);
170 // Pop the top of the list and add the rest to the freelist.
173 list->PushRange(fetch_count, second, end);
179 if (list->max_length() < batch_size) {
180 list->set_max_length(list
197 ListTooLong(FreeList* list, size_t cl) argument
252 FreeList* list = &list_[cl]; local
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dthread_cache.cc9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
155 FreeList* list = &list_[cl];
156 ASSERT(list->empty());
159 const int num_to_move = min<int>(list->max_length(), batch_size);
167 list->PushRange(fetch_count, SLL_Next(start), end);
173 if (list->max_length() < batch_size) {
174 list->set_max_length(list->max_length() + 1);
176 // Don't let the list ge
191 ListTooLong(FreeList* list, size_t cl) argument
246 FreeList* list = &list_[cl]; local
[all...]
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
H A DJcaCertStore.java37 List list = new ArrayList(collection.size());
49 list.add(new X509CertificateHolder(cert.getEncoded()));
58 list.add((X509CertificateHolder)o);
62 return list;
/external/chromium_org/ash/ime/
H A Dinput_method_menu_manager_unittest.cc23 // Called when the list of menu items is changed.
56 InputMethodMenuItemList list; local
57 list.push_back(InputMethodMenuItem("key1", "label1", false, false));
58 list.push_back(InputMethodMenuItem("key2", "label2", false, false));
59 menu_manager_->SetCurrentInputMethodMenuItemList(list);
/external/chromium_org/chrome/browser/extensions/api/bookmark_manager_private/
H A Dbookmark_manager_private_apitest.cc37 base::ListValue list; local
41 list.Append(node);
45 list.Append(node);
46 profile->GetPrefs()->Set(bookmarks::prefs::kManagedBookmarks, list);
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dpath_util_test.py35 self.assertEqual([('', '')], list(Segment('')))
36 self.assertEqual([('', 'hi'), ('hi', '')], list(Segment('hi')))
41 list(Segment('p1/p2/hi')))
46 list(Segment('foo/bar/baz.txt')))
/external/chromium_org/content/renderer/p2p/
H A Dnetwork_list_observer.h22 const net::NetworkInterfaceList& list) = 0;
/external/chromium_org/media/formats/mp2t/
H A Des_adapter_video.h9 #include <list>
79 std::list<ConfigEntry> config_list_;
86 std::list<base::TimeDelta> emitted_pts_;
91 std::list<DecodeTimestamp> discarded_frames_dts_;
/external/chromium_org/ppapi/thunk/
H A Dppb_input_event_api.h43 virtual void AddTouchPoint(PP_TouchListType list,
45 virtual uint32_t GetTouchCount(PP_TouchListType list) = 0;
46 virtual PP_TouchPoint GetTouchByIndex(PP_TouchListType list,
48 virtual PP_TouchPoint GetTouchById(PP_TouchListType list,
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation_context.h62 void set_change_observers(const ChangeObserverList& list) { argument
64 change_observers_ = list;
66 void set_update_observers(const UpdateObserverList& list) { argument
68 update_observers_ = list;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DLinkRelAttribute.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
56 Vector<String> list; local
57 relCopy.split(' ', list);
58 Vector<String>::const_iterator end = list.end();
59 for (Vector<String>::const_iterator it = list.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DbreakpointsList.css10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
38 .breakpoint-list .editing.being-edited {
51 ol.breakpoint-list {
53 list-style: none;
58 .breakpoints-list-deactivated {
63 .breakpoint-list li {
70 .breakpoint-list li:hover {
74 .breakpoint-list .checkbox-elem {
83 .breakpoint-list
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_vec_index_to_cond_assign.cpp87 exec_list list; local
93 list.push_tail(index);
96 list.push_tail(assign);
101 list.push_tail(var);
107 compare_index_block(&list, index, 0,
125 list.push_tail(assign);
131 base_ir->insert_before(&list);
185 exec_list list; local
190 list.push_tail(index);
193 list
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dsexps.py36 list, or if it contains anything that is not a string or a list at
39 if isinstance(sexp, list):
75 assert isinstance(sexp, list)
94 assert isinstance(sexp, list)
98 if isinstance(s, list) and len(s) >= 4 and s[0] == 'declare':
/external/clang/include/clang/Rewrite/Core/
H A DTokenRewriter.h20 #include <list>
29 /// TokenList - This is the list of raw tokens that make up this file. Each
31 std::list<Token> TokenList;
34 typedef std::list<Token>::iterator TokenRefTy;
54 typedef std::list<Token>::const_iterator token_iterator;
/external/doclava/src/com/google/doclava/
H A DParsedTagInfo.java44 ArrayList<TagInfo> list = new ArrayList<TagInfo>();
50 list.add(t[j]);
53 return list.toArray(new TagInfo[list.size()]);
/external/e2fsprogs/e2fsck/
H A Dprof_err.c17 N_("Bad linked list in profile structures"),
60 void initialize_prof_error_table_r(struct et_list **list);
68 void initialize_prof_error_table_r(struct et_list **list) argument
72 for (end = list, et = *list; et; end = &et->next, et = et->next)
/external/e2fsprogs/lib/et/test_cases/
H A Dimap_err.c59 void initialize_imap_error_table_r(struct et_list **list);
67 void initialize_imap_error_table_r(struct et_list **list) argument
71 for (end = list, et = *list; et; end = &et->next, et = et->next)
H A Dsimple.c51 void initialize_krb_error_table_r(struct et_list **list);
59 void initialize_krb_error_table_r(struct et_list **list) argument
63 for (end = list, et = *list; et; end = &et->next, et = et->next)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
H A Dcomplete-ant-cmd.pl42 list( restrict( $word, getArguments() ));
44 list( getBuildFiles($word) );
46 list( restrict( $word, getTargets() ));
51 sub list { subroutine
82 # Run "ant -projecthelp" to list targets. Keep a cache of results in a
/external/guava/guava-tests/test/com/google/common/collect/
H A DSortedIterablesTest.java36 List<Integer> list = Arrays.asList(3, 9, 8, 4, 5, 2, 2, 8);
37 ASSERT.that(SortedIterables.sortedCounts(Ordering.natural(), list))
46 List<Integer> list = Arrays.asList(3, 9, 8, 4, 5, 2, 2, 8);
47 ASSERT.that(SortedIterables.sortedCounts(Ordering.natural(), list.iterator()))
/external/iproute2/testsuite/tests/
H A Ddsmark.t25 qdisc list dev $DEV
28 class list dev $DEV parent 10:0

Completed in 8499 milliseconds

<<11121314151617181920>>