HomeSort by relevance Sort by last modified time
    Searched refs:modelItem (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
navigation_list.js 16 get modelItem() { return this.modelItem_; }
45 * @param {NavigationModelItem} modelItem NavigationModelItem of this item.
50 function(modelItem, opt_deviceType) {
54 this.modelItem_ = modelItem;
56 var rootType = PathUtil.getRootType(modelItem.path);
62 this.label_.textContent = modelItem.label;
182 this.itemConstructor = function(modelItem) {
183 return self.renderRoot_(modelItem);
208 * @param {NavigationModelItem} modelItem NavigationModelItem to be rendered.
212 NavigationList.prototype.renderRoot_ = function(modelItem) {
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
navigation_list_model.js 310 * @param {NavigationModelItem} modelItem The entry to find.
315 NavigationListModel.prototype.indexOf = function(modelItem, opt_fromIndex) {
317 if (modelItem === this.item(i))
325 * @param {NavigationModelItem} modelItem The entry which is not found.
327 NavigationListModel.prototype.onItemNotFoundError = function(modelItem) {
328 var index = this.indexOf(modelItem);
330 // Invalid modelItem.
338 this.shortcutListModel_.remove(modelItem.path);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java 272 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
273 if (modelItem != null && item != modelItem) {
275 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
276 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
298 // the modelItem needs to match up perfectly with item if our model is
300 // modelItem == item or the equality check above
302 "modelItem: " +
303 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java 531 ItemInfo modelItem = sBgItemsIdMap.get(itemId);
532 if (modelItem != null && item != modelItem) {
534 if (modelItem instanceof ShortcutInfo && item instanceof ShortcutInfo) {
535 ShortcutInfo modelShortcut = (ShortcutInfo) modelItem;
557 // the modelItem needs to match up perfectly with item if our model is
559 // modelItem == item or the equality check above
561 "modelItem: " +
562 ((modelItem != null) ? modelItem.toString() : "null")
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/background/js/
test_util.js 217 if (selected[0].modelItem.path !== path ||

Completed in 676 milliseconds