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

1234567891011>>

/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/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/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/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/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/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...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
H A DTokenizer.java33 String list[] = new String[numtoken];
40 list[i] = "";
47 list[i] = source.substring(nextfield, idx);
52 return list;
/external/dropbear/libtomcrypt/src/pk/asn1/der/choice/
H A Dder_decode_choice.c24 @param list The list of items to decode
25 @param outlen The number of items in the list
29 ltc_asn1_list *list, unsigned long outlen)
36 LTC_ARGCHK(list != NULL);
45 list[x].used = 0;
50 size = list[x].size;
51 data = list[x].data;
53 switch (list[x].type) {
57 list[
28 der_decode_choice(const unsigned char *in, unsigned long *inlen, ltc_asn1_list *list, unsigned long outlen) argument
[all...]
/external/eigen/Eigen/src/StlSupport/
H A DStdList.h17 #define EIGEN_EXPLICIT_STL_LIST_INSTANTIATION(...) template class std::list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> >;
24 * std::list such that for data types with alignment issues the correct allocator
32 class list<__VA_ARGS__, _Ay> \
33 : public list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
35 typedef list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > list_base; \
41 explicit list(const allocator_type& a = allocator_type()) : list_base(a) {} \
43 list(InputIterator first, InputIterator last, const allocator_type& a = allocator_type()) : list_base(first, last, a) {} \
44 list(const list& c) : list_base(c) {} \
45 explicit list(size_typ
80 class list<T,EIGEN_ALIGNED_ALLOCATOR<T> > class in namespace:std
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLightList.java10 * notice, this list of conditions and the following disclaimer.
13 * notice, this list of conditions and the following disclaimer in the
49 private Light[] list, tlist; field in class:LightList
83 list = new Light[DEFAULT_SIZE];
98 Light[] temp = new Light[list.length * 2];
99 float[] temp2 = new float[list.length * 2];
100 System.arraycopy(list, 0, temp, 0, list.length);
101 System.arraycopy(distToOwner, 0, temp2, 0, list.length);
102 list
[all...]
/external/v8/src/
H A Dsmall-pointer-list.h7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
38 // SmallPointerList is a list optimized for storing no or just a
41 // The interface tries to be as close to List from list.h as possible.
54 if (list()->capacity() >= capacity) return;
55 int old_length = list()->length();
56 list()->AddBlock(NULL, capacity - list()->capacity());
57 list()->Rewind(old_length);
60 PointerList* list local
87 PointerList* list = new PointerList(2); local
176 PointerList* list() const { function in class:v8::internal::SmallPointerList
[all...]
/external/chromium/chrome/browser/resources/options/
H A Dautofill_edit_address_overlay.js57 var list = $('full-name-list');
58 options.autofillOptions.AutofillValuesList.decorate(list);
59 list.autoExpands = true;
61 list = $('phone-list');
62 options.autofillOptions.AutofillValuesList.decorate(list);
63 list.autoExpands = true;
65 list = $('fax-list');
[all...]

Completed in 7459 milliseconds

1234567891011>>