HomeSort by relevance Sort by last modified time
    Searched refs:listItem (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastCursorAdapter.java 50 CellBroadcastListItem listItem = (CellBroadcastListItem) factory.inflate(
53 listItem.bind(message);
54 return listItem;
67 CellBroadcastListItem listItem = (CellBroadcastListItem) view;
68 listItem.bind(message);
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportAdapter.java 41 DeliveryReportListItem listItem;
46 listItem = (DeliveryReportListItem) factory.inflate(
50 listItem = (DeliveryReportListItem) view;
56 listItem.bind(item.recipient, item.status, item.deliveryDate);
58 return listItem;
MessageListItem.java 160 // to this listitem. We always want the listview to handle the
429 public ImageLoadedCallback(MessageListItem listItem) {
430 mListItem = listItem;
431 mMessageId = listItem.getMessageItem().getMessageId();
434 public void reset(MessageListItem listItem) {
435 mMessageId = listItem.getMessageItem().getMessageId();
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListItemFocusablesFarApartTest.java 56 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex);
57 View child = listItem.getChildAt(index);
58 return child.getTop() + listItem.getTop();
62 ViewGroup listItem = (ViewGroup) mListView.getChildAt(listIndex);
63 View child = listItem.getChildAt(index);
64 return child.getBottom() + listItem.getTop();
  /external/smack/src/org/jivesoftware/smack/
PrivacyListListener.java 40 * @param listItem the PrivacyItems that rules the list.
42 public void setPrivacyList(String listName, List<PrivacyItem> listItem);
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 110 TextView listItem = (TextView) mSimpleCursorAdapter.newView(mContext, null, null);
112 listItem.setText("");
114 mSimpleCursorAdapter.bindView(listItem, null, mCursor);
115 assertEquals("01", listItem.getText().toString());
118 mSimpleCursorAdapter.bindView(listItem, null, mCursor);
119 assertEquals("191", listItem.getText().toString());
122 listItem.setText("");
127 mSimpleCursorAdapter.bindView(listItem, null, mCursor);
129 assertEquals("", listItem.getText().toString());
135 mSimpleCursorAdapter.bindView(listItem, null, mCursor)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
BasicSettingPopup.java 63 ArrayList<HashMap<String, Object>> listItem =
69 listItem.add(map);
71 SimpleAdapter listItemAdapter = new SimpleAdapter(context, listItem,
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListItem.cpp 99 static Node* enclosingList(const RenderListItem* listItem)
101 Node* listItemNode = listItem->node();
170 for (RenderListItem* listItem = nextListItem(listNode); listItem; listItem = nextListItem(listNode, listItem))
171 listItem->updateValue();
179 for (RenderListItem* listItem = nextListItem(listNode); listItem; listItem = nextListItem(listNode, listItem)
    [all...]
  /external/smack/src/org/jivesoftware/smack/packet/
Privacy.java 58 * @param listItem the {@link PrivacyItem} that rules the list.
61 public List<PrivacyItem> setPrivacyList(String listName, List<PrivacyItem> listItem) {
63 this.getItemLists().put(listName, listItem);
64 return listItem;
  /packages/apps/Camera/src/com/android/camera/ui/
ListPrefSettingPopup.java 88 ArrayList<HashMap<String, Object>> listItem =
94 listItem.add(map);
96 SimpleAdapter listItemAdapter = new ListPrefSettingAdapter(context, listItem,
  /packages/apps/Camera2/src/com/android/camera/ui/
ListPrefSettingPopup.java 88 ArrayList<HashMap<String, Object>> listItem =
94 listItem.add(map);
96 SimpleAdapter listItemAdapter = new ListPrefSettingAdapter(context, listItem,
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 141 View listItem = getChildAt(i);
142 Object o = listItem.getTag();
243 View listItem = getChildAt(i);
244 listItem.getLocalVisibleRect(r);
246 return listItem;
351 View listItem = getChildAt(i);
352 if (listItem.getTop() <= getHeight() &&
353 listItem.getTop() >= mWindowAdapter.getStickyHeaderHeight()) {
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
RequestHeadersView.js 292 var listItem = this._requestPayloadTreeElement.listItemElement;
293 listItem.removeChildren();
294 listItem.appendChild(document.createTextNode(this._requestPayloadTreeElement.title));
299 listItem.appendChild(this._createViewSourceToggle(true, setViewSource.bind(this, false)));
302 listItem.appendChild(this._createViewSourceToggle(false, setViewSource.bind(this, true)));
307 listItem.appendChild(section.element);
SettingsScreen.js     [all...]
ElementsPanel.js 452 var listItem = anchor.enclosingNodeOrSelfWithNodeName("li");
453 if (listItem && listItem.treeElement)
454 this._loadDimensionsForNode(listItem.treeElement, WebInspector.DOMPresentationUtils.buildImagePreviewContents.bind(WebInspector.DOMPresentationUtils, anchor.href, true, showPopover));
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
controllers.js 149 var listItem = new ui.failures.ListItem(label, testsFailingInDirectory);
150 this._view.appendChild(listItem);
151 $(listItem).bind('examine', function() {
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AdapterViewICS.java 604 View listItem = view;
607 while (!(v = (View) listItem.getParent()).equals(this)) {
608 listItem = v;
618 if (getChildAt(i).equals(listItem)) {
    [all...]
  /external/chromium_org/chrome/browser/resources/task_manager/
main.js 328 * @return {cr.ui.ListItem} list item element which contains the given data.
341 listItem: null,
354 * @return {cr.ui.ListItem} cached un-used element to be reused.
366 var listItemElement = cache.listItem;
422 * @return {cr.ui.ListItem} created new list item element.
429 var listItem = new cr.ui.ListItem({label: ''});
431 listItem.className = 'table-row';
441 listItem.appendChild(cell);
449 listItem.style.height = (data['uniqueId'].length * HEIGHT_OF_TASK) + 'px'
    [all...]
  /frameworks/base/core/java/android/widget/
AdapterView.java 595 View listItem = view;
598 while (!(v = (View) listItem.getParent()).equals(this)) {
599 listItem = v;
609 if (getChildAt(i).equals(listItem)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
htmlediting.cpp 690 static HTMLElement* embeddedSublist(Node* listItem)
693 for (Node* n = listItem->firstChild(); n; n = n->nextSibling()) {
701 static Node* appendedSublist(Node* listItem)
704 for (Node* n = listItem->nextSibling(); n; n = n->nextSibling()) {
707 if (isListItem(listItem))
    [all...]
ReplaceSelectionCommand.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_table.js 643 var listItem = this.list_.getListItemAncestor(cell);
644 var entry = this.dataModel.item(listItem.listIndex);
648 callback.call(this, cell, entry, props, listItem);
661 function(item, entry, props, listItem) {
663 filelist.updateListItemDriveProps(listItem, props);
930 * @param {ListItem} li List item.
948 * @this {ListItem}
956 * @this {ListItem}
990 * @param {cr.ui.ListItem} li List item.
file_manager.js     [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js     [all...]
  /external/chromium_org/chrome/browser/resources/ntp_android/
ntp_android.js 838 var listItem = createDiv('list-item');
839 addActiveTouchListener(listItem, ACTIVE_LIST_ITEM_CSS_CLASS);
840 listItem.setAttribute(CONTEXT_MENU_URL_KEY, item.url);
844 listItem.appendChild(createDiv('icon', iconUrl));
850 listItem.appendChild(title);
852 listItem.addEventListener('click', function(evt) {
860 listItem.appendChild(createDiv('section-divider'));
862 listItem.classList.add('standard-divider');
864 return listItem;
    [all...]

Completed in 1337 milliseconds

1 2