Searched refs:list (Results 1 - 25 of 72) sorted by relevance

123

/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DLinearLayout9.java36 ListView list = (ListView) findViewById(R.id.list);
37 list.setAdapter(new ArrayAdapter<String>(this,
/development/ndk/platforms/android-3/include/linux/
H A Dkey.h16 #include <linux/list.h>
H A Dxattr.h35 size_t (*list)(struct inode *inode, char *list, size_t list_size, member in struct:xattr_handler
H A Dmutex.h15 #include <linux/list.h>
30 struct list_head list; member in struct:mutex_waiter
H A Dattribute_container.h16 #include <linux/list.h>
H A Dklist.h18 #include <linux/list.h>
H A Dswap.h18 #include <linux/list.h>
H A Dandroid_power.h15 #include <linux/list.h>
H A Dmiscdevice.h51 struct list_head list; member in struct:miscdevice
H A Dpagemap.h17 #include <linux/list.h>
H A Dtimer.h15 #include <linux/list.h>
H A Dfutex.h33 struct robust_list list; member in struct:robust_list_head
/development/ndk/platforms/android-3/include/linux/sunrpc/
H A Dtypes.h18 #include <linux/list.h>
/development/ndk/platforms/android-3/include/linux/mtd/
H A Dblktrans.h25 struct list_head list; member in struct:mtd_blktrans_dev
57 struct list_head list; member in struct:mtd_blktrans_ops
H A Dpartitions.h31 struct list_head list; member in struct:mtd_part_parser
/development/tools/mkstubs/tests/data/
H A DTestTemplateClass.java50 public static <T extends Comparable<? super T>> void sort(List<T> list) { argument
53 public <X extends T, Y> void getMap(List<T> list, Map<T, U> tu, Map<X, Set<? super Y>> xy) { argument
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DMyRssReader2.java45 // Populate our list
149 // Here's our only important override--returning the list item.
171 // Method to initialize our list of RSS items.
173 ArrayList<RssItem> list = new ArrayList<RssItem>();
174 list.add(new RssItem("http://www.sciam.com/xml/sciam.xml", "Scientific American"));
175 list.add(new RssItem("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml", "BBC"));
176 list.add(new RssItem("http://www.theonion.com/content/feeds/daily.", "The Onion"));
177 list.add(new RssItem("http://feeds.engadget.com/weblogsinc/engadget", "Engadget"));
178 return list;
H A DMyRssReader3.java48 // Populate our list
157 // Here's our only important override--returning the list item.
175 // Method to initialize our list of RSS items.
177 ArrayList<RssItem> list = new ArrayList<RssItem>();
178 list.add(new RssItem("http://www.sciam.com/xml/sciam.xml", "Scientific American"));
179 list.add(new RssItem("http://newsrss.bbc.co.uk/rss/newsonline_world_edition/front_page/rss.xml", "BBC"));
180 list.add(new RssItem("http://feeds.theonion.com/theonion/daily", "The Onion"));
181 list.add(new RssItem("http://feeds.engadget.com/weblogsinc/engadget", "Engadget"));
182 return list;
/development/ide/emacs/
H A Dandroid-compile.el60 Return a list with 2 elements (MAKEFILE_PATH IS_ROOT_MAKEFILE).
79 (list "Makefile" t)
83 (list file nil))))
91 ;; list with 2 elements, the process and point position at the end of
114 (setq android-compile-context (list (point-min) proc))
/development/ndk/platforms/android-9/arch-mips/include/asm/
H A Dmodule.h21 #include <linux/list.h>
/development/apps/Development/src/com/android/development/
H A DArrayAdapter.java36 public void setSource(List<E> list) { argument
37 mList = list;
H A DPermissionDetails.java55 * the list of apps using a permission.
95 AppListAdapter(List<PackageInfo> list) { argument
96 mList = list;
143 private void createAppList(List<PackageInfo> list) { argument
144 Log.i(TAG, "list.size=" + list.size());
145 for (PackageInfo pkg : list) {
148 ListView listView = (ListView)findViewById(android.R.id.list);
149 mAdapter = new AppListAdapter(list);
150 ListView lv= (ListView) findViewById(android.R.id.list);
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentListArray.java30 * Demonstration of using ListFragment to show a list of items
39 // Create the list fragment and add it as our sole content.
41 ArrayListFragment list = new ArrayListFragment();
42 getFragmentManager().beginTransaction().add(android.R.id.content, list).commit();
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentListArraySupport.java31 * Demonstration of using ListFragment to show a list of items
40 // Create the list fragment and add it as our sole content.
42 ArrayListFragment list = new ArrayListFragment();
43 getSupportFragmentManager().beginTransaction().add(android.R.id.content, list).commit();
/development/samples/TtsEngine/src/com/example/android/ttsengine/
H A DCheckVoiceData.java57 // an arbitrary list of languages if the intent specified them
81 // We now return the list of available and unavailable voices
100 ArrayList<String> list = intent.getStringArrayListExtra(
103 if (list != null) {
104 for (String lang : list) {
114 * Checks whether a given language is in the list of supported languages.

Completed in 488 milliseconds

123