Searched refs:list (Results 26 - 50 of 1871) sorted by relevance

1234567891011>>

/external/qemu/
H A Dnotify.h35 void notifier_list_init(NotifierList *list);
37 void notifier_list_add(NotifierList *list, Notifier *notifier);
39 void notifier_list_remove(NotifierList *list, Notifier *notifier);
41 void notifier_list_notify(NotifierList *list);
/external/chromium/chrome/browser/sync/
H A Djs_arg_list_unittest.cc21 scoped_ptr<ListValue> list(new ListValue());
22 list->Append(Value::CreateBooleanValue(false));
23 list->Append(Value::CreateIntegerValue(5));
25 list->Append(dict);
29 JsArgList arg_list(*list);
32 scoped_ptr<ListValue> list_copy(list->DeepCopy());
33 list.reset();
51 ListValue list; local
52 list.Append(bool_value.DeepCopy());
53 list
[all...]
/external/dbus/bus/
H A Dexpirelist.h28 #include <dbus/dbus-list.h>
34 typedef dbus_bool_t (* BusExpireFunc) (BusExpireList *list,
50 void bus_expire_list_free (BusExpireList *list);
51 void bus_expire_list_recheck_immediately (BusExpireList *list);
52 void bus_expire_list_remove_link (BusExpireList *list,
54 dbus_bool_t bus_expire_list_remove (BusExpireList *list,
56 DBusList* bus_expire_list_get_first_link (BusExpireList *list);
57 DBusList* bus_expire_list_get_next_link (BusExpireList *list,
59 dbus_bool_t bus_expire_list_add (BusExpireList *list,
61 void bus_expire_list_add_link (BusExpireList *list,
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DJSCSSRuleListCustom.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
39 CSSRuleList* list = impl(); local
42 unsigned length = list->length();
44 markDOMObjectWrapper(markStack, globalData, list->item(i));
H A DJSWebKitAnimationListCustom.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
39 WebKitAnimationList* list = impl(); local
42 unsigned length = list->length();
44 markDOMObjectWrapper(markStack, globalData, list->item(i));
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractSequentialListTest.java73 AbstractSequentialList list = new MyAbstractSequentialList();
74 list.add(1);
75 list.add("value");
76 assertEquals(1, list.get(0));
77 assertEquals("value", list.get(1));
81 list.get(list.size());
87 list.get(-1);
99 AbstractSequentialList list = new MyAbstractSequentialList();
100 list
144 private LinkedList list = new LinkedList(); field in class:AbstractSequentialListTest.MyAbstractSequentialList
[all...]
/external/e2fsprogs/e2fsck/
H A Dprofile_helpers.c8 * list of sections or relations, or accessing multiple values from a
31 * internal functions used to build up a null-terminated char ** list
35 * purposes to build up the list, which is returned in *ret_list by
38 * The publicly exported interface for freeing char** list is
43 char **list; member in struct:profile_string_list
49 * Initialize the string list abstraction.
51 static errcode_t init_list(struct profile_string_list *list) argument
53 list->num = 0;
54 list->max = 10;
55 list
66 end_list(struct profile_string_list *list, char ***ret_list) argument
88 add_to_list(struct profile_string_list *list, char *str) argument
110 is_list_member(struct profile_string_list *list, const char *str) argument
128 profile_free_list(char **list) argument
[all...]
/external/ipsec-tools/src/racoon/
H A Drsalist.h13 * notice, this list of conditions and the following disclaimer.
15 * notice, this list of conditions and the following disclaimer in the
55 int rsa_key_insert(struct genlist *list, struct netaddr *src, struct netaddr *dst, RSA *rsa);
56 void rsa_key_dump(struct genlist *list);
59 RSA *rsa_try_check_rsasign(vchar_t *source, vchar_t *sig, struct genlist *list);
61 unsigned long rsa_list_count(struct genlist *list);
63 int rsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type);
/external/mesa3d/src/mesa/program/
H A Dprog_uniform.h76 _mesa_free_uniform_list(struct gl_uniform_list *list);
79 _mesa_append_uniform(struct gl_uniform_list *list,
83 _mesa_lookup_uniform(const struct gl_uniform_list *list, const char *name);
86 _mesa_longest_uniform_name(const struct gl_uniform_list *list);
89 _mesa_print_uniforms(const struct gl_uniform_list *list);
/external/icu4c/common/
H A Dulist.c33 static void ulist_addFirstItem(UList *list, UListNode *newItem);
58 * Function called by addItemEndList or addItemBeginList when the first item is added to the list.
61 static void ulist_addFirstItem(UList *list, UListNode *newItem) { argument
64 list->head = newItem;
65 list->tail = newItem;
66 list->currentIndex = 0;
69 U_CAPI void U_EXPORT2 ulist_addItemEndList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) { argument
72 if (U_FAILURE(*status) || list == NULL || data == NULL) {
84 if (list->size == 0) {
85 ulist_addFirstItem(list, newIte
96 ulist_addItemBeginList(UList *list, const void *data, UBool forceDelete, UErrorCode *status) argument
124 ulist_containsString(const UList *list, const char *data, int32_t length) argument
146 ulist_getNext(UList *list) argument
160 ulist_getListSize(const UList *list) argument
168 ulist_resetList(UList *list) argument
175 ulist_deleteList(UList *list) argument
[all...]
/external/dropbear/libtommath/
H A Ddep.pl62 my $list = $filename;
75 if (!($list =~ /$a/)) {
78 $list = $list . "," . $a;
82 @deplist{$filename} = $list;
96 $list = "";
105 if ($list =~ /@funcs[0]/) {
108 $list = $list . @funcs[0];
114 my $temp = $list;
[all...]
/external/freetype/include/freetype/
H A Dftlist.h5 /* Generic list support for FreeType (specification). */
21 /* This file implements functions relative to list processing. Its */
56 /* This section contains various definitions related to list */
84 /* Find the list node for a given listed object. */
87 /* list :: A pointer to the parent list. */
94 FT_List_Find( FT_List list,
104 /* Append an element to the end of a list. */
107 /* list :: A pointer to the parent list
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuList.cpp8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
56 AccessibilityObject* list = cache->getOrCreate(MenuListPopupRole); local
57 if (!list)
60 if (list->accessibilityPlatformIncludesObject() == IgnoreObject) {
61 cache->remove(list->axObjectID());
65 static_cast<AccessibilityMenuListPopup*>(list)->setMenuList(this);
66 m_children.append(list);
68 list->addChildren();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_ListTest.java27 List<Integer> list; // must contain the Integers 0 to 99 in order field in class:Support_ListTest
35 list = l;
43 elem = list.get(counter);
48 assertTrue("ListTest - hashCode failed", hashCode == list.hashCode());
50 list.add(50, new Integer(1000));
51 assertTrue("ListTest - a) add with index failed--did not insert", list
55 list.get(51).equals(new Integer(50)));
58 list.get(49).equals(new Integer(49)));
60 list.set(50, new Integer(2000));
61 assertTrue("ListTest - a) set failed--did not set", list
128 t_listIterator(List<Integer> list) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
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/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstArray.java26 /** {@code non-null;} the actual list of contents */
27 private final List list; field in class:CstArray
32 * @param list {@code non-null;} the actual list of contents
34 public CstArray(List list) { argument
35 if (list == null) {
36 throw new NullPointerException("list == null");
39 list.throwIfMutable();
41 this.list = list;
[all...]
/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/clang/test/SemaCXX/
H A Dvararg-non-pod.cpp100 __builtin_va_list list; local
101 __builtin_va_start(list, somearg);
105 __builtin_va_list list; local
106 __builtin_va_start(list, n);
107 (void)__builtin_va_arg(list, C); // expected-warning{{second argument to 'va_arg' is of non-POD type 'C'}}
108 __builtin_va_end(list);
116 __builtin_va_list list; local
117 __builtin_va_start(list, n);
118 (void)__builtin_va_arg(list, Abstract); // expected-error{{second argument to 'va_arg' is of abstract type 'Abstract'}}
119 __builtin_va_end(list);
[all...]
/external/elfutils/libelf/
H A Delf_nextscn.c31 Inc. may make changes or additions to the list of Approved Interfaces.
92 Elf_ScnList *list = scn->list; local
94 if (scn + 1 < &list->data[list->cnt])
96 else if (scn + 1 == &list->data[list->max]
97 && (list = list->next) != NULL)
99 /* If there is another element in the section list i
[all...]
/external/okhttp/src/main/java/libcore/util/
H A DCollectionUtils.java82 * Sorts and removes duplicate elements from {@code list}. This method does
85 public static <T> void removeDuplicates(List<T> list, Comparator<? super T> comparator) { argument
86 Collections.sort(list, comparator);
88 for (int i = 1; i < list.size(); i++) {
89 if (comparator.compare(list.get(j - 1), list.get(i)) != 0) {
90 T object = list.get(i);
91 list.set(j++, object);
94 if (j < list.size()) {
95 list
[all...]
/external/protobuf/src/google/protobuf/compiler/
H A Dzip_output_unittest.sh12 # notice, this list of conditions and the following disclaimer.
14 # copyright notice, this list of conditions and the following disclaimer
55 unzip -t testzip.zip > testzip.list || fail 'unzip failed.'
57 grep 'testing: testzip\.pb\.cc *OK$' testzip.list > /dev/null \
59 grep 'testing: testzip\.pb\.h *OK$' testzip.list > /dev/null \
61 grep 'testing: testzip_pb2\.py *OK$' testzip.list > /dev/null \
63 grep -i 'manifest' testzip.list > /dev/null \
71 jar tf testzip.jar > testzip.list || fail 'jar failed.'
73 grep '^test/jar/Foo\.java$' testzip.list > /dev/null \
75 grep '^test/jar/Bar\.java$' testzip.list > /de
[all...]
/external/valgrind/main/coregrind/m_gdbserver/
H A Dinferiors.c41 void add_inferior_to_list (struct inferior_list *list, argument
45 if (list->tail != NULL)
46 list->tail->next = new_inferior;
48 list->head = new_inferior;
49 list->tail = new_inferior;
52 void for_each_inferior (struct inferior_list *list, argument
55 struct inferior_list_entry *cur = list->head, *next;
64 void change_inferior_id (struct inferior_list *list, argument
67 if (list->head != list
73 remove_inferior(struct inferior_list *list, struct inferior_list_entry *entry) argument
178 find_inferior(struct inferior_list *list, int (*func) (struct inferior_list_entry *, void *), void *arg) argument
195 find_inferior_id(struct inferior_list *list, unsigned long id) argument
[all...]
/external/chromium/net/base/
H A Daddress_list_net_log_param.cc19 ListValue* list = new ListValue(); local
23 list->Append(Value::CreateStringValue(NetAddressToStringWithPort(head)));
26 dict->Set("address_list", list);
/external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
H A Dder_decode_sequence_multi.c23 Decode a SEQUENCE type using a VA list
35 ltc_asn1_list *list; local
82 list = XCALLOC(sizeof(*list), x);
83 if (list == NULL) {
115 list[x].type = type;
116 list[x].size = size;
117 list[x++].data = data;
128 err = der_decode_sequence(in, inlen, list, x);
130 XFREE(list);
[all...]
H A Dder_encode_sequence_multi.c23 Encode a SEQUENCE type using a VA list
35 ltc_asn1_list *list; local
82 list = XCALLOC(sizeof(*list), x);
83 if (list == NULL) {
114 list[x].type = type;
115 list[x].size = size;
116 list[x++].data = data;
127 err = der_encode_sequence(list, x, out, outlen);
129 XFREE(list);
[all...]

Completed in 1730 milliseconds

1234567891011>>