Home
last modified time | relevance | path

Searched refs:rootType (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/chrome/browser/resources/file_manager/common/js/
Dpath_util.js96 var rootType = PathUtil.getRootType(path);
97 return rootType === RootType.DRIVE ||
98 rootType === RootType.DRIVE_SHARED_WITH_ME ||
99 rootType === RootType.DRIVE_RECENT ||
100 rootType === RootType.DRIVE_OFFLINE;
413 var rootType;
419 rootType = RootType.DRIVE;
423 rootType = RootType.DRIVE_OTHER;
431 case util.VolumeType.DOWNLOADS: rootType = RootType.DOWNLOADS; break;
432 case util.VolumeType.REMOVABLE: rootType = RootType.REMOVABLE; break;
[all …]
/external/chromium_org/third_party/WebKit/Source/core/dom/
DLiveNodeList.h51 …LiveNodeListBase(Node* ownerNode, NodeListRootType rootType, NodeListInvalidationType invalidation… in LiveNodeListBase() argument
57 , m_rootType(rootType) in LiveNodeListBase()
65 ASSERT(m_rootType == static_cast<unsigned>(rootType)); in LiveNodeListBase()
130 …ALWAYS_INLINE NodeListRootType rootType() const { return static_cast<NodeListRootType>(m_rootType)… in rootType() function
191 …ectionType, NodeListInvalidationType invalidationType, NodeListRootType rootType = NodeListIsRoote…
192 …: LiveNodeListBase(ownerNode.get(), rootType, invalidationType, collectionType == ChildNodeListTyp…
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ui/
Dnavigation_list.js56 var rootType = PathUtil.getRootType(modelItem.path);
57 this.iconDiv_.setAttribute('volume-type-icon', rootType);
64 if (rootType === RootType.ARCHIVE || rootType === RootType.REMOVABLE) {
94 var rootType = PathUtil.getRootType(this.modelItem_.path);
99 (rootType != RootType.DRIVE && rootType != RootType.DOWNLOADS))
Dbreadcrumbs_controller.js87 if (locationInfo.rootType !== RootType.DRIVE_OTHER) {
/external/chromium_org/ppapi/generators/
Didl_c_proto.py314 rootType = 'Array'
317 rootType, mode = self.GetRootTypeMode(node.GetType(release), release,
322 rootType, mode = self.GetRootTypeMode(node.GetType(release),
327 rootType = node.cls
333 rootType = 'TypeValue'
335 rootType = node.cls
338 rootType = 'TypeValue'
340 rootType = node.cls
345 rootType = node.GetName()
347 rootType = 'TypeValue'
[all …]
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/
Ddirectory_model.js64 rootType: RootType.DRIVE property
78 rootType: RootType.DRIVE_OFFLINE property
92 rootType: RootType.DRIVE_SHARED_WITH_ME property
108 rootType: RootType.DRIVE_RECENT property
640 var rootType = this.getCurrentRootType();
641 if ((rootType === RootType.DRIVE ||
642 rootType === RootType.DRIVE_SHARED_WITH_ME ||
643 rootType === RootType.DRIVE_RECENT ||
644 rootType === RootType.DRIVE_OFFLINE) &&
1033 var rootType = PathUtil.getRootType(path);
[all …]
Dfile_manager_commands.js368 var rootType = CommandUtil.getCommandRootType(event.target);
370 event.canExecute = (rootType == RootType.ARCHIVE ||
371 rootType == RootType.REMOVABLE);
373 event.command.label = rootType == RootType.ARCHIVE ?
Dfile_manager.js1734 var rootType = this.directoryModel_.getCurrentRootType();
1735 return rootType === RootType.DRIVE ||
1736 rootType === RootType.DRIVE_SHARED_WITH_ME ||
1737 rootType === RootType.DRIVE_RECENT ||
1738 rootType === RootType.DRIVE_OFFLINE;
Ddrive_banners.js398 locationInfo.rootType === RootType.DRIVE &&
/external/icu4c/common/
Duresdata.c161 UResType rootType; in res_init() local
176 rootType=(UResType)RES_GET_TYPE(pResData->rootRes); in res_init()
177 if(!URES_IS_TABLE(rootType)) { in res_init()
/external/chromium_org/third_party/icu/source/common/
Duresdata.c154 UResType rootType; in res_init() local
169 rootType=RES_GET_TYPE(pResData->rootRes); in res_init()
170 if(!URES_IS_TABLE(rootType)) { in res_init()
/external/chromium_org/chrome/browser/resources/file_manager/background/js/
Dvolume_manager.js636 entry.rootType,