HomeSort by relevance Sort by last modified time
    Searched full:isroot (Results 1 - 25 of 311) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/simpleperf/
test_util.h 33 bool IsRoot();
37 if (IsRoot()) { \
47 #define TEST_REQUIRE_HOST_ROOT() if (!IsRoot()) return
  /external/doclava/res/assets/templates/
yaml_navtree.cs 7 isRoot: treat this node as if it has children and insert a section node.
10 def:write_child_nodes(page,whitespace,isRoot) ?>
13 if:subcount(page.children) || isRoot ?>
  /system/timezone/tzlookup_generator/src/test/java/com/android/libcore/timezone/tzlookup/zonetree/
TreeNodeTest.java 62 assertTrue(testTreeNode.isRoot());
92 assertTrue(node1.isRoot());
94 assertFalse(node11.isRoot());
96 assertFalse(node111.isRoot());
109 assertTrue(node11.isRoot());
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
AbstractDirectory.java 45 private final boolean isRoot;
56 * @param isRoot if the new {@code AbstractDirectory} represents a root
60 int capacity, boolean readOnly, boolean isRoot) {
65 this.isRoot = isRoot;
167 public final boolean isRoot() {
168 return this.isRoot;
193 * @see #isRoot()
196 if (!isRoot()) {
258 if (!this.isRoot) throw new IOException
    [all...]
ClusterChainDirectory.java 48 protected ClusterChainDirectory(ClusterChain chain, boolean isRoot) {
51 chain.isReadOnly(), isRoot);
110 * @see #isRoot()
114 return isRoot() ? 0 : chain.getStartCluster();
  /packages/apps/DocumentsUI/src/com/android/documentsui/base/
SharedMinimal.java 73 * @param isRoot whether the requested directory is the root directory.
79 boolean onResult(File file, String volumeLabel, boolean isRoot, boolean isPrimary,
122 final boolean isRoot = directoryName.equals(DIRECTORY_ROOT);
125 if (isRoot && isPrimary) {
133 file = isRoot ? volumeRoot : new File(volumeRoot, directoryName).getCanonicalFile();
143 if (isRoot) {
173 file = isRoot ? internalRoot : new File(internalRoot, directory);
196 return callback.onResult(file, volumeLabel, isRoot, isPrimary, requestedUri, rootUri);
  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
Item.java 57 abstract boolean isRoot();
62 return isRoot();
SpacerItem.java 45 boolean isRoot() {
AppItem.java 77 boolean isRoot() {
RootsAdapter.java 81 if (item.isRoot()) {
  /frameworks/compile/mclinker/lib/Core/
InputTree.cpp 54 return !pos.hasData() && !pos.isRoot();
58 return !pos.hasData() && !pos.isRoot();
62 return !pos.hasData() && !pos.isRoot();
66 return !pos.hasData() && !pos.isRoot();
70 return !pos.hasData() && !pos.isRoot();
74 return !pos.hasData() && !pos.isRoot();
  /prebuilts/go/darwin-x86/src/path/filepath/
symlink.go 13 // isRoot returns true if path is root of file system
15 func isRoot(path string) bool {
65 if isRoot(dir) {
  /prebuilts/go/linux-x86/src/path/filepath/
symlink.go 13 // isRoot returns true if path is root of file system
15 func isRoot(path string) bool {
65 if isRoot(dir) {
  /libcore/metrictests/memory/host/src/libcore/heapmetrics/
Reachability.java 51 if (instance.isRoot()) {
  /external/clang/test/Sema/
function-redecl.c 98 int isroot(short x, // expected-note{{previous declaration is here}}
101 int isroot(x, y) function
  /frameworks/compile/mclinker/unittests/
InputTreeTest.cpp 84 ASSERT_FALSE(node.isRoot());
111 ASSERT_FALSE(node.isRoot());
131 ASSERT_FALSE(node.isRoot());
  /frameworks/base/media/java/android/mtp/
MtpStorageManager.java 191 return isRoot() ? this : mParent.getRoot();
199 return isRoot() ? Paths.get(mName) : mParent.getPath().resolve(mName);
202 public boolean isRoot() {
423 return obj.getParent().isRoot() && mSubdirectories != null
592 if (!parent.isRoot() && getObject(parent.getId()) != parent)
599 if (mSubdirectories != null && parent.isRoot() && !mSubdirectories.contains(newName)) {
619 boolean ret = removed.isRoot()
623 if (removed.isRoot()) {
788 if (!obj.isRoot() && mObjects.get(obj.getId()) != obj) {
793 if (obj.getParent().isRoot() && obj.getParent(
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
FloatingToolbarEspressoUtils.java 26 import static android.support.test.espresso.matcher.ViewMatchers.isRoot;
108 onView(isRoot()).perform(SLEEP);
112 onView(isRoot()).perform(SLEEP);
  /external/tagsoup/tssl/
tssl.rnc 56 element isRoot { empty} |
tssl.xslt 42 <xsl:apply-templates select="tssl:element/tssl:isRoot"/>
104 <xsl:apply-templates select="tssl:isRoot"/>
144 <!-- Applied from tssl:element to handle isRoot. -->
145 <xsl:template match="tssl:isRoot">
  /frameworks/compile/mclinker/include/mcld/ADT/
BinTree.h 129 return (!IteratorType::isRoot() &&
212 bool isRoot() const { return (m_pNode->right == m_pNode); }
215 return (!isRoot() && (0 != static_cast<node_type*>(m_pNode)->data));
435 if (pPosition.isRoot())
TreeBase.h 57 bool isRoot() const { return (m_pNode->right == m_pNode); }
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 45 bool isGroup() const { return !Base::hasData() && !Base::isRoot(); }
180 if (pPosition.isRoot())
304 if (pRoot.isRoot())
318 if (pRoot.isRoot())
  /device/linaro/bootloader/edk2/ArmPkg/Filesystem/SemihostFs/Arm/
SemihostFs.c 83 BOOLEAN IsRoot;
142 RootFcb->IsRoot = TRUE;
274 FileFcb->IsRoot = 0;
417 if (!Fcb->IsRoot) {
462 if (!Fcb->IsRoot) {
519 if (Fcb->IsRoot) {
721 if (Fcb->IsRoot) {
772 if (Fcb->IsRoot == TRUE) {
792 if (Fcb->IsRoot == TRUE) {
965 if (((Info->Attribute & EFI_FILE_DIRECTORY) != 0) != Fcb->IsRoot) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionItem.java 83 public boolean isRoot() {
84 return mCanvasViewInfo.isRoot();

Completed in 1663 milliseconds

1 2 3 4 5 6 7 8 91011>>