Searched defs:list (Results 276 - 300 of 1412) sorted by relevance

<<11121314151617181920>>

/external/freetype/src/cache/
H A Dftcmru.c169 FTC_MruList_Init( FTC_MruList list, argument
175 list->num_nodes = 0;
176 list->max_nodes = max_nodes;
177 list->nodes = NULL;
178 list->clazz = *clazz;
179 list->data = data;
180 list->memory = memory;
185 FTC_MruList_Reset( FTC_MruList list )
187 while ( list->nodes )
188 FTC_MruList_Remove( list, lis
308 FTC_MruList_Remove( FTC_MruList list, FTC_MruNode node ) argument
327 FTC_MruList_RemoveSelection( FTC_MruList list, FTC_MruNode_CompareFunc selection, FT_Pointer key ) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DSortedLists.java36 * list.
45 * A specification for which index to return if the list contains at least one element that
50 * Return the index of any list element that compares as equal to the key. No guarantees are
56 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
61 * Return the index of the last list element that compares as equal to the key.
66 Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) {
70 int upper = list.size() - 1;
74 int c = comparator.compare(list.get(middle), key);
85 * Return the index of the first list element that compares as equal to the key.
90 Comparator<? super E> comparator, E key, List<? extends E> list, in
131 resultIndex( Comparator<? super E> comparator, E key, List<? extends E> list, int foundIndex) argument
189 binarySearch(List<? extends E> list, E e, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
202 binarySearch(List<E> list, Function<? super E, K> keyFunction, K key, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
221 binarySearch( List<E> list, Function<? super E, K> keyFunction, K key, Comparator<? super K> keyComparator, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
255 binarySearch(List<? extends E> list, @Nullable E key, Comparator<? super E> comparator, KeyPresentBehavior presentBehavior, KeyAbsentBehavior absentBehavior) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/adaptor/
H A DLoadPathToFileCache.java26 * This class implements a cache of a list of loadpaths and a file name to the absolute file name
45 * @param loadPaths the ordered list of directories to search for the file.
62 * @param loadPaths the ordered list of directories to search for the file.
90 * Generate a hashCode to represent the ordered list of loadpaths. Used as a key into the fileMap
96 * hash as the key and throw away the loadpath list
98 * @param list an ordered list of loadpaths.
101 static long hashLoadPath(List<String> list) { argument
103 for (String path : list) {
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DACallCommand.java78 public void setMacro(List<TWord> list) argument
81 this._macro_.addAll(list);
82 for(TWord e : list)
98 public void setArguments(List<PExpression> list) argument
101 this._arguments_.addAll(list);
102 for(PExpression e : list)
H A DAFunctionExpression.java73 public void setArgs(List<PExpression> list) argument
76 this._args_.addAll(list);
77 for(PExpression e : list)
/external/junit/src/org/junit/experimental/theories/internal/
H A DAllMembersSupplier.java64 List<PotentialAssignment> list= new ArrayList<PotentialAssignment>();
66 addFields(sig, list);
67 addSinglePointMethods(sig, list);
68 addMultiPointMethods(list);
70 return list;
73 private void addMultiPointMethods(List<PotentialAssignment> list) { argument
77 addArrayValues(dataPointsMethod.getName(), list, dataPointsMethod.invokeExplosively(null));
85 List<PotentialAssignment> list) {
90 list.add(new MethodParameterValue(dataPointMethod));
95 List<PotentialAssignment> list) {
84 addSinglePointMethods(ParameterSignature sig, List<PotentialAssignment> list) argument
94 addFields(ParameterSignature sig, List<PotentialAssignment> list) argument
111 addArrayValues(String name, List<PotentialAssignment> list, Object array) argument
[all...]
/external/libnl/include/netlink/
H A Dlist.h2 * netlink/list.h Netlink List Utilities
21 static inline void NL_INIT_LIST_HEAD(struct nl_list_head *list) argument
23 list->next = list;
24 list->prev = list;
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-buildid-cache.c125 struct strlist *list; local
137 "file list", "file(s) to add"),
138 OPT_STRING('r', "remove", &remove_name_list_str, "file list",
143 OPT_STRING('u', "update", &update_name_list_str, "file list",
164 list = strlist__new(true, add_name_list_str);
165 if (list) {
166 strlist__for_each(pos, list)
177 strlist__delete(list);
182 list = strlist__new(true, remove_name_list_str);
183 if (list) {
[all...]
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events.h7 #include <linux/list.h>
62 struct list_head list; member in struct:parse_events_term
66 struct list_head list; member in struct:parse_events_evlist
85 int parse_events__modifier_event(struct list_head *list, char *str, bool add);
86 int parse_events__modifier_group(struct list_head *list, char *event_mod);
87 int parse_events_name(struct list_head *list, char *name);
88 int parse_events_add_tracepoint(struct list_head *list, int *idx,
90 int parse_events_add_numeric(struct list_head *list, int *idx,
93 int parse_events_add_cache(struct list_head *list, int *idx,
95 int parse_events_add_breakpoint(struct list_head *list, in
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_double_list.h31 * list handling. No list looping yet.
57 static INLINE void list_add(struct list_head *item, struct list_head *list) argument
59 item->prev = list;
60 item->next = list->next;
61 list->next->prev = item;
62 list->next = item;
65 static INLINE void list_addtail(struct list_head *item, struct list_head *list) argument
67 item->next = list;
68 item->prev = list
[all...]
/external/mesa3d/src/gallium/drivers/nv50/
H A Dnv50_context.c206 struct nouveau_list *list = on_flush ? &bufctx->current : &bufctx->pending; local
209 for (it = list->next; it != list; it = it->next) {
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_context.c212 struct nouveau_list *list = on_flush ? &bufctx->current : &bufctx->pending; local
215 for (it = list->next; it != list; it = it->next) {
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_context.h42 struct rbug_list list; member in struct:rbug_context
76 /* list of state objects */
/external/mesa3d/src/glsl/
H A Dloop_unroll.cpp58 loop_unroll_count(exec_list *list) argument
63 run(list);
211 exec_list *const list = (continue_from_then_branch) local
214 list->push_tail(ir_to_replace);
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...]
H A Dopt_constant_variable.cpp57 exec_list list; member in class:__anon27675::ir_constant_variable_visitor
63 get_assignment_entry(ir_variable *var, exec_list *list) argument
67 foreach_list_typed(struct assignment_entry, entry, link, list) {
74 list->push_head(&entry->link);
81 struct assignment_entry *entry = get_assignment_entry(ir, &this->list);
100 entry = get_assignment_entry(ir->lhs->variable_referenced(), &this->list);
146 entry = get_assignment_entry(var, &this->list);
158 entry = get_assignment_entry(var, &this->list);
176 while (!v.list.is_empty()) {
179 entry = exec_node_data(struct assignment_entry, v.list
[all...]
H A Ds_expression.cpp110 s_list *list = new(ctx) s_list; local
114 list->subexpressions.push_tail(expr);
123 return list;
199 s_list *list = SX_AS_LIST(top); local
200 if (list == NULL)
204 foreach_iter(exec_list_iterator, it, list->subexpressions) {
/external/mesa3d/src/mesa/program/
H A Dprog_parameter.h116 _mesa_clone_parameter_list(const struct gl_program_parameter_list *list);
123 _mesa_num_parameters(const struct gl_program_parameter_list *list) argument
125 return list ? list->NumParameters : 0;
177 _mesa_lookup_parameter_constant(const struct gl_program_parameter_list *list,
182 _mesa_num_parameters_of_type(const struct gl_program_parameter_list *list,
/external/mesa3d/src/mesa/vbo/
H A Dvbo_save_draw.c231 const struct vbo_save_vertex_list *list)
235 list->vertex_store->bufferobj->Size,
237 list->vertex_store->bufferobj);
240 (const GLfloat *)(buffer + list->buffer_offset),
241 list->attrsz,
242 list->prim,
243 list->prim_count,
244 list->wrap_count,
245 list->vertex_size);
247 ctx->Driver.UnmapBuffer(ctx, list
230 vbo_save_loopback_vertex_list(struct gl_context *ctx, const struct vbo_save_vertex_list *list) argument
[all...]
/external/oprofile/daemon/
H A Dopd_cookie.c93 struct list_head list; member in struct:cookie_entry
143 entry = list_entry(pos, struct cookie_entry, list);
150 list_add(&entry->list, &hashes[hash]);
166 entry = list_entry(pos, struct cookie_entry, list);
172 list_add(&entry->list, &hashes[hash]);
191 entry = list_entry(pos, struct cookie_entry, list);
/external/oprofile/libutil/
H A Dop_list.h15 * Simple doubly linked list implementation.
30 * @param ptr the list to init
32 * Init a list head to create an empty list from it
43 * This is only for internal list manipulation where we know
59 * @param head list head to add it after
72 * @param head list head to add it before
83 * Delete a list entry by making the prev/next entries
86 * This is only for internal list manipulation where we know
97 * list_del - deletes entry from list
130 list_splice(struct list_head * list, struct list_head * head) argument
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftutil.c5 /* FreeType utility file for memory and list management (body). */
354 FT_List_Find( FT_List list,
360 cur = list->head;
376 FT_List_Add( FT_List list, argument
379 FT_ListNode before = list->tail;
388 list->head = node;
390 list->tail = node;
397 FT_List_Insert( FT_List list, argument
400 FT_ListNode after = list->head;
407 list
418 FT_List_Remove( FT_List list, FT_ListNode node ) argument
442 FT_List_Up( FT_List list, FT_ListNode node ) argument
499 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/proguard/src/proguard/gui/
H A DClassSpecificationsPanel.java35 * ClassSpecification entries in a list.
48 list.setCellRenderer(new MyListCellRenderer());
91 (ClassSpecification)list.getSelectedValue();
99 list.getSelectedIndex());
200 public Component getListCellRendererComponent(JList list, argument
217 label.setBackground(list.getSelectionBackground());
218 label.setForeground(list.getSelectionForeground());
222 label.setBackground(list.getBackground());
223 label.setForeground(list.getForeground());
/external/skia/src/gpu/
H A DGrTMultiMap.h39 ValueList* list = fHash.find(key); local
40 if (NULL != list) {
42 // linked list, and it will contain the value of the first element.
43 ValueList* newEntry = SkNEW_ARGS(ValueList, (list->fValue));
44 newEntry->fNext = list->fNext;
47 list->fNext = newEntry;
48 list->fValue = value;
57 ValueList* list = fHash.find(key); local
60 SkASSERT(NULL != list);
62 while (list
84 ValueList* list = fHash.find(key); local
93 ValueList* list = fHash.find(key); local
[all...]
/external/skia/src/views/
H A DSkViewInflate.cpp123 void SkViewInflate::addIDStr(SkTDArray<IDStr>* list, SkView* view, const char* str) argument
126 IDStr* pair = list->append();

Completed in 444 milliseconds

<<11121314151617181920>>