Searched defs:list (Results 201 - 225 of 1364) sorted by relevance

1234567891011>>

/external/chromium_org/net/websockets/
H A Dwebsocket_throttle_test.cc46 SocketStream* socket, const AddressList& list) {
47 socket->set_addresses(list);
45 MockSocketStreamConnect( SocketStream* socket, const AddressList& list) argument
/external/chromium_org/sync/notifier/
H A Dsingle_object_invalidation_set.cc94 const base::ListValue& list) {
95 for (size_t i = 0; i < list.GetSize(); ++i) {
97 if (!list.GetDictionary(i, &dict)) {
93 ResetFromValue( const base::ListValue& list) argument
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueList.h46 static PassRefPtr<CSSValueList> createFromParserValueList(CSSParserValueList* list) argument
48 return adoptRef(new CSSValueList(list));
99 // Wrapper that can be used to iterate over any CSSValue. Non-list values and 0 behave as zero-length lists.
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFontResource.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
130 RefPtr<NodeList> list = m_externalSVGDocument->getElementsByTagNameNS(SVGNames::fontTag.namespaceURI(), SVGNames::fontTag.localName()); local
131 if (!list)
134 unsigned listLength = list->length();
140 ASSERT(list->item(i));
141 ASSERT(list->item(i)->hasTagName(SVGNames::fontTag));
146 return toSVGFontElement(list->item(0));
149 SVGFontElement* element = toSVGFontElement(list->item(i));
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTUnicodeSort.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
49 xmlNodeSetPtr list = NULL; local
68 list = ctxt->nodeList;
69 if ((list == NULL) || (list->nodeNr <= 1))
116 len = list->nodeNr;
249 node = list->nodeTab[j];
250 list->nodeTab[j] = list
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DSecurityPolicy.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
95 if (OriginAccessWhiteList* list = originAccessMap().get(activeOrigin->toString())) {
96 for (size_t i = 0; i < list->size(); ++i) {
97 if (list->at(i).matchesOrigin(*targetOrigin) != OriginAccessEntry::DoesNotMatchOrigin)
122 OriginAccessWhiteList* list = result.iterator->value.get(); local
123 list->append(OriginAccessEntry(destinationProtocol, destinationDomain, allowDestinationSubdomains ? OriginAccessEntry::AllowSubdomains : OriginAccessEntry::DisallowSubdomains, OriginAccessEntry::TreatIPAddressAsIPAddress));
139 OriginAccessWhiteList* list = it->value.get();
140 size_t index = list->find(OriginAccessEntry(destinationProtocol, destinationDomain, allowDestinationSubdomains ? OriginAccessEntry::AllowSubdomains : OriginAccessEntry::DisallowSubdomains, OriginAccessEntry::TreatIPAddressAsIPAddress));
144 list
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftutil.c5 /* FreeType utility file for memory and list management (body). */
242 FT_List_Find( FT_List list,
248 cur = list->head;
264 FT_List_Add( FT_List list, argument
267 FT_ListNode before = list->tail;
276 list->head = node;
278 list->tail = node;
285 FT_List_Insert( FT_List list, argument
288 FT_ListNode after = list->head;
295 list
306 FT_List_Remove( FT_List list, FT_ListNode node ) argument
330 FT_List_Up( FT_List list, FT_ListNode node ) argument
387 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/chromium_org/third_party/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/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dscreencastid.h67 static cricket::ScreencastIdList Convert(const std::vector<T>& list) { argument
69 screencast_list.reserve(list.size());
70 for (typename std::vector<T>::const_iterator it = list.begin();
71 it != list.end(); ++it) {
/external/chromium_org/third_party/libusb/src/libusb/os/
H A Dthreads_windows.h30 struct list_head list; member in struct:usbi_cond_perthread
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/drivers/rbug/
H A Drbug_context.h42 struct rbug_list list; member in struct:rbug_context
76 /* list of state objects */
/external/chromium_org/third_party/mesa/src/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:__anon13410::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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
48 * and at least one of the threads modifies the list structurally, it
53 * synchronizing on some object that naturally encapsulates the list.
59 * will not result in any corruption of the list or change in behavior other
70 private final List<Object> list; field in class:LazyStringArrayList
73 list = new ArrayList<Object>();
77 list = new ArrayList<Object>(from.size());
82 list = new ArrayList<Object>(from);
87 Object o = list
[all...]
/external/chromium_org/third_party/skia/src/views/
H A DSkViewInflate.cpp123 void SkViewInflate::addIDStr(SkTDArray<IDStr>* list, SkView* view, const char* str) argument
126 IDStr* pair = list->append();
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dspan.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
47 Span* next; // Used when in link list
48 Span* prev; // Used when in link list
49 void* objects; // Linked list of free objects
78 // Doubly linked list of spans.
81 // Initialize *list to an empty list.
82 void DLL_Init(Span* list);
84 // Remove 'span' from the linked list i
89 DLL_IsEmpty(const Span* list) argument
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dspan.h9 // notice, this list of conditions and the following disclaimer.
11 // copyright notice, this list of conditions and the following disclaimer
47 Span* next; // Used when in link list
48 Span* prev; // Used when in link list
49 void* objects; // Linked list of free objects
78 // Doubly linked list of spans.
81 // Initialize *list to an empty list.
82 void DLL_Init(Span* list);
84 // Remove 'span' from the linked list i
89 DLL_IsEmpty(const Span* list) argument
[all...]
/external/chromium_org/tools/gn/
H A Dpattern.cc195 *err = Err(v.origin(), "This value must be a list.");
199 const std::vector<Value>& list = v.list_value(); local
200 for (size_t i = 0; i < list.size(); i++) {
201 if (!list[i].VerifyTypeIs(Value::STRING, err))
203 patterns_.push_back(Pattern(list[i].string_value()));

Completed in 849 milliseconds

1234567891011>>