HomeSort by relevance Sort by last modified time
    Searched defs:item (Results 76 - 100 of 3393) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/page/
MethodItemTest.java 39 final MethodItem item = new MethodItem(node, "test()", null); local
40 assertSame(node, item.getNode());
45 final MethodItem item = new MethodItem(node, "test()", null); local
46 assertEquals("test()", item.getLinkLabel());
51 final MethodItem item = new MethodItem(node, "test()", null); local
52 assertEquals("el_method", item.getLinkStyle());
57 final MethodItem item = new MethodItem(node, "test()", null); local
58 assertNull(item.getLink(null));
63 final MethodItem item = new MethodItem(node, "test()", new SourceLink()); local
64 assertEquals("../Source.java", item.getLink(null))
70 final MethodItem item = new MethodItem(node, "test()", new SourceLink()); local
    [all...]
  /external/testng/src/main/java/org/testng/xml/dom/
Wrapper.java 48 if (childNodes.item(i).hasAttributes()) {
49 Element item = (Element) childNodes.item(i); local
52 result.add(item.getAttribute(attributeName));
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
TouchInputHandler.java 79 if (DEBUG) Log.d(TAG, "Tap not associated w/ model item. Clearing selection.");
84 ItemDetails<K> item = mDetailsLookup.getItemDetails(e); local
86 if (item == null) {
92 extendSelectionRange(item);
93 } else if (mSelectionTracker.isSelected(item.getSelectionKey())) {
94 mSelectionTracker.deselect(item.getSelectionKey());
96 selectItem(item);
104 return item.inSelectionHotspot(e)
105 ? selectItem(item)
106 : mOnItemActivatedListener.onItemActivated(item, e)
116 ItemDetails<K> item = mDetailsLookup.getItemDetails(e); local
    [all...]
  /frameworks/support/samples/SupportCarDemos/src/main/java/com/example/androidx/car/
AppBarActivity.java 75 TextListItem item = new TextListItem(mContext); local
76 item.setPrimaryActionIcon(android.R.drawable.sym_def_app_icon, false);
77 item.setTitle("title");
78 return item;
  /packages/apps/Car/Settings/src/com/android/car/settings/users/
GuestFragment.java 86 TextListItem item = new TextListItem(getContext()); local
87 item.setPrimaryActionIcon(icon, /* useLargeIcon= */ false);
88 item.setTitle(getContext().getString(R.string.user_guest));
91 items.add(item);
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
TouchInputHandler.java 76 if (DEBUG) Log.d(TAG, "Tap not associated w/ model item. Clearing selection.");
81 ItemDetails item = mDetailsLookup.getItemDetails(e); local
84 extendSelectionRange(item);
85 } else if (mSelectionHelper.isSelected(item.getStableId())) {
86 mSelectionHelper.deselect(item.getStableId());
88 selectItem(item);
96 return item.inSelectionHotspot(e)
97 ? selectItem(item)
98 : mCallbacks.onItemActivated(item, e);
104 if (DEBUG) Log.d(TAG, "Ignoring LongPress on non-model-backed item.")
108 ItemDetails item = mDetailsLookup.getItemDetails(e); local
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/
VCardDetailAdapter.java 62 final VCardResourceEntryDestinationItem item = (VCardResourceEntryDestinationItem) local
65 v.bind(item.getDisplayItem());
99 final VCardResourceEntry item = (VCardResourceEntry) getGroup(groupPosition); local
100 v.bind(item.getDisplayItem());
  /packages/apps/Settings/src/com/android/settings/enterprise/
ApplicationListPreferenceController.java 70 final UserAppInfo item = result.get(position); local
72 preference.setTitle(item.appInfo.loadLabel(mPm));
73 preference.setIcon(iconDrawableFactory.getBadgedIcon(item.appInfo));
  /packages/apps/Settings/tests/unit/src/com/android/settings/wifi/tether/
WifiTetherSettingsTest.java 77 UiObject2 item = mDevice.wait(Until.findObject(By.text("Wi?Fi hotspot")), TIMEOUT); local
78 item.click();
  /tools/loganalysis/src/com/android/loganalysis/parser/
BatteryDischargeStatsInfoParser.java 19 import com.android.loganalysis.item.BatteryDischargeStatsInfoItem;
95 BatteryDischargeStatsInfoItem item = new BatteryDischargeStatsInfoItem(); local
96 item.setDischargeDuration(totalDuration);
97 item.setDischargePercentage(dischargePercent);
98 item.setMaxPercentage(maxPercent);
99 item.setMinPercentage(minPercent);
102 return item;
106 item.setProjectedBatteryLife((projectionDuration * 100) / projectionDischargePercent);
107 return item;
CompactMemInfoParser.java 18 import com.android.loganalysis.item.CompactMemInfoItem;
53 CompactMemInfoItem item = new CompactMemInfoItem(); local
67 item.addPid(pid, name, type, pss, swap, activities);
78 item.setLostRam(lostRam);
88 item.setFreeRam(Long.parseLong(m.group(2)));
98 item.setTotalZram(Long.parseLong(m.group(1)));
99 item.setFreeSwapZram(Long.parseLong(m.group(3)));
109 item.setTuningLevel(Long.parseLong(m.group(3)));
116 return item;
GfxInfoParser.java 18 import com.android.loganalysis.item.GfxInfoItem;
60 GfxInfoItem item = new GfxInfoItem(); local
120 item.addRow(
139 return item;
  /tools/loganalysis/tests/src/com/android/loganalysis/item/
LocationDumpsItemTest.java 16 package com.android.loganalysis.item;
18 import com.android.loganalysis.item.LocationDumpsItem.LocationInfoItem;
35 LocationDumpsItem item = new LocationDumpsItem(); local
36 item.addLocationClient("com.google.android.gms", 500, 60, 1000, "PRIORITY_ACCURACY", 45);
37 item.addLocationClient("com.google.android.maps", 0, 0, 0, "PRIORITY_ACCURACY", 55);
40 JSONObject output = new JSONObject(item.toJson().toString());
67 LocationDumpsItem item = new LocationDumpsItem(); local
68 item.addLocationClient("com.google.android.gms", 500, 60, 1000, "PRIORITY_ACCURACY", 45);
70 assertEquals(item.getLocationClients().size(), 1);
71 LocationInfoItem client = item.getLocationClients().iterator().next()
    [all...]
  /art/dexlayout/
dex_ir_builder.cc 114 const DexFile::MapItem* item = map->list_ + i; local
115 switch (item->type_) {
117 CHECK_EQ(item->size_, 1u);
118 CHECK_EQ(item->offset_, 0u);
121 CHECK_EQ(item->size_, collections->StringIdsSize());
122 CHECK_EQ(item->offset_, collections->StringIdsOffset());
125 CHECK_EQ(item->size_, collections->TypeIdsSize());
126 CHECK_EQ(item->offset_, collections->TypeIdsOffset());
129 CHECK_EQ(item->size_, collections->ProtoIdsSize());
130 CHECK_EQ(item->offset_, collections->ProtoIdsOffset())
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
Offsettable.java 25 * The position of this Offsettable's item when it was read in.
36 * The actual Item this Offsettable contains.
38 private RawDexObject item; field in class:Offsettable
59 public Offsettable(RawDexObject item, boolean isNew) {
60 this.item = item;
71 return item;
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
HeaderSection.java 29 /** {@code non-null;} the list of the one item in the section */
40 HeaderItem item = new HeaderItem(); local
41 item.setIndex(0);
43 this.list = Collections.singletonList(item);
54 public Collection<? extends Item> items() {
  /dalvik/dx/src/com/android/dx/dex/file/
HeaderSection.java 28 /** {@code non-null;} the list of the one item in the section */
39 HeaderItem item = new HeaderItem(); local
40 item.setIndex(0);
42 this.list = Collections.singletonList(item);
53 public Collection<? extends Item> items() {
  /developers/build/prebuilts/gradle/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
MenuTinter.java 25 /** Helper method to tint menu item icons. */
38 MenuItem item = menu.getItem(i); local
39 Drawable drawable = item.getIcon();
44 item.setIcon(drawable);
  /developers/samples/android/wearable/wear/WearMessagingApp/Wearable/src/main/java/com/example/android/wearable/wear/messaging/util/
MenuTinter.java 25 /** Helper method to tint menu item icons. */
38 MenuItem item = menu.getItem(i); local
39 Drawable drawable = item.getIcon();
44 item.setIcon(drawable);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/
QueueAdapter.java 34 // The currently selected/active queue item Id.
66 MediaSession.QueueItem item = getItem(position); local
67 holder.mTitleView.setText(item.getDescription().getTitle());
68 if (item.getDescription().getDescription() != null) {
69 holder.mDescriptionView.setText(item.getDescription().getDescription());
73 if (mActiveQueueItemId == item.getQueueId()) {
  /development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/
StableArrayAdapter.java 43 String item = getItem(position); local
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewItemAnimations/src/com/example/android/listviewitemanimations/
StableArrayAdapter.java 43 String item = getItem(position); local
44 return mIdMap.get(item);
  /development/samples/devbytes/animation/ListViewRemovalAnimation/src/com/example/android/listviewremovalanimation/
StableArrayAdapter.java 43 String item = getItem(position); local
44 return mIdMap.get(item);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minicompat.py 54 def item(self, index): member in class:NodeList
88 def item(self, index): member in class:EmptyNodeList
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minicompat.py 54 def item(self, index): member in class:NodeList
88 def item(self, index): member in class:EmptyNodeList

Completed in 646 milliseconds

1 2 34 5 6 7 8 91011>>