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

<<11121314151617181920>>

  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList3.java 26 import java.util.List;
43 List<Map<String, String>> groupData = new ArrayList<Map<String, String>>();
44 List<List<Map<String, String>>> childData = new ArrayList<List<Map<String, String>>>();
51 List<Map<String, String>> children = new ArrayList<Map<String, String>>();
  /external/elfutils/lib/
list.h 17 /* Add element to the end of a circular, double-linked list. */
33 /* Remove element from circular, double-linked list. */
37 /* Check whether the element is indeed on the list. */ \
60 /* Add element to the front of a single-linked list. */
70 /* Add element to the rear of a circular single-linked list. */
85 #endif /* list.h */
  /external/kernel-headers/original/linux/
mount.h 16 #include <linux/list.h>
43 struct list_head mnt_mounts; /* list of children, anchored here */
50 struct list_head mnt_expire; /* link in fs-specific expiry list */
51 struct list_head mnt_share; /* circular list of shared mounts */
52 struct list_head mnt_slave_list;/* list of slave mounts */
53 struct list_head mnt_slave; /* slave list entry */
  /external/v8/tools/
utils.py 7 # 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/WebCore/editing/
InsertListCommand.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
88 // if it's in the same list item as startOfCurrentParagraph. Return early to avoid an
120 // ends "inside" that paragraph, so it would be confusing if InsertUn{Ordered}List
139 // Remove the list chlild.
144 // listChildNode will be removed from the list and a list of type m_type will be created.
156 // A paragraph is visually a list item minus a list marker. The paragraph will be moved.
168 // When removing a list, we must always create a placeholder to act as a point of insertio
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
MobileApple80211.c 39 static int (*__Apple80211GetIfListCopy)(Apple80211Ref handle, CFArrayRef *list)
42 int Apple80211GetIfListCopy(Apple80211Ref handle, CFArrayRef *list)
44 return __Apple80211GetIfListCopy(handle, list);
94 static int (*__Apple80211Scan)(Apple80211Ref handle, CFArrayRef *list,
97 int Apple80211Scan(Apple80211Ref handle, CFArrayRef *list,
100 return __Apple80211Scan(handle, list, parameters);
  /frameworks/base/core/java/android/app/
ListActivity.java 29 * An activity that displays a list of items by binding to a data source such as
40 * ListActivity has a default layout that consists of a single, full-screen list
44 * id "@android:id/list" (or {@link android.R.id#list} if it's in code)
47 * display when the list view is empty. This "empty list" notifier must have an
48 * id "android:empty". Note that when an empty view is present, the list view
51 * The following code demonstrates an (ugly) custom screen layout. It has a list
64 * &lt;ListView android:id=&quot;@id/android:list&quot;
83 * You can specify the layout of individual rows in the list. You do this b
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarApplication.java 29 * The Screen class defines a node in a linked list. This list contains
31 * coming earlier in the list. The "next" pointer of the head node
32 * points to the first element in the list (the most recently visited
46 // Adds the given node to the list after this one
54 // Removes this node from the list it is in.
  /packages/apps/IM/src/com/android/im/imps/
ImpsContactListManager.java 94 // load blocked list first
278 void subscribeToListAsync(final ContactList list, final AsyncCompletion completion) {
281 lists.add(list);
301 for (ContactList list : contactLists) {
302 contacts.addAll(list.getContacts());
333 void unsubscribeToListAsync(ContactList list, AsyncCompletion completion) {
335 request.addElement(ImpsTags.ContactList, list.getAddress().getFullName());
372 final ContactList list = new ContactList(listAddress, name, local
388 notifyContactListCreated(list);
393 subscribeToListAsync(list, null)
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableList.java 28 import java.util.List;
36 * A high-performance, immutable, random-access {@code List} implementation.
43 * ("constant lists") and also lets you easily make a "defensive copy" of a list
58 implements List<E>, RandomAccess {
60 * Returns the empty immutable list. This set behaves and performs comparably
64 // Casting to any type is safe because the list will never hold any elements.
73 * Returns an immutable list containing a single element. This list behaves
188 * Returns an immutable list containing the given elements, in order.
205 * Returns an immutable list containing the given elements, in order. I
251 ImmutableList<E> list = (ImmutableList<E>) elements; local
274 ImmutableList<E> list = new SingletonImmutableList<E>((E) elements[0]); local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
KanaConverter.java 22 import java.util.List;
475 /** List of the generated candidates */
476 private List<WnnWord> mAddCandidateList;
510 * Create the pseudo candidate list
515 * @return The candidate list
517 public List<WnnWord> createPseudoCandidateList(String inputHiragana, String inputRomaji, int keyBoardMode) {
518 List<WnnWord> list = mAddCandidateList; local
520 list.clear();
522 return list;
584 List<WnnWord> list = mAddCandidateList; local
    [all...]
  /external/bluetooth/glib/glib/
goption.c 92 /* We keep a list of change so we can revert them */
367 GList *list; local
375 for (list = context->groups; list; list = list->next)
377 GOptionGroup *g = (GOptionGroup *)list->data;
588 GList *list; local
656 list = context->groups;
657 while (list != NULL
944 GList *list; local
1440 GList *list; local
1488 GList *list; local
1556 GList *list; local
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ProcessBuilderTest.java 34 import java.util.List;
52 args = {java.util.List.class}
55 List<String> list = Arrays.asList("command1", "command2", "command3"); local
56 ProcessBuilder pb = new ProcessBuilder(list);
57 assertEquals(list, pb.command());
60 new ProcessBuilder((List<String>) null);
79 List<String> list = pb.command(); local
80 list.add("DDD")
248 List<String> list = Arrays.asList(null, null, null); local
    [all...]
  /external/bluetooth/glib/docs/reference/glib/
resources.sgml 56 <ulink url="mailto:gtk-devel-list@gnome.org">gtk-devel-list@gnome.org</ulink>.
58 list and not in Bugzilla, it's likely to slip through the cracks.
77 <term><ulink url="mailto:gtk-list@gnome.org">gtk-list@gnome.org</ulink></term>
79 gtk-list covers general GTK+ (and GLib) topics; questions about using GLib
87 <term><ulink url="mailto:gtk-devel-list@gnome.org">gtk-devel-list@gnome.org</ulink></term>
89 gtk-devel-list is for discussion of work on GTK+ (and GLib) itself, it is
91 in applications. gtk-devel-list is appropriate for discussion of patches,
    [all...]
  /external/dropbear/
scpmisc.c 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
154 if (args->list == NULL) {
160 args->list = xrealloc(args->list, nalloc * sizeof(char *));
162 args->list[args->num++] = cp;
163 args->list[args->num] = NULL;
182 xfree(args->list[which]);
183 args->list[which] = cp;
191 if (args->list != NULL)
    [all...]
  /external/proguard/src/proguard/gui/
ClassSpecificationsPanel.java 30 import java.util.List;
35 * ClassSpecification entries in a list.
48 list.setCellRenderer(new MyListCellRenderer());
91 (ClassSpecification)list.getSelectedValue();
99 list.getSelectedIndex());
129 public void setClassSpecifications(List classSpecifications)
150 public List getClassSpecifications()
158 List classSpecifications = new ArrayList(size);
200 public Component getListCellRendererComponent(JList list,
217 label.setBackground(list.getSelectionBackground())
    [all...]
  /external/qemu/elff/
dwarf_die.h 72 * in the DIE's attribute list.
110 /* Advances to the DIE's property list.
113 * DIE attribute abbreviation list. This parameter can be NULL, if the
114 * caller is not interested in attribute abbreviation list for this DIE.
118 * Pointer to the beginning of the DIE attribute list in mapped .debug_info
139 /* Gets last child object in the list of this DIE's childs. NOTE: for better
140 * performace the list is created in reverse order (relatively to the order,
147 /* Links next child to the list of this DIE childs. */
152 /* Gets previous sibling of this DIE in the parent's DIE object list. */
157 /* Links next sibling to the list of this DIE siblings. */
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListOfShortShortTallShortShortTest.java 44 assertEquals("list item count", 5, mListView.getCount());
45 assertEquals("list visible child count", 3, mListView.getChildCount());
49 assertTrue("first two items should fit within list max scroll",
63 assertTrue("selected item top should be above list top",
65 assertTrue("selected item bottom should be below list bottom",
67 assertEquals("should only be 1 child of list (2 should have been scrolled off and removed",
79 assertEquals("number of list children", 1, mListView.getChildCount());
88 assertTrue("bottom most view shouldn't be above list bottom",
105 assertTrue("selected item top should be at or above list top",
107 assertTrue("selected item bottom should be below list bottom"
    [all...]
  /frameworks/base/test-runner/tests/src/android/test/
TestBrowserActivityTest.java 34 import java.util.List;
64 // There is always an item on the list for running all tests.
65 assertEquals("Unexpected number of items on list view.", 1, listView.getCount());
71 List<String> testCaseNames = Lists.newArrayList("AllTests");
81 List<String> testCaseNames = Lists.newArrayList("AllTests", "Apples", "Bananas", "Oranges");
91 List<String> testCaseNames = Lists.newArrayList(OneTestTestCase.class.getSimpleName());
101 List<String> testCaseNames = Lists.newArrayList("AllTests");
131 List<String> testCaseNames = Lists.newArrayList("testOne");
145 assertEquals("Unexpected number of items on list view.", 1, listView.getCount());
147 List<String> testCaseNames = Lists.newArrayList("AllTests")
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Typeface.java 26 import java.util.List;
54 private final List<Font> mFonts;
64 * Returns the underlying {@link Font} objects. The first item in the list is the real
67 public List<Font> getFonts() {
101 ArrayList<Font> list = new ArrayList<Font>(); local
102 list.add(font);
103 list.addAll(mFontLoader.getFallBackFonts());
104 return new Typeface(familyName, styleBuffer[0], list);
125 ArrayList<Font> list = new ArrayList<Font>(); local
126 list.add(font)
    [all...]
  /hardware/ti/wlan/wl1271/stad/Export_Inc/
bssTypes.h 12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in
83 * E.g. it holds one AP of the BSS list.
115 * \brief BSS List
118 * This structure holds the BSS list. E.g. it holds the AP ESS.
119 * This list is filled by the scan manager and is used by the
126 TI_UINT8 numOfEntries; /**< Number of entries in the BSS list */
127 bssEntry_t BSSList[ MAX_SIZE_OF_BSS_TRACK_LIST ]; /**< Pointer to the first entry in the BSS list */
138 * Channel List configured in the Scan Policy
150 * \brief list of Neighbor AP
    [all...]
  /system/core/sh/
nodetypes 12 # notice, this list of conditions and the following disclaimer.
14 # notice, this list of conditions and the following disclaimer in the
43 # nodelist - a pointer to a list of nodes
60 redirect nodeptr # list of file redirections
70 redirect nodeptr # list of file redirections
96 cases nodeptr # the list of cases (NCLIST nodes)
100 next nodeptr # the next case in list
101 pattern nodeptr # list of patterns for this case
110 next nodeptr # next word in list
112 backquote nodelist # list of commands in back quote
    [all...]
  /system/wlan/ti/wilink_6_1/stad/Export_Inc/
bssTypes.h 12 * notice, this list of conditions and the following disclaimer.
14 * notice, this list of conditions and the following disclaimer in
83 * E.g. it holds one AP of the BSS list.
115 * \brief BSS List
118 * This structure holds the BSS list. E.g. it holds the AP ESS.
119 * This list is filled by the scan manager and is used by the
126 TI_UINT8 numOfEntries; /**< Number of entries in the BSS list */
127 bssEntry_t BSSList[ MAX_SIZE_OF_BSS_TRACK_LIST ]; /**< Pointer to the first entry in the BSS list */
138 * Channel List configured in the Scan Policy
150 * \brief list of Neighbor AP
    [all...]
  /external/webkit/WebCore/platform/
DeprecatedPtrListImpl.cpp 8 * notice, this list of conditions and the following disclaimer.
10 * notice, this list of conditions and the following disclaimer in the
98 it->list = 0;
429 list(0),
435 list(&impl),
443 if (list) {
444 list->removeIterator(this);
449 list(impl.list),
452 if (list) {
    [all...]
  /frameworks/base/core/java/android/content/pm/
IPackageManager.aidl 57 List<PermissionInfo> queryPermissionsByGroup(String group, int flags);
61 List<PermissionGroupInfo> getAllPermissionGroups(int flags);
93 List<ResolveInfo> queryIntentActivities(in Intent intent,
96 List<ResolveInfo> queryIntentActivityOptions(
101 List<ResolveInfo> queryIntentReceivers(in Intent intent,
107 List<ResolveInfo> queryIntentServices(in Intent intent,
110 List<PackageInfo> getInstalledPackages(int flags);
112 List<ApplicationInfo> getInstalledApplications(int flags);
117 * @return A List&lt;applicationInfo> containing one entry for each persistent
120 List<ApplicationInfo> getPersistentApplications(int flags)
    [all...]

Completed in 176 milliseconds

<<11121314151617181920>>