HomeSort by relevance Sort by last modified time
    Searched full:list (Results 101 - 125 of 20302) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/elfutils/lib/
ChangeLog 9 * Makefile.am (noinst_HEADERS): Add list.h.
10 * list.h: New file.
  /external/qemu/
qemu-option.h 52 * The following functions take a parameter list as input. This is a pointer to
57 QEMUOptionParameter *get_option_parameter(QEMUOptionParameter *list,
59 int set_option_parameter(QEMUOptionParameter *list, const char *name,
61 int set_option_parameter_int(QEMUOptionParameter *list, const char *name,
64 QEMUOptionParameter *list, QEMUOptionParameter *dest);
65 void free_option_parameters(QEMUOptionParameter *list);
66 void print_option_parameters(QEMUOptionParameter *list);
67 void print_option_help(QEMUOptionParameter *list);
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
NamedNodeMapImpl.java 25 import java.util.List;
41 private List<NodeImpl> list; field in class:NamedNodeMapImpl
44 list = new ArrayList<NodeImpl>();
48 NamedNodeMapImpl(List<NodeImpl> list, Class<?> type) {
49 this.list = list;
54 return list.size();
58 for (int i = 0; i < list.size(); i++)
    [all...]
  /development/tools/mkstubs/tests/data/
TestTemplateClass.java 23 import java.util.List;
47 public void draw(List<? extends Rect> shape) {
50 public static <T extends Comparable<? super T>> void sort(List<T> list) {
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) {
  /external/ppp/pppd/
spinlock.h 37 int tdb_spinlock(TDB_CONTEXT *tdb, int list, int rw_type);
38 int tdb_spinunlock(TDB_CONTEXT *tdb, int list, int rw_type);
47 #define tdb_spinlock(tdb, list, rw_type) (-1)
48 #define tdb_spinunlock(tdb, list, rw_type) (-1)
50 int tdb_spinlock(TDB_CONTEXT *tdb, int list, int rw_type);
51 int tdb_spinunlock(TDB_CONTEXT *tdb, int list, int rw_type);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
AbstractCorpusRanker.java 23 import java.util.List;
34 // Cached list of ranked corpora. Set to null when mCorpora changes.
35 private List<Corpus> mRankedCorpora;
43 * Creates a ranked list of corpora.
45 protected abstract List<Corpus> rankCorpora(Corpora corpora);
47 public List<Corpus> getRankedCorpora() {
  /external/e2fsprogs/lib/blkid/
list.h 15 * Simple doubly linked list implementation.
40 * This is only for internal list manipulation where we know
56 * @head: list head to add it after
69 * @head: list head to add it before
80 * Delete a list entry by making the prev/next entries
83 * This is only for internal list manipulation where we know
94 * list_del - deletes entry from list.
95 * @entry: the element to delete from the list.
106 * list_del_init - deletes entry from list and reinitialize it.
107 * @entry: the element to delete from the list
    [all...]
  /external/e2fsprogs/lib/ext2fs/
dblist.c 2 * dblist.c -- directory block list functions
54 * helper function for making a new directory block list (for
58 struct ext2_db_entry *list,
89 &dblist->list);
93 if (list)
94 memcpy(dblist->list, list, len);
96 memset(dblist->list, 0, len);
109 * Initialize a directory block list
130 * Copy a directory block list
    [all...]
  /external/v8/src/
list-inl.h 7 // notice, this list of conditions and the following disclaimer.
9 // copyright notice, this list of conditions and the following
31 #include "list.h"
38 void List<T, P>::Add(const T& element) {
42 List<T, P>::ResizeAdd(element);
48 void List<T, P>::AddAll(const List<T, P>& other) {
61 void List<T, P>::ResizeAdd(const T& element) {
67 void List<T, P>::ResizeAddInternal(const T& element) {
69 // Grow the list capacity by 50%, but make sure to let it gro
    [all...]
  /external/webkit/WebKit/win/Interfaces/
IWebBackForwardList.idl 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
36 WebBackForwardList holds an ordered list of WebHistoryItems that comprises the back and
53 @abstract Adds an entry to the list.
56 If the current position in the list is not at the end of the list, elements in the
57 forward list will be dropped at this point. In addition, entries may be dropped to keep
58 the size of the list within the maximum size.
111 @abstract Returns a portion of the list before the current entry.
116 HRESULT backListWithLimit([in] int limit, [out] int* listCount, [in] IWebHistoryItem** list);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
FolderTypeRelationship.java 23 import java.util.List;
40 HashMap<ResourceType, List<ResourceFolderType>> typeToFolderMap =
41 new HashMap<ResourceType, List<ResourceFolderType>>();
43 HashMap<ResourceFolderType, List<ResourceType>> folderToTypeMap =
44 new HashMap<ResourceFolderType, List<ResourceType>>();
65 * Returns a list of {@link ResourceType}s that can be generated from files inside a folder
79 * Returns a list of {@link ResourceFolderType} that can contain files generating resources
122 HashMap<ResourceType, List<ResourceFolderType>> typeToFolderMap,
123 HashMap<ResourceFolderType, List<ResourceType>> folderToTypeMap) {
124 // first we add the folder to the list associated with the type
154 List<ResourceFolderType> list = typeToFolderMap.get(type); local
160 List<ResourceType> list = folderToTypeMap.get(folder); local
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_multi.c 23 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...]
der_encode_sequence_multi.c 23 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...]
  /frameworks/base/core/java/com/google/android/collect/
Lists.java 23 * Provides static methods for creating {@code List} instances easily, and other
31 * <p><b>Note:</b> if you only need an <i>immutable</i> empty List, use
47 * <p>{@code List<Base> list = Lists.newArrayList(sub1, sub2);}
53 * <p>{@code List<Base> list = Lists.<Base>newArrayList(sub1, sub2);}
55 * @param elements the elements that the list should contain, in order
60 ArrayList<E> list = new ArrayList<E>(capacity); local
61 Collections.addAll(list, elements);
62 return list;
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
Collapser.java 26 * function that takes an ArrayList of items and returns a list of the same items collapsed into
46 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
50 * @param list ArrayList of Objects of type <T extends Collapsible<T>> to be collapsed.
52 public static <T extends Collapsible<T>> void collapseList(ArrayList<T> list) {
54 int listSize = list.size();
57 T iItem = list.get(i);
60 T jItem = list.get(j);
64 list.set(j, null);
72 Iterator<T> itr = list.iterator()
    [all...]
  /external/e2fsprogs/e2fsck/
ea_refcount.c 32 struct ea_refcount_el *list; member in struct:ea_refcount
40 if (refcount->list)
41 ext2fs_free_mem(&refcount->list);
64 retval = ext2fs_get_mem(bytes, &refcount->list);
67 memset(refcount->list, 0, bytes);
87 struct ea_refcount_el *list; local
89 list = refcount->list;
91 if (list[i].ea_count) {
93 list[j] = list[i]
300 struct ea_refcount_el *list; local
    [all...]
  /external/stlport/test/unit/
list_test.cpp 5 #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<int>::iterator l_int_ite
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
AidlTest.java 26 import java.util.List;
113 public TestParcelable listParcelableLonger(List<TestParcelable> list, int index) {
114 list.add(list.get(index));
115 return list.get(index);
118 public int listParcelableShorter(List<TestParcelable> list, int index) {
119 list.remove(index);
120 return list.size()
241 List<TestParcelable> list = Lists.newArrayList(); local
265 List<TestParcelable> list = Lists.newArrayList(); local
    [all...]
  /external/bluetooth/glib/gio/inotify/
inotify-missing.c 36 /* We put inotify_sub's that are missing on this list */
63 IM_W ("asked to add %s to missing list but it's already on the list!\n", sub->dirname);
67 IM_W ("adding %s to missing list\n", sub->dirname);
88 IM_W ("asked to remove %s from missing list but it isn't on the list!\n", sub->dirname);
92 IM_W ("removing %s from missing list\n", sub->dirname);
98 /* Scans the list of missing subscriptions checking if they
109 IM_W ("scanning missing list with %d items\n", g_list_length (missing_sub_list));
123 IM_W ("removed %s from missing list\n", sub->dirname)
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 26 import java.util.List;
112 List<ICalendar.Property> list = component.getProperties("DTSTART"); local
113 assertTrue(list.size() == 1);
114 assertEquals("19700101T000000Z", list.get(0).getValue());
116 list = component.getProperties("RRULE");
117 assertTrue(list.size() == 1);
118 assertEquals(RRULE_LESS_THAN_75_CHARS,list.get(0).getValue());
129 list = component.getProperties("RRULE");
130 assertTrue(list.size() == 1)
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigExecutableMember.java 27 import java.util.List;
35 private List<IParameter> parameters = Uninitialized.unset();
38 private List<ITypeVariableDefinition> typeParameters = Uninitialized
50 public List<IParameter> getParameters() {
54 public void setParameters(List<IParameter> parameters) {
74 public List<ITypeVariableDefinition> getTypeParameters() {
79 List<ITypeVariableDefinition> typeParameters) {
  /external/iproute2/ip/
ipmaddr.c 193 static void print_maddr(FILE *fp, struct ma_info *list)
197 if (list->addr.family == AF_PACKET) {
199 fprintf(fp, "link %s", ll_addr_n2a((unsigned char*)list->addr.data,
200 list->addr.bytelen, 0,
204 switch(list->addr.family) {
212 fprintf(fp, "family %d ", list->addr.family);
216 format_host(list->addr.family,
218 list->addr.data,
221 if (list->users != 1)
222 fprintf(fp, " users %d", list->users)
246 struct ma_info *list = NULL; local
    [all...]
  /external/proguard/src/proguard/io/
NameFilter.java 25 import java.util.List;
37 * on the given list of filters.
48 * readers, depending on the given list of filters.
62 * on the given list of filters.
64 public NameFilter(List regularExpressions,
73 * readers, depending on the given list of filters.
75 public NameFilter(List regularExpressions,
  /frameworks/base/media/java/android/media/
DecoderCapabilities.java 19 import java.util.List;
51 * Returns the list of video decoder types
54 public static List<VideoDecoder> getVideoDecoders() {
55 List<VideoDecoder> decoderList = new ArrayList<VideoDecoder>();
64 * Returns the list of audio decoder types
67 public static List<AudioDecoder> getAudioDecoders() {
68 List<AudioDecoder> decoderList = new ArrayList<AudioDecoder>();
  /packages/apps/Camera/src/com/android/camera/
PreferenceGroup.java 29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {

Completed in 182 milliseconds

1 2 3 45 6 7 8 91011>>