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

<<11121314151617181920>>

  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
CompoundButtonItem.java 25 public abstract class CompoundButtonItem extends Item {
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
ChannelsBlockedFragment.java 38 import com.android.tv.ui.sidepanel.Item;
58 private final Item mLockAllItem = new BlockAllItem();
59 private final List<Item> mItems = new ArrayList<>();
113 protected List<Item> getItemList() {
  /packages/services/Car/car-support-lib/src/android/support/car/app/menu/
CarMenuCallbacks.java 35 * Called when app wants to notify that contents of a single item has changed.
37 * @param item Contents of {@link android.os.Bundle} are used to update the contents of the existing
38 * item.
42 void onChildChanged(String parentId, Bundle item, Drawable leftIcon, Drawable rightIcon);
121 * Called when an item is clicked
123 * @param id Id of the item that is clicked
128 * Called when an item is long clicked
130 * @param id Id of the item that is long clicked
148 * Notify that an item has changed. Use a {@link CarMenu.Builder} to build the item and pu th
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
WifiTile.java 41 import com.android.systemui.qs.QSDetailItems.Item;
332 public void onDetailItemClick(Item item) {
333 if (item == null || item.tag == null) return;
334 final AccessPoint ap = (AccessPoint) item.tag;
344 public void onDetailItemDisconnect(Item item) {
369 Item[] items = null;
371 items = new Item[mAccessPoints.length]
374 final Item item = new Item(); local
    [all...]
  /frameworks/base/tools/aapt2/proto/
TableProtoSerializer.cpp 50 * Constructor to use when expecting to serialize an Item.
53 pb::Item* outPbItem)
90 void VisitItem(Item* item) override { LOG(FATAL) << "unimplemented item"; }
118 pb::Item* pb_item = pb_entry->mutable_item();
156 pb::Item* pb_element = pb_entry->mutable_item();
166 pb::Item* pb_item() {
179 void SerializeItemCommonToPb(const Item& item, T* pb_item)
    [all...]
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
BandController_GridModelTest.java 254 for (TestEnvironment.Item item: env.items) {
255 if (Rect.intersects(selectionArea, item.rect)) {
256 assertTrue("Expected item " + item + " was not in selection " + selectionArea,
257 lastSelection.contains(item.name));
259 assertFalse("Unexpected item " + item + " in selection" + selectionArea,
260 lastSelection.contains(item.name));
292 private List<Item> items = new ArrayList<>()
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Parser.py 215 for Item in SubDir:
216 if os.path.isfile(Item):
217 IncludeFileList.append(Item)
251 for Item in IncludeFileList:
252 if os.path.isfile(Item) and Item not in FileList:
253 FileList.append(Item)
254 for Item in SourceFileList:
255 if os.path.isfile(Item) and Item not in FileList:
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DnsProtocol.c 328 DNS4_CACHE *Item;
340 Item = NULL;
386 Item = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
387 if (StrCmp (HostName, Item->DnsCache.HostName) == 0) {
412 Item = NET_LIST_USER_STRUCT (Entry, DNS4_CACHE, AllCacheLink);
413 if ((UINT32)Index < Token->RspData.H2AData->IpCount && StrCmp (HostName, Item->DnsCache.HostName) == 0) {
414 CopyMem ((Token->RspData.H2AData->IpList) + Index, Item->DnsCache.IpAddress, sizeof (EFI_IPv4_ADDRESS));
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
InstallPkg.py 660 for Item in MiscFile.GetFileList():
661 File = Item.GetURI()
669 Executable = Item.GetExecutable()
678 for Item in Module.GetSourceFileList():
679 File = Item.GetSourceFile()
695 for Item in Module.GetBinaryFileList():
696 FileNameList = Item.GetFileNameList()
744 for Item in CheckList:
745 if Item[0] == ToFile:
837 for Item in MiscFile.GetFileList():
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
GenDepex.py 336 for Item in self.PostfixNotation:
337 if Item in self.Opcode[self.Phase]:
338 Buffer.write(pack("B", self.Opcode[self.Phase][Item]))
339 elif Item in self.SupportedOpcode:
341 "Opcode [%s] is not expected in %s phase" % (Item, self.Phase),
344 Buffer.write(self.GetGuidValue(Item))
  /external/llvm/include/llvm/Support/
ScopedPrinter.h 210 for (const auto &Item : List) {
213 OS << Item;
223 for (const auto &Item : List) {
226 Printer(OS, Item);
235 for (const auto &Item : List) {
238 OS << hex(Item);
  /frameworks/opt/setupwizard/library/test/robotest/src/com/android/setupwizardlib/items/
ItemGroupTest.java 44 private static final Item CHILD_1 = new EqualsItem("Child 1");
45 private static final Item CHILD_2 = new EqualsItem("Child 2");
46 private static final Item CHILD_3 = new EqualsItem("Child 3");
47 private static final Item CHILD_4 = new EqualsItem("Child 4");
66 assertSame("Item at position 0 should be child1", CHILD_1, mItemGroup.getItemAt(0));
67 assertSame("Item at position 1 should be child2", CHILD_2, mItemGroup.getItemAt(1));
83 assertSame("Item at position 0 should be child1", CHILD_1, mItemGroup.getItemAt(0));
84 assertSame("Item at position 1 should be child3", CHILD_3, mItemGroup.getItemAt(1));
266 assertSame("Find item 23456 should return child 2",
286 private static class EqualsItem extends Item {
    [all...]
  /external/llvm/lib/Target/AMDGPU/
R600ControlFlowFinalizer.cpp 57 unsigned getSubEntrySize(CFStack::StackItem Item);
69 bool CFStack::branchStackContains(CFStack::StackItem Item) {
72 if (*I == Item)
116 unsigned CFStack::getSubEntrySize(CFStack::StackItem Item) {
117 switch(Item) {
151 CFStack::StackItem Item = CFStack::ENTRY;
158 Item = CFStack::FIRST_NON_WQM_PUSH; // May not be required on Evergreen/NI
165 Item = CFStack::FIRST_NON_WQM_PUSH_W_FULL_ENTRY;
167 Item = CFStack::SUB_ENTRY;
169 Item = CFStack::ENTRY
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.h 296 class Item {
298 Item() : isId(false), format(ResTable_map::TYPE_ANY), bagKeyId(0), evaluating(false)
300 Item(const SourcePos& pos,
305 Item(const Item& o) : sourcePos(o.sourcePos),
310 ~Item() { }
312 Item& operator=(const Item& o) {
379 const Item* getItem() const { return mType == TYPE_ITEM ? &mItem : NULL; }
380 const KeyedVector<String16, Item>& getBag() const { return mBag;
    [all...]
  /art/dexlayout/
dex_ir.h 62 // Item size constants.
143 // Returns the existing item if it is already inserted, null otherwise.
325 void ReadEncodedValue(const uint8_t** data, uint8_t type, uint8_t length, EncodedValue* item);
356 class Item {
358 Item() { }
359 virtual ~Item() { }
367 Item(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { }
373 class IndexedItem : public Item {
383 : Item(offset, size), index_(index) { }
388 class Header : public Item {
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfDefineSectionParser.py 126 for Item in HeaderComments:
127 LineCommentContent += Item[0] + DT.END_OF_LINE
  /device/linaro/bootloader/edk2/OvmfPkg/Library/QemuFwCfgLib/
QemuFwCfgLib.c 80 Selects a firmware configuration item for reading.
82 Following this call, any data read from this item will start from
83 the beginning of the configuration item's data.
85 @param[in] QemuFwCfgItem - Firmware Configuration item to read
94 DEBUG ((EFI_D_INFO, "Select Item: 0x%x\n", (UINT16)(UINTN) QemuFwCfgItem));
122 item where the previous read ended.
147 item where the previous write ended.
169 @return Value of Firmware Configuration item read
189 @return Value of Firmware Configuration item read
209 @return Value of Firmware Configuration item read
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
PollingAction.java 124 List<Contacts.Item> contacts = mPollingTask.mContacts;
126 Contacts.Item item = contacts.get(i); local
127 uriList.add(getCompleteUri(item.number()));
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
WireFormatTest.java 407 RawMessageSet.Item.newBuilder()
415 RawMessageSet.Item.newBuilder()
423 RawMessageSet.Item.newBuilder()
472 RawMessageSet.Item.newBuilder()
511 RawMessageSet.Item.newBuilder()
553 RawMessageSet.Item.newBuilder()
566 List<RawMessageSet.Item> items = raw.getItemList();
568 RawMessageSet.Item item = items.get(i); local
570 output.writeBytes(3, item.getMessage())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
LeakReporter.java 126 new ClipData.Item(null, null, null, dumpUri));
129 clipData.addItem(new ClipData.Item(null, null, null, hprofUri));
  /frameworks/base/tools/aapt2/test/
Common.h 123 template std::ostream& operator<<<Item>(std::ostream&, const Item&);
  /frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
RSTestCore.java 88 ScriptField_ListAllocs_s.Item listElem = new ScriptField_ListAllocs_s.Item();
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
RSTestCore.java 92 ScriptField_ListAllocs_s.Item listElem = new ScriptField_ListAllocs_s.Item();
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
RSTestCore.java 92 ScriptField_ListAllocs_s.Item listElem = new ScriptField_ListAllocs_s.Item();
  /cts/tests/tests/content/src/android/content/cts/
ImageCaptureActivity.java 20 import android.content.ClipData.Item;

Completed in 1512 milliseconds

<<11121314151617181920>>