/frameworks/base/core/res/res/layout/ |
select_dialog_item_holo.xml | 21 This layout file is used by the AlertDialog when displaying a list of items. 23 items.
|
select_dialog_item_material.xml | 19 This layout file is used by the AlertDialog when displaying a list of items. 21 items.
|
select_dialog_material.xml | 19 This layout file is used by the AlertDialog when displaying a list of items. 20 This layout file is inflated and used as the ListView to display the items.
|
/frameworks/base/core/res/res/layout-xlarge/ |
select_dialog_item_holo.xml | 21 This layout file is used by the AlertDialog when displaying a list of items. 23 items.
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/ |
ListOfShortShortTallShortShortTest.java | 46 assertTrue("first two items should fit within fading edge", 48 assertTrue("first two items should fit within list max scroll", 58 // one more to get two items scrolled off 76 // one more to get two items scrolled off 80 // last down brings bottom two items into view 99 // one more time to scroll off bottom two items 120 // one more to get two items scrolled off 124 // last down brings top two items into view
|
/frameworks/support/v7/appcompat/res/values-sw600dp/ |
dimens.xml | 21 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/frameworks/support/v7/appcompat/res/values-w360dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/frameworks/support/v7/appcompat/res/values-w500dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/frameworks/support/v7/appcompat/res/values-w600dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/ |
ListMenuPresenter.java | 118 * @return A ListAdapter containing the items in the menu. 233 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local 234 int count = items.size() - mItemIndexOffset; 242 ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local 247 return items.get(position); 269 final ArrayList<MenuItemImpl> items = mMenu.getNonActionItems(); local 270 final int count = items.size(); 272 final MenuItemImpl item = items.get(i);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
SecureAlbum.java | 32 // This class lists all media items added by the client. 41 // All the media items added by the client. 43 // The types of items in mAllItems. True is video and false is image. 85 // The sequence is stitching items, local media items, and unlock image. 93 // Add paths of requested stitching items. 97 // Convert paths to media items. 174 // Construct the existing items list.
|
MediaSet.java | 65 // Returns the media items in the range [start, start + count). 67 // The number of media items returned may be less than the specified count 68 // if there are not enough media items available. The number of 69 // media items available may not be consistent with the return value of 77 ArrayList<MediaItem> items = getMediaItem(0, 1); local 78 if (items.size() > 0) return items.get(0); 184 // Enumerate all media items in this media set (including the ones in sub 201 // Returns the number of items enumerated. 207 ArrayList<MediaItem> items = getMediaItem(start, count) local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationPhotoTeaserView.java | 38 // show if 1) sender images are enabled 2) there are items 44 // show if 1) sender images are disabled 2) there are items
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/ |
Login_Items_Suite.py | 1 """Suite Login Items Suite: Terms and Events for controlling the Login Items application
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-sw600dp/ |
dimens.xml | 21 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-w360dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-w500dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/prebuilts/sdk/current/support/v7/appcompat/res/values-w600dp/ |
dimens.xml | 20 showAsAction="ifRoom" items can fit. "always" items can override this. -->
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
GLCallGroups.java | 150 List<GLCallNode> items = new ArrayList<GLCallNode>(); local 164 items.add(group); 177 items.add(new GLLeafNode(c)); 184 items.add(leaf); 189 return items; 193 List<GLCallNode> items = new ArrayList<GLCallNode>(); local 197 items.add(new GLLeafNode(calls.get(i))); 200 return items;
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
ordered_dict.py | 107 'od.clear() -> None. Remove all items from od.' 151 def items(self): member in class:OrderedDict 152 'od.items() -> list of (key, value) pairs in od' 165 'od.iteritems -> an iterator over the (key, value) items in od' 176 Or if E is an iterable of items, does: for k, v in E: od[k] = v 177 In either case, this is followed by: for k, v in F.items(): od[k] = v 199 for key, value in kwds.items(): 235 return '%s(%r)' % (self.__class__.__name__, self.items()) 241 items = [[k, self[k]] for k in self] 246 return (self.__class__, (items,), inst_dict [all...] |
/external/qemu/android/base/containers/ |
PodVector.h | 25 // POD-struct compatible items only. This allows the implementation to 26 // use ::memmove() to move items, and also malloc_usable_size() to 33 // Note that a PodVector can be used to store items that contain pointers, 34 // as long as these do not point to items in the same container. 106 // A PodVector<T> holds a vector (dynamically resizable array) or items 113 // cost when appending, inserting, removing items in the collection. 121 // Copy constructor. This copies all items from |other| into 132 // holds all the items, but doesn't touch them otherwise. 136 // have any items. 139 // Return the number of items in the current PodVector<T> instance [all...] |
/sdk/emulator/opengl/shared/emugl/common/ |
pod_vector.h | 36 // POD-struct compatible items only. This allows the implementation to 37 // use ::memmove() to move items, and also malloc_usable_size() to 44 // Note that a PodVector can be used to store items that contain pointers, 45 // as long as these do not point to items in the same container. 113 // A PodVector<T> holds a vector (dynamically resizable array) or items 120 // cost when appending, inserting, removing items in the collection. 128 // Copy constructor. This copies all items from |other| into 139 // holds all the items, but doesn't touch them otherwise. 143 // have any items. 146 // Return the number of items in the current PodVector<T> instance [all...] |
/developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/ |
PopupListFragment.java | 42 ArrayList<String> items = new ArrayList<String>(); local 44 items.add(Cheeses.CHEESES[i]); 48 setListAdapter(new PopupAdapter(items)); 109 PopupAdapter(ArrayList<String> items) { 110 super(getActivity(), R.layout.list_item, android.R.id.text1, items); local
|
/developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/ |
MainActivity.java | 36 * Our main Activity in this sample. Displays a grid of items which an image and title. When the 78 // Now we provide a list of Pair items which contain the view we can transitioning 91 * {@link android.widget.BaseAdapter} which displays items. 97 return Item.ITEMS.length; 102 return Item.ITEMS[position];
|
/developers/samples/android/ui/actionbarcompat/ActionBarCompat-ListPopupMenu/Application/src/main/java/com/example/android/actionbarcompat/listpopupmenu/ |
PopupListFragment.java | 42 ArrayList<String> items = new ArrayList<String>(); local 44 items.add(Cheeses.CHEESES[i]); 48 setListAdapter(new PopupAdapter(items)); 109 PopupAdapter(ArrayList<String> items) { 110 super(getActivity(), R.layout.list_item, android.R.id.text1, items); local
|