Searched refs:list (Results 126 - 150 of 1911) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/css/
H A DCSSRuleList.cpp36 CSSRuleList::CSSRuleList(StyleList* list, bool omitCharsetRules) argument
38 m_list = list;
39 if (list && omitCharsetRules) {
41 unsigned len = list->length();
43 StyleBase* style = list->item(i);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_introspect.c14 #include "utils/list.h"
21 struct dl_list list; member in struct:interfaces
27 static struct interfaces * add_interface(struct dl_list *list, argument
32 dl_list_for_each(iface, list, struct interfaces, list) {
34 return iface; /* already in the list */
46 dl_list_add_tail(list, &iface->list);
95 struct dl_list *list, const struct wpa_dbus_method_desc *methods)
100 iface = add_interface(list, ds
94 extract_interfaces_methods( struct dl_list *list, const struct wpa_dbus_method_desc *methods) argument
108 extract_interfaces_signals( struct dl_list *list, const struct wpa_dbus_signal_desc *signals) argument
122 extract_interfaces_properties( struct dl_list *list, const struct wpa_dbus_property_desc *properties) argument
145 extract_interfaces(struct dl_list *list, struct wpa_dbus_object_desc *obj_dsc) argument
154 add_interfaces(struct dl_list *list, struct wpabuf *xml) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DClassFile.java168 ArrayList list = methods;
169 int n = list.size();
171 MethodInfo minfo = (MethodInfo)list.get(i);
175 list = fields;
176 n = list.size();
178 FieldInfo finfo = (FieldInfo)list.get(i);
233 ArrayList list = methods;
234 int n = list.size();
236 MethodInfo minfo = (MethodInfo)list.get(i);
240 list
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dautofill_options_list.js12 * Creates a new address list item.
36 label.className = 'autofill-list-item';
43 * Creates a new credit card list item.
69 label.className = 'autofill-list-item';
82 * Creates a new value list item.
83 * @param {AutofillValuesList} list The parent list of this item.
88 function ValuesListItem(list, entry) {
90 el.list = list;
[all...]
/external/stlport/test/unit/
H A Dlist_test.cpp5 #include <list>
60 list<int> l1(array1, array1 + 3);
61 list<int> l2(array2, array2 + 2);
62 list<int>::iterator i1 = l1.begin();
63 list<int>::iterator i2 = l2.begin();
64 list<int>::const_iterator ci(i1);
65 list<int>::const_iterator ci1(ci);
80 list<int> l(2);
88 list<char>::iterator l_char_ite;
89 list<in
[all...]
/external/e2fsprogs/resize/
H A Dextent.c27 struct ext2_extent_entry *list; member in struct:_ext2_extent
53 extent->size, &extent->list);
58 memset(extent->list, 0,
69 if (extent->list)
70 ext2fs_free_mem(&extent->list);
71 extent->list = 0;
92 newsize, &extent->list);
98 ent = extent->list + curr;
149 qsort(extent->list, extent->num,
163 lowval = extent->list[lo
[all...]
/external/proguard/src/proguard/gui/
H A DListPanel.java33 * list and between lists. Extensions of this class should add buttons to add
34 * and possibly edit entries, and to set and get the resulting list.
41 protected final JList list = new JList(listModel); field in class:ListPanel
61 list.addListSelectionListener(new ListSelectionListener()
69 add(new JScrollPane(list), listConstraints);
90 removeElementsAt(list.getSelectedIndices());
105 int[] selectedIndices = list.getSelectedIndices();
126 int[] selectedIndices = list.getSelectedIndices();
156 int[] selectedIndices = list.getSelectedIndices();
157 Object[] selectedElements = list
[all...]
/external/e2fsprogs/lib/et/
H A Dcom_err.h52 extern const char *com_right(struct et_list *list, long code);
53 extern const char *com_right_r(struct et_list *list, long code, char *str, size_t len);
54 extern void initialize_error_table_r(struct et_list **list,
/external/junit/src/org/junit/experimental/theories/suppliers/
H A DTestedOnSupplier.java15 List<PotentialAssignment> list = new ArrayList<PotentialAssignment>();
19 list.add(PotentialAssignment.forValue(Arrays.asList(ints).toString(), i));
21 return list;
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DErrorInfoParser.java69 ErrorInfoList list = new ErrorInfoList();
88 list.add(errorInfo);
96 return list;
/external/skia/legacy/src/animator/
H A DSkDisplayList.cpp53 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list, argument
56 *list = &fDrawList;
58 return SearchForMatch(match, list, parent, found, grandList);
71 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, argument
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
100 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, argument
105 SkTDDrawableArray* saveList = *list;
[all...]
/external/skia/src/animator/
H A DSkDisplayList.cpp53 int SkDisplayList::findGroup(SkDrawable* match, SkTDDrawableArray** list, argument
56 *list = &fDrawList;
58 return SearchForMatch(match, list, parent, found, grandList);
71 int SkDisplayList::SearchForMatch(SkDrawable* match, SkTDDrawableArray** list, argument
74 for (int index = 0; index < (*list)->count(); index++) {
75 SkDrawable* draw = (**list)[index];
82 if (apply->scope->isGroup() && SearchGroupForMatch(apply->scope, match, list, parent, found, grandList, index))
93 if (draw->isGroup() && SearchGroupForMatch(draw, match, list, parent, found, grandList, index))
100 bool SkDisplayList::SearchGroupForMatch(SkDrawable* draw, SkDrawable* match, SkTDDrawableArray** list, argument
105 SkTDDrawableArray* saveList = *list;
[all...]
/external/v8/tools/
H A Dutils.py7 # notice, this list of conditions and the following disclaimer.
9 # copyright notice, this list of conditions and the following
33 # Reads a .list file into an array of strings
35 list = []
42 list.append(line)
43 return list
/external/webkit/Source/WebCore/bindings/js/
H A DJSScriptProfileNodeCustom.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
54 MarkedArgumentBuffer list; local
58 list.append(toJS(exec, iter->get()));
60 return constructArray(exec, list);
H A DJSStyleSheetListCustom.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
42 StyleSheetList* list = impl(); local
45 unsigned length = list->length();
47 markDOMObjectWrapper(markStack, globalData, list->item(i));
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h14 #include <list>
31 mutable std::list<ListItem*>::iterator this_iter_;
61 mutable std::list<ListItem*> list_;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertificateFactorySpi.java46 // mode: false - list of encodings is empty
47 // mode: true - list of encodings consists of 2 elements
51 private Set list; field in class:MyCertificateFactorySpi
56 list = new HashSet();
57 list.add("aa");
58 list.add("bb");
133 list.clear();
135 return list.iterator();
/external/e2fsprogs/lib/ext2fs/
H A Dfreefs.c77 * This procedure frees a badblocks list.
84 if (bb->list)
85 ext2fs_free_mem(&bb->list);
86 bb->list = 0;
97 * Free a directory block list
104 if (dblist->list)
105 ext2fs_free_mem(&dblist->list);
106 dblist->list = 0;
/external/freetype/src/base/
H A Dftutil.c5 /* FreeType utility file for memory and list management (body). */
241 FT_List_Find( FT_List list,
247 cur = list->head;
263 FT_List_Add( FT_List list, argument
266 FT_ListNode before = list->tail;
275 list->head = node;
277 list->tail = node;
284 FT_List_Insert( FT_List list, argument
287 FT_ListNode after = list->head;
294 list
305 FT_List_Remove( FT_List list, FT_ListNode node ) argument
329 FT_List_Up( FT_List list, FT_ListNode node ) argument
386 FT_List_Finalize( FT_List list, FT_List_Destructor destroy, FT_Memory memory, void* user ) argument
[all...]
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Dbasic-multi-touch-events-limited.js44 function verifyTouchPoint(list, point, x, y, id)
46 shouldBe("lastEvent." + list + "[" + point + "].pageX", x.toString());
47 shouldBe("lastEvent." + list + "[" + point + "].pageY", y.toString());
48 shouldBe("lastEvent." + list + "[" + point + "].clientX", x.toString());
49 shouldBe("lastEvent." + list + "[" + point + "].clientY", y.toString());
50 shouldBe("lastEvent." + list + "[" + point + "].identifier", id.toString());
H A Dbasic-multi-touch-events.js44 function verifyTouchPoint(list, point, x, y, id)
46 shouldBe("lastEvent." + list + "[" + point + "].pageX", x.toString());
47 shouldBe("lastEvent." + list + "[" + point + "].pageY", y.toString());
48 shouldBe("lastEvent." + list + "[" + point + "].clientX", x.toString());
49 shouldBe("lastEvent." + list + "[" + point + "].clientY", y.toString());
50 shouldBe("lastEvent." + list + "[" + point + "].identifier", id.toString());
/external/webkit/Source/WebKit/android/plugins/
H A DPluginTimer.cpp9 * notice, this list of conditions and the following disclaimer.
11 * notice, this list of conditions and the following disclaimer in the
35 PluginTimer::PluginTimer(PluginTimer** list, NPP instance, bool repeat, argument
37 : m_list(list),
45 m_next = *list;
50 *list = this;
84 PluginTimer* PluginTimer::Find(PluginTimer* list, uint32_t timerID) argument
86 PluginTimer* curr = list;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableListTest.java132 List<String> list = ImmutableList.of();
133 assertEquals(Collections.emptyList(), list);
137 List<String> list = ImmutableList.of("a");
138 assertEquals(Collections.singletonList("a"), list);
142 List<String> list = ImmutableList.of("a", "b");
143 assertEquals(Lists.newArrayList("a", "b"), list);
147 List<String> list = ImmutableList.of("a", "b", "c");
148 assertEquals(Lists.newArrayList("a", "b", "c"), list);
152 List<String> list = ImmutableList.of("a", "b", "c", "d");
153 assertEquals(Lists.newArrayList("a", "b", "c", "d"), list);
505 perform(List<Integer> list) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
H A DX509ExtensionUtil.java65 List list = new ArrayList();
66 list.add(Integers.valueOf(genName.getTagNo()));
72 list.add(genName.getName().toASN1Primitive());
75 list.add(X500Name.getInstance(genName.getName()).toString());
80 list.add(((ASN1String)genName.getName()).getString());
83 list.add(ASN1ObjectIdentifier.getInstance(genName.getName()).getId());
86 list.add(DEROctetString.getInstance(genName.getName()).getOctets());
92 temp.add(list);
/external/chromium/net/ftp/
H A Dftp_auth_cache.h9 #include <list>
57 typedef std::list<Entry> EntryList;
59 // Internal representation of cache, an STL list. This makes lookups O(n),

Completed in 970 milliseconds

1234567891011>>