HomeSort by relevance Sort by last modified time
    Searched refs:Item (Results 276 - 300 of 895) sorted by null

<<11121314151617181920>>

  /frameworks/av/media/libstagefright/httplive/
M3UParser.h 64 struct Item {
83 Vector<Item> mItems;
  /frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
ButtonBarItemTest.java 32 import com.android.setupwizardlib.items.Item;
56 ButtonBarItem item = new ButtonBarItem(); local
57 item.setId(888);
62 item.addChild(mChild1);
63 item.addChild(mChild2);
64 item.addChild(mChild3);
66 assertEquals("Finding 123 should return child1", mChild1, item.findItemById(123));
67 assertEquals("Finding 456 should return child2", mChild2, item.findItemById(456));
68 assertEquals("Finding 789 should return child3", mChild3, item.findItemById(789));
70 assertEquals("Finding 888 should return ButtonBarItem itself", item,
78 ButtonBarItem item = new ButtonBarItem(); local
88 ButtonBarItem item = new ButtonBarItem(); local
111 ButtonBarItem item = new ButtonBarItem(); local
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
StaggeredGridLayoutManagerGapTest.java 86 // due to data changes, first item may become visible before others which will cause
96 final Map<Item, Rect> actualCoords = mLayoutManager.collectChildCoordinates();
103 final Map<Item, Rect> desiredCoords = mLayoutManager.collectChildCoordinates();
104 assertRectSetsEqual(" when an item from the start of the list is deleted, "
BaseStaggeredGridLayoutManagerTest.java 104 assertNotNull("when item offsets are requested, view should have a valid span",
141 public void assertRectSetsNotEqual(String message, Map<Item, Rect> before,
142 Map<Item, Rect> after) {
152 public void assertRectSetsEqual(String message, Map<Item, Rect> before, Map<Item, Rect> after) {
156 public void assertRectSetsEqual(String message, Map<Item, Rect> before, Map<Item, Rect> after,
163 for (Map.Entry<Item, Rect> entry : before.entrySet()) {
168 for (Map.Entry<Item, Rect> entry : after.entrySet()) {
174 assertEquals(message + ": item counts should be equal", before.size(
886 Item item = mItems.get(position); local
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
DeveloperOptionFragment.java 55 protected List<Item> getItemList() {
56 List<Item> items = new ArrayList<>();
ActionItem.java 25 public abstract class ActionItem extends Item {
  /external/llvm/include/llvm/Support/
OnDiskHashTable.h 61 /// \brief A single item in the hash table.
62 class Item {
66 Item *Next;
69 Item(typename Info::key_type_ref Key, typename Info::data_type_ref Data,
77 llvm::SpecificBumpPtrAllocator<Item> BA;
83 Item *Head;
89 /// \brief Insert an item into the appropriate hash bucket.
90 void insert(Bucket *Buckets, size_t Size, Item *E) {
102 for (Item *E = Buckets[I].Head; E;) {
103 Item *N = E->Next
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
RootsFragment.java 88 final Item item = mAdapter.getItem(position);
89 item.open();
98 final Item item = mAdapter.getItem(position);
99 return item.showAppDetails();
169 final Item item = mAdapter.getItem(pos); local
172 if (!(item instanceof RootItem) || !((RootItem) item).root.supportsCreate())
250 final RootItem item = new RootItem(root, mActionHandler); local
337 final Object item = mAdapter.getItem(i); local
370 final Item item = mAdapter.getItem(pos); local
414 final Item item = mAdapter.getItem(position); local
430 final Item item = mAdapter.getItem(adapterMenuInfo.position); local
    [all...]
  /developers/build/prebuilts/gradle/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
ImageDragListener.java 28 * the first {@link android.content.ClipData.Item} in the {@link DragEvent} is set as the image
83 ClipData.Item item = clipData.getItemAt(0); local
84 if (item == null) {
87 Uri uri = item.getUri();
  /developers/build/prebuilts/gradle/DragAndDropAcrossApps/DropTarget/src/main/java/com/example/android/droptarget/
ImageDragListener.java 75 ClipData.Item item = clipData.getItemAt(0); local
76 if (item == null) {
79 Uri uri = item.getUri();
  /developers/samples/android/ui/window/DragAndDropAcrossApps/DragSource/src/main/java/com/example/android/dragsource/
ImageDragListener.java 28 * the first {@link android.content.ClipData.Item} in the {@link DragEvent} is set as the image
83 ClipData.Item item = clipData.getItemAt(0); local
84 if (item == null) {
87 Uri uri = item.getUri();
  /developers/samples/android/ui/window/DragAndDropAcrossApps/DropTarget/src/main/java/com/example/android/droptarget/
ImageDragListener.java 75 ClipData.Item item = clipData.getItemAt(0); local
76 if (item == null) {
79 Uri uri = item.getUri();
  /development/samples/ApiDemos/src/com/example/android/apis/media/
VideoViewDemo.java 62 ClipData.Item item = clipData.getItemAt(0);
63 Uri uri = item.getUri();
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 82 public boolean onOptionsItemSelected(Menu.Item item){
83 switch (item.getId()) {
  /development/samples/browseable/DragAndDropAcrossApps/DragSource/src/com.example.android/dragsource/
ImageDragListener.java 28 * the first {@link android.content.ClipData.Item} in the {@link DragEvent} is set as the image
83 ClipData.Item item = clipData.getItemAt(0); local
84 if (item == null) {
87 Uri uri = item.getUri();
  /development/samples/browseable/DragAndDropAcrossApps/DropTarget/src/com.example.android/droptarget/
ImageDragListener.java 75 ClipData.Item item = clipData.getItemAt(0); local
76 if (item == null) {
79 Uri uri = item.getUri();
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
Handle.c 66 PROTOCOL_ENTRY *Item;
78 Item = CR(Link, PROTOCOL_ENTRY, AllEntries, PROTOCOL_ENTRY_SIGNATURE);
79 if (CompareGuid (&Item->ProtocolID, Protocol)) {
83 ProtEntry = Item;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Udp4Dxe/
Udp4Impl.c 102 @param[in] Item Pointer to the NET_MAP_ITEM.
104 the token specified by Item is cancelled.
107 is not the same as that in the Item if Arg is not
117 IN NET_MAP_ITEM *Item,
886 @param[in] Item Pointer to the NET_MAP_ITEM contain the pointer to
891 one in the Item.
892 @retval EFI_ACCESS_DENIED The Token duplicates with the one in the Item.
899 IN NET_MAP_ITEM *Item,
907 TokenInItem = (EFI_UDP4_COMPLETION_TOKEN*) Item->Key;
965 NET_MAP_ITEM *Item;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpProto.h 419 @param[in] Item Current item to check against.
423 @retval EFI_SUCCESS The current item isn't the same token/event as the
431 IN NET_MAP_ITEM *Item,
439 @param[in] Item Current item to check against.
450 IN NET_MAP_ITEM *Item,
476 @param[in] Item Current item to check against.
488 IN NET_MAP_ITEM *Item,
    [all...]
  /external/llvm/lib/DebugInfo/PDB/Raw/
Hash.cpp 64 for (ulittle32_t Item : Items) {
65 Hash += Item;
70 for (uint8_t Item : Buffer) {
71 Hash += Item;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 73 struct rc_variable * var = var_ptr->Item;
  /external/pdfium/xfa/fxfa/parser/
cxfa_arraynodelist.cpp 55 CXFA_Node* CXFA_ArrayNodeList::Item(int32_t iIndex) {
  /frameworks/compile/slang/
slang_rs_pragma_handler.h 46 virtual void handleItem(const std::string &Item) { }
50 // Handle pragma like #pragma rs [name] ([item #1],[item #2],...,[item #i])
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SelectionMenu.java 51 PopupList.Item item = mPopupList.findItem(R.id.action_select_all); local
52 if (item != null) {
53 item.setTitle(mContext.getString(
  /packages/apps/Messaging/src/com/android/messaging/ui/
PlainTextEditText.java 65 ClipData.Item item = clip.getItemAt(0); local
67 final String url = item.getText().toString();

Completed in 898 milliseconds

<<11121314151617181920>>