Searched defs:list (Results 76 - 100 of 849) sorted by relevance

1234567891011>>

/external/webkit/Tools/DumpRenderTree/chromium/
H A DTask.cpp9 * notice, this list of conditions and the following disclaimer.
11 * copyright notice, this list of conditions and the following disclaimer
37 WebTask::WebTask(TaskList* list): m_taskList(list) { m_taskList->registerTask(this); } argument
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc39 void PrintList(ListWrapper& list) argument
41 ListItem* list_item = list.First();
48 list_item = list.Next(list_item);
53 // The list should always be in ascending order
54 void ListSanity(ListWrapper& list)
56 if(list.Empty())
60 ListItem* item_iter = list.First();
68 item_iter = list.Next(item_iter);
147 // Erase the whole list
154 // Test APIs when list i
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/wpa_supplicant_8/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.h17 #include "list.h"
22 struct dl_list list; member in struct:wpa_trace_ref
40 dl_list_del(&(ptr)->wpa_trace_ref_##name.list); \
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DListExtensions.cs14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
47 public static bool add( this IList list, object value ) argument
49 int count = list.Count;
50 list.Add( value );
51 return list.Count == count + 1;
55 public static void add<T>( this ICollection<T> list, T value ) argument
57 list.Add( value );
61 public static void add<T>( this List<T> list, T value ) argument
63 list
67 add( this IList list, int index, object value ) argument
73 addAll( this List<object> list, IEnumerable items ) argument
79 addAll( this IList list, IEnumerable items ) argument
85 addAll( this ICollection<T> list, IEnumerable<T> items ) argument
93 addElement( this List<object> list, object value ) argument
105 contains( this IList list, object value ) argument
111 contains( this ICollection<T> list, T value ) argument
117 elementAt( this IList<T> list, int index ) argument
123 get( this IList list, int index ) argument
129 get( this IList<T> list, int index ) argument
136 get( this List<T> list, int index ) argument
142 remove( this IList list, int index ) argument
150 remove( this IList<T> list, T item ) argument
156 set( this IList list, int index, object value ) argument
162 set( this IList<T> list, int index, T value ) argument
168 set( this List<T> list, int index, T value ) argument
174 setSize( this List<T> list, int size ) argument
206 subList( this IList list, int fromIndex, int toIndex ) argument
217 subList( this IList<T> list, int fromIndex, int toIndex ) argument
227 subList( this List<T> list, int fromIndex, int toIndex ) argument
[all...]
/external/astl/tests/
H A Dtest_list.cpp10 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in
30 #include "../include/list"
38 using std::list;
43 list<int> list1;
44 list<int*> list2;
45 list<string> list3;
46 list<B> list4;
53 list<int> l;
63 list<
76 list<int> list; local
[all...]
/external/bison/src/
H A Dsymlist.c30 | Create a list containing SYM at LOC. |
57 | Print this list. |
78 symbol_list_prepend (symbol_list *list, symbol *sym, location loc) argument
81 res->next = list;
91 symbol_list_free (symbol_list *list) argument
93 LIST_FREE (symbol_list, list);
112 | Get symbol N in symbol list L. |
136 | symbol N in symbol list L. |
153 | The symbol N in symbol list L is USED. |
/external/chromium/base/json/
H A Djson_reader_unittest.cc226 ListValue* list = static_cast<ListValue*>(root.get()); local
227 ASSERT_EQ(3U, list->GetSize());
238 list = static_cast<ListValue*>(root.get());
239 ASSERT_EQ(0U, list->GetSize());
246 list = static_cast<ListValue*>(root.get());
247 ASSERT_EQ(4U, list->GetSize());
276 list = static_cast<ListValue*>(root.get());
277 EXPECT_EQ(1U, list->GetSize());
279 ASSERT_TRUE(list->Get(0, &tmp_value));
439 list
[all...]
/external/chromium/base/
H A Dlinked_list_unittest.cc34 // Checks that when iterating |list| (either from head to tail, or from
37 void ExpectListContentsForDirection(const LinkedList<Node>& list, argument
40 for (const LinkNode<Node>* node = (forward ? list.head() : list.tail());
41 node != list.end();
51 void ExpectListContents(const LinkedList<Node>& list, argument
56 ExpectListContentsForDirection(list, num_nodes, node_ids, true);
60 ExpectListContentsForDirection(list, num_nodes, node_ids, false);
65 LinkedList<Node> list; local
66 EXPECT_EQ(list
72 LinkedList<Node> list; local
107 LinkedList<Node> list; local
182 LinkedList<Node> list; local
219 LinkedList<Node> list; local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_bookmark_helpers.cc64 ListValue* list,
68 list->Append(dict);
71 // Add a JSON representation of |node| to the JSON |list|.
73 ListValue* list,
75 return AddNode(node, list, recurse, false);
79 ListValue* list,
81 return AddNode(node, list, recurse, true);
63 AddNode(const BookmarkNode* node, ListValue* list, bool recurse, bool only_folders) argument
72 AddNode(const BookmarkNode* node, ListValue* list, bool recurse) argument
78 AddNodeFoldersOnly(const BookmarkNode* node, ListValue* list, bool recurse) argument
/external/chromium/chrome/browser/metrics/
H A Dmetrics_service_unittest.cc36 // Store and retrieve empty list.
38 ListValue list; local
41 MetricsService::StoreUnsentLogsHelper(local_list, kMaxLocalListSize, &list);
42 EXPECT_EQ(0U, list.GetSize());
46 MetricsService::RecallUnsentLogsHelper(list, &local_list));
52 ListValue list; local
58 MetricsService::StoreUnsentLogsHelper(local_list, kMaxLocalListSize, &list);
60 // |list| will now contain the following:
62 EXPECT_EQ(3U, list.GetSize());
65 ListValue::const_iterator it = list
92 ListValue list; local
127 ListValue list; local
146 ListValue list; local
165 ListValue list; local
184 ListValue list; local
[all...]
/external/dbus/test/
H A Dshell-test.c6 #include <dbus/dbus-list.h>
20 DBusList *list = NULL, *node; local
25 _dbus_list_append (&list, (char *)arg1);
31 _dbus_list_append (&list, tmp);
35 original_argc = _dbus_list_get_length (&list);
38 for (i = 0, node = _dbus_list_get_first_link (&list); i < original_argc && node;
39 i++, node = _dbus_list_get_next_link (&list, node))
47 _dbus_list_clear (&list);
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStatistics.java56 * Adds the given list of items to the statistics.
58 * @param list {@code non-null;} the list of items to add
60 public void addAll(Section list) { argument
61 Collection<? extends Item> items = list.items();
H A DTypeListItem.java27 * Representation of a list of class references.
39 /** {@code non-null;} the actual list */
40 private final TypeList list; field in class:TypeListItem
45 * @param list {@code non-null;} the actual list
47 public TypeListItem(TypeList list) { argument
48 super(ALIGNMENT, (list.size() * ELEMENT_SIZE) + HEADER_SIZE);
50 this.list = list;
56 return StdTypeList.hashContents(list);
[all...]
/external/e2fsprogs/lib/et/
H A Dcom_right.c18 * notice, this list of conditions and the following disclaimer.
21 * notice, this list of conditions and the following disclaimer in the
48 com_right(struct et_list *list, long code) argument
51 for (p = list; p; p = p->next) {
59 com_right_r(struct et_list *list, long code, char *str, size_t len) argument
62 for (p = list; p; p = p->next) {
86 initialize_error_table_r(struct et_list **list, argument
95 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.eclipse.build.tools/src/org/eclipse/releng/
H A DFetchValidator.java21 * Uses an ElementParser to read a list of feature.xml files and to determine
30 //Comma separated list of features to parse
31 private String list; field in class:FetchValidator
49 validator.list =
51 validator.getListOfFeatures(validator.list);
58 getListOfFeatures(list);
88 private void getListOfFeatures(String list) { argument
90 StringTokenizer tokenizer = new StringTokenizer(list, ",");
105 // collect a list of missing plugins (or fragments), and features
144 * Gets the list
163 setList(String list) argument
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DExecutionListTest.java39 protected ExecutionList list = new ExecutionList(); field in class:ExecutionListTest
44 list.add(new MockRunnable(countDownLatch), exec);
45 list.add(new MockRunnable(countDownLatch), exec);
46 list.add(new MockRunnable(countDownLatch), exec);
49 list.execute();
61 list.add(new MockRunnable(countDownLatch), exec);
79 ExecutionList list = new ExecutionList();
80 list.add(THROWING_RUNNABLE, sameThreadExecutor());
81 list.execute();
82 list
[all...]
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
H A DMaterialExtensionLoader.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
61 private MaterialList list; field in class:MaterialExtensionLoader
119 list = new MaterialList();
127 list.put(matName, material);
131 list.put(string, material);
136 return list;
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAMultipleCommand.java43 public void setCommand(List<PCommand> list) argument
46 this._command_.addAll(list);
47 for(PCommand e : list)
H A DASequenceExpression.java43 public void setArgs(List<PExpression> list) argument
46 this._args_.addAll(list);
47 for(PExpression e : list)
H A DNode.java43 protected String toString(List list) argument
47 for(Iterator i = list.iterator(); i.hasNext();)
66 protected <T> List<T> cloneList(List<T> list) argument
70 for(T n : list)
/external/kernel-headers/original/linux/
H A Dxattr.h35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
/external/linux-tools-perf/
H A Dbuiltin-buildid-cache.c27 "file list", "file(s) to add"),
28 OPT_STRING('r', "remove", &remove_name_list_str, "file list",
77 struct strlist *list; local
84 list = strlist__new(true, add_name_list_str);
85 if (list) {
86 strlist__for_each(pos, list)
97 strlist__delete(list);
102 list = strlist__new(true, remove_name_list_str);
103 if (list) {
104 strlist__for_each(pos, list)
[all...]
/external/mesa3d/src/glsl/
H A Ds_expression.cpp98 s_list *list = new(ctx) s_list; local
102 list->subexpressions.push_tail(expr);
110 return list;

Completed in 1550 milliseconds

1234567891011>>