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

1 2 3 4 5 67 8 91011>>

  /external/proguard/src/proguard/gui/
ListPanel.java 25 import java.util.List;
33 * 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()
188 List list = new ArrayList(getComponentCount()-1); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectResources.java 40 import java.util.List;
56 private final HashMap<ResourceFolderType, List<ResourceFolder>> mFolderMap =
57 new HashMap<ResourceFolderType, List<ResourceFolder>>();
59 private final HashMap<ResourceType, List<ProjectResourceItem>> mResourceMap =
60 new HashMap<ResourceType, List<ProjectResourceItem>>();
72 /** Cached list of {@link IdResourceItem}. This is mix of IdResourceItem created by
74 * {@link IdResourceItem} created manually, from the list coming from R.java */
118 // get the list for the resource type
119 List<ResourceFolder> list = mFolderMap.get(type) local
158 List<ResourceFolder> list = mFolderMap.get(type); local
233 ArrayList<ResourceType> list = new ArrayList<ResourceType>(); local
616 List<ResourceFile> list = item.getSourceFileList(); local
874 List<ProjectResourceItem> list = mResourceMap.get(type); local
    [all...]
  /dalvik/libcore/luni/src/main/java/java/util/
Collections.java 175 * An empty immutable instance of {@link List}.
178 public static final List EMPTY_LIST = new EmptyList();
515 SynchronizedRandomAccessList(List<E> l) {
519 SynchronizedRandomAccessList(List<E> l, Object mutex) {
524 public List<E> subList(int start, int end) {
526 return new SynchronizedRandomAccessList<E>(list.subList(start,
543 return new SynchronizedList<E>(list);
548 implements List<E> {
551 final List<E> list;
    [all...]
ListIterator.java 22 * An ListIterator is used to sequence over a List of objects. ListIterator can
23 * move backwards or forwards through the list.
28 * Inserts the specified object into the list between {@code next} and
34 * if adding is not supported by the list being iterated.
36 * if the class of the object is inappropriate for the list.
38 * if the object cannot be added to the list.
72 * @return the index of the next object, or the size of the list if the
103 * the list.
106 * if removing is not supported by the list being iterated.
121 * if setting is not supported by the list being iterate
    [all...]
  /external/opencore/engines/player/include/
pv_player_track_selection_interface.h 60 * that holds the complete list of playable tracks.
63 * that holds the complete list of tracks that the user of SDK
65 * memory to populate the preference list.
67 * @returns PVMFSuccess if the wish list was successfully populated,
75 * A synchronous method to release the playable list of available tracks.
80 * that holds the preference list.
97 * A synchronous method to get the complete list of available tracks.
102 * that holds the complete list of available tracks. pvPlayerSDK
105 * @returns PVMFSuccess if the list was successfully populated,
112 * A synchronous method to release the complete list of available tracks
    [all...]
  /external/stlport/stlport/stl/
_list.c 87 # define list _STLP_PTR_IMPL_NAME(list) macro
89 # define list _STLP_NON_DBG_NAME(list) macro
95 void list<_Tp, _Alloc>::resize(size_type __new_size, const _Tp& __x) {
107 list<_Tp, _Alloc>& list<_Tp, _Alloc>::operator=(const list<_Tp, _Alloc>& __x) {
124 void list<_Tp, _Alloc>::_M_fill_assign(size_type __n, const _Tp& __val) {
134 #if !defined (list)
239 # undef list macro
    [all...]
  /external/yaffs2/yaffs2/
devextras.h 45 * Simple doubly linked list implementation.
72 * This is only for internal list manipulation where we know
88 * @head: list head to add it after
101 * @head: list head to add it before
113 * Delete a list entry by making the prev/next entries
116 * This is only for internal list manipulation where we know
127 * list_del - deletes entry from list.
128 * @entry: the element to delete from the list.
138 * list_del_init - deletes entry from list and reinitialize it.
139 * @entry: the element to delete from the list
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
UniformListItem.java 23 import java.util.List;
26 * Class that represents a contiguous list of uniform items. Each
27 * item in the list, in particular, must have the same write size and
33 * output list size (which is four bytes) and before the first item.</p>
39 /** the size of the list header */
46 private final List<T> items;
49 * Constructs an instance. It is illegal to modify the given list once
53 * @param items {@code non-null and non-empty;} list of items to represent
55 public UniformListItem(ItemType itemType, List<T> items) {
68 * requirement implied by the given list. See the header comment fo
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/sequence/
der_decode_sequence_ex.c 26 @param list The list of items to decode
27 @param outlen The number of items in the list
28 @param ordered Search an unordeded or ordered list
32 ltc_asn1_list *list, unsigned long outlen, int ordered)
39 LTC_ARGCHK(list != NULL);
80 list[i].used = 0;
87 type = list[i].type;
88 size = list[i].size;
89 data = list[i].data
    [all...]
  /external/e2fsprogs/lib/blkid/
devno.c 65 * This function adds an entry to the directory list
67 static void add_to_dirlist(const char *name, struct dir_list **list)
79 dp->next = *list;
80 *list = dp;
84 * This function frees a directory list
86 static void free_dirlist(struct dir_list **list)
90 for (dp = *list; dp; dp = next) {
95 *list = NULL;
98 static void scan_dir(char *dirname, dev_t devno, struct dir_list **list,
132 add_to_dirlist(path, list);
148 struct dir_list *list = NULL, *new_list = NULL; local
    [all...]
  /external/e2fsprogs/resize/
extent.c 27 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[low].old_loc
    [all...]
  /external/ipsec-tools/src/racoon/
rsalist.c 14 * notice, this list of conditions and the following disclaimer.
16 * notice, this list of conditions and the following disclaimer in the
65 int prsa_parse_file(struct genlist *list, const char *fname, enum rsa_key_type type);
68 rsa_key_insert(struct genlist *list, struct netaddr *src,
86 genlist_append(list, rsa_key);
106 rsa_key_dump(struct genlist *list)
108 genlist_foreach(list, rsa_key_dump_one, NULL);
120 rsa_list_count(struct genlist *list)
123 genlist_foreach(list, rsa_list_count_one, &count);
158 /* Always traverse the whole list */
165 struct genlist *list; local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2fsP.h 15 * Badblocks list
21 __u32 *list; member in struct:ext2_struct_u32_list
41 struct ext2_db_entry * list; member in struct:ext2_struct_dblist
  /external/icu4c/data/misc/
miscfiles.mk 3 # A list of txt's to build
15 # * To add an additional file to the list:
19 # * To REPLACE the default list and only build a subset of files:
  /external/icu4c/data/sprep/
sprepfiles.mk 3 # A list of txt's to build
15 # * To add an additional locale to the list:
19 # * To REPLACE the default list and only build a subset of files:
  /external/icu4c/data/translit/
trnsfiles.mk 3 # A list of txt's to build
15 # * To add an additional transliterators to the list:
19 # * To REPLACE the default list and only build with a few
  /external/iproute2/man/man8/
routel.8 4 routel \- list routes with pretty output format
16 The routel script will list routes in a format that some might consider easier to interpret then the ip route list equivalent.
  /external/iptables/extensions/
libip6t_rt.man 16 Match type=0 addresses (list).
19 List of type=0 addresses is not a strict list.
  /external/jdiff/src/jdiff/
PackageDiff.java 17 public List classesAdded = null;
19 public List classesRemoved = null;
21 public List classesChanged = null;
  /external/oprofile/daemon/
opd_anon.h 40 /** hash list */
41 struct list_head list; member in struct:anon_mapping
42 /** lru list */
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
MobileApple80211.h 14 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list);
24 /* parameters can be NULL; returns scan results in CFArrayRef *list;
26 int Apple80211Scan(Apple80211Ref handle, CFArrayRef *list,
  /frameworks/base/core/java/android/widget/
WrapperListAdapter.java 20 * List adapter that wraps another list adapter. The wrapped adapter can be retrieved
27 * Returns the adapter wrapped by this list adapter.
  /frameworks/base/core/res/res/drawable/
stat_sys_battery_charge.xml 21 <level-list xmlns:android="http://schemas.android.com/apk/res/android">
23 <animation-list
32 </animation-list>
35 <animation-list
43 </animation-list>
46 <animation-list
53 </animation-list>
56 <animation-list
62 </animation-list>
65 <animation-list
    [all...]
  /frameworks/base/docs/html/shareables/
icon_templates-v2.0.zip 
  /sdk/sdkmanager/app/tests/com/android/sdkmanager/
SdkCommandLineTest.java 81 /** Test list */
84 c.parseArgs(new String[] { "-v", "list", "avd" });
87 assertEquals("list", c.getVerb());
94 c.parseArgs(new String[] { "list", "target" });
97 assertEquals("list", c.getVerb());
104 c.parseArgs(new String[] { "list" });
107 assertEquals("list", c.getVerb());
114 c.parseArgs(new String[] { "list", "unknown" });
124 c.parseArgs(new String[] { "list", "avds" });
127 assertEquals("list", c.getVerb())
    [all...]

Completed in 74 milliseconds

1 2 3 4 5 67 8 91011>>