OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:modelItem
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
navigation_list_model.js
263
* @param {NavigationModelItem}
modelItem
The entry to find.
268
NavigationListModel.prototype.indexOf = function(
modelItem
, opt_fromIndex) {
270
if (
modelItem
=== this.item(i))
278
* @param {NavigationModelItem}
modelItem
The entry which is not found.
280
NavigationListModel.prototype.onItemNotFoundError = function(
modelItem
) {
281
if (
modelItem
.isVolume) {
285
if (
modelItem
.isShortcut) {
287
this.shortcutListModel_.onItemNotFoundError(
modelItem
.entry);
directory_tree.js
410
* @param {NavigationModelItem}
modelItem
NavigationModelItem of this volume.
415
function VolumeItem(
modelItem
, tree) {
418
item.decorate(
modelItem
, tree);
427
get
modelItem
() {
462
* @param {NavigationModelItem}
modelItem
NavigationModelItem of this volume.
465
VolumeItem.prototype.decorate = function(
modelItem
, tree) {
468
this.modelItem_ =
modelItem
;
469
this.volumeInfo_ =
modelItem
.volumeInfo;
470
this.label =
modelItem
.volumeInfo.label;
592
this.parentTree_.dataModel.onItemNotFoundError(this.
modelItem
);
[
all
...]
/packages/apps/Launcher2/src/com/android/launcher2/
LauncherModel.java
282
ItemInfo
modelItem
= sBgItemsIdMap.get(itemId);
283
if (
modelItem
!= null && item !=
modelItem
) {
285
if (
modelItem
instanceof ShortcutInfo && item instanceof ShortcutInfo) {
286
ShortcutInfo modelShortcut = (ShortcutInfo)
modelItem
;
308
// the
modelItem
needs to match up perfectly with item if our model is
310
//
modelItem
== item or the equality check above
312
"
modelItem
: " +
313
((
modelItem
!= null) ?
modelItem
.toString() : "null")
[
all
...]
/packages/apps/Launcher3/src/com/android/launcher3/
LauncherModel.java
576
ItemInfo
modelItem
= sBgItemsIdMap.get(itemId);
577
if (
modelItem
!= null && item !=
modelItem
) {
579
if (
modelItem
instanceof ShortcutInfo && item instanceof ShortcutInfo) {
580
ShortcutInfo modelShortcut = (ShortcutInfo)
modelItem
;
602
// the
modelItem
needs to match up perfectly with item if our model is
604
//
modelItem
== item or the equality check above
606
"
modelItem
: " +
607
((
modelItem
!= null) ?
modelItem
.toString() : "null")
[
all
...]
Completed in 139 milliseconds