Searched defs:list (Results 176 - 200 of 1412) sorted by relevance

1234567891011>>

/external/fio/
H A Dfilelock.c3 * No hash indexing, just a list, so only works well for < 100 files or
20 struct flist_head list; member in struct:fio_filelock
61 ff = flist_entry(entry, struct fio_filelock, list);
79 flist_add(&ff->list, filelock_list);
150 flist_del(&ff->list);
H A Dflow.c8 struct flist_head list; member in struct:fio_flow
51 flow = flist_entry(n, struct fio_flow, list);
65 INIT_FLIST_HEAD(&flow->list);
69 flist_add_tail(&flow->list, flow_list);
85 flist_del(&flow->list);
H A Dprofile.h21 struct flist_head list; member in struct:profile_ops
/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/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/mesa3d/src/gallium/auxiliary/util/
H A Du_caps.c34 * Iterates over a list of caps checks as defined in u_caps.h. Should
36 * the list (TERMINATE). Should any check fail returns FALSE and set
40 util_check_caps_out(struct pipe_screen *screen, const unsigned *list, int *out) argument
45 for (i = 0; list[i];) {
46 switch(list[i++]) {
48 if (!screen->get_param(screen, list[i++])) {
54 tmpi = screen->get_param(screen, list[i++]);
55 if (tmpi < (int)list[i++]) {
61 tmpf = screen->get_paramf(screen, list[i++]);
62 if (tmpf < (float)list[
103 util_check_caps(struct pipe_screen *screen, const unsigned *list) argument
219 unsigned *list; member in struct:__anon27180
220 } list[] = { local
[all...]
H A Du_slab.h48 /* The header (linked-list pointers). */
63 struct util_slab_page list; member in struct:util_slab_mempool
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_fence.h15 struct list_head list; member in struct:nouveau_fence_work
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethodParameter.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
86 @Nullable Iterable<? extends MethodParameter> list) {
87 return CONVERTER.toList(list);
85 immutableListOf( @ullable Iterable<? extends MethodParameter> list) argument
/external/smali/util/src/test/java/org/jf/util/
H A DAbstractForwardSequentialListTest.java10 * notice, this list of conditions and the following disclaimer.
12 * copyright notice, this list of conditions and the following disclaimer
45 private List<Integer> list; field in class:AbstractForwardSequentialListTest
49 list = new AbstractForwardSequentialList<Integer>() {
97 testForwardIterationImpl(list.listIterator());
120 testReverseIterationImpl(list.listIterator(100));
125 ListIterator<Integer> iter = list.listIterator(50);
146 ListIterator<Integer> iter = list.listIterator(0);
156 list.listIterator(-1);
161 list
[all...]
/external/srec/seti/sltsEngine/src/
H A Dlinklist_impl.c33 1. pool of linked list nodes - from static allocated array
121 For now, dynamically allocate a new list node with the data
123 LListResult Insert(LList *list, void *data) argument
131 if(list->head == NULL){
132 /* if list is empty, assign to head */
133 list->head = newnode;
134 (list->head)->next = NULL;
135 (list->head)->prev = NULL;
138 list->curr = list
192 Delete(LList *list) argument
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticResultImpl.c73 ESR_ReturnCode SR_SemanticResult_GetKeyList(SR_SemanticResult* self, LCHAR** list, size_t* count) argument
88 else if (list == NULL)
97 list[i] = theKey;
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/asn1/der/
H A DSequenceTest.java65 // list SEQUENCE OF BOOLEAN, DEFAULT list(false)
89 values[1] = obj.list;
129 public List list; field in class:SequenceTest.AppClass
131 public AppClass(Boolean ok, List list) { argument
133 this.list = list;
139 return ok.equals(obj.ok) && list.equals(obj.list);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertificateFactorySpi.java45 // mode: false - list of encodings is empty
46 // mode: true - list of encodings consists of 2 elements
50 private Set list; field in class:MyCertificateFactorySpi
55 list = new HashSet();
56 list.add("aa");
57 list.add("bb");
132 list.clear();
134 return list.iterator();
/external/bison/src/
H A Dsymlist.c29 | Create a list containing SYM at LOC. |
60 | Create a list containing TYPE_NAME at LOC. |
79 | Create a list containing a <*> at LOC. |
97 | Create a list containing a <> at LOC. |
115 | Print this list, for which every content_type must be SYMLIST_SYMBOL. |
136 symbol_list_prepend (symbol_list *list, symbol_list *node) argument
138 node->next = list;
148 symbol_list_free (symbol_list *list) argument
151 for (node = list; node; node = next)
177 | Get item N in symbol list
[all...]
/external/chromium_org/base/android/javatests/src/org/chromium/base/
H A DObserverListTest.java38 * An observer which add a given Observer object to the list when observe is called.
44 FooAdder(ObserverList<Observer> list, Observer oblivious) { argument
45 mList = list;
56 * An observer which removes a given Observer object from the list when observe is called.
62 FooRemover(ObserverList<Observer> list, Observer innocent) { argument
63 mList = list;
97 // Removing an observer not in the list should do nothing.
115 // e was never added to the list, observe should not be called.
/external/chromium_org/base/containers/
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
261 LinkedList<Node> list; local
266 LinkedList<Node> list; local
275 LinkedList<Node> list; local
297 LinkedList<Node> list; local
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_argument.cc103 ListValue* list = NULL; local
104 stack_.back()->GetAsList(&list);
105 DCHECK(list);
106 return list;
/external/chromium_org/base/json/
H A Djson_parser_unittest.cc67 base::ListValue* list; local
68 EXPECT_TRUE(value->GetAsList(&list));
69 EXPECT_EQ(2u, list->GetSize());
/external/chromium_org/cc/output/
H A Dbsp_tree.cc7 #include <list>
24 BspTree::BspTree(ScopedPtrDeque<DrawPolygon>* list) { argument
25 if (list->size() == 0)
28 root_ = scoped_ptr<BspNode>(new BspNode(list->take_front()));
29 BuildTree(root_.get(), list);
43 // We take in a list of polygons at this level of the tree, and have to
53 // or front of the list.
/external/chromium_org/chrome/browser/chromeos/login/screens/
H A Dchrome_user_selection_screen.cc70 // Nothing to do here. When the list of device-local accounts changes, the
110 // Parse the list of recommended locales set by policy.
112 base::ListValue const* list = NULL; member in class:chromeos::base
116 entry->value->GetAsList(&list)) {
117 for (base::ListValue::const_iterator it = list->begin(); it != list->end();
159 // Construct the list of available locales. This list consists of the
171 // Set a flag to indicate whether the list of recommended locales contains at
/external/chromium_org/chrome/browser/chromeos/policy/
H A Dconfiguration_policy_handler_chromeos_unittest.cc325 base::ListValue list; local
333 POLICY_SCOPE_USER, list.DeepCopy(), NULL);
342 list.Append(entry1.DeepCopy());
344 POLICY_SCOPE_USER, list.DeepCopy(), NULL);
H A Ddevice_local_account.cc95 base::ListValue list; local
110 list.Append(entry.release());
113 cros_settings->Set(chromeos::kAccountsPrefDeviceLocalAccounts, list);
120 const base::ListValue* list = NULL; local
121 cros_settings->GetList(chromeos::kAccountsPrefDeviceLocalAccounts, &list);
122 if (!list)
126 for (size_t i = 0; i < list->GetSize(); ++i) {
128 if (!list->GetDictionary(i, &entry)) {
129 LOG(ERROR) << "Corrupt entry in device-local account list at index " << i
138 LOG(ERROR) << "Missing account ID in device-local account list a
[all...]

Completed in 464 milliseconds

1234567891011>>