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

1 2 3 4 5 6 7 8 91011>>

  /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();
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
UnixFakeFileSystem.java 83 protected boolean isRoot(String pathComponent) {
WindowsFakeFileSystem.java 98 protected boolean isRoot(String pathComponent) {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChainDirectory.java 48 protected ClusterChainDirectory(ClusterChain chain, boolean isRoot) {
51 chain.isReadOnly(), isRoot);
110 * @see #isRoot()
114 return isRoot() ? 0 : chain.getStartCluster();
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...]
  /frameworks/support/design/tests/src/android/support/design/testutils/
SnackbarUtils.java 20 import static android.support.test.espresso.matcher.ViewMatchers.isRoot;
129 onView(isRoot()).perform(waitUntilIdle());
173 onView(isRoot()).perform(waitUntilIdle());
197 onView(isRoot()).perform(waitUntilIdle());
TestUtilsActions.java 22 import static android.support.test.espresso.matcher.ViewMatchers.isRoot;
207 return isRoot();
  /frameworks/compile/mclinker/unittests/
InputTreeTest.cpp 84 ASSERT_FALSE(node.isRoot());
111 ASSERT_FALSE(node.isRoot());
131 ASSERT_FALSE(node.isRoot());
  /libcore/ojluni/src/main/java/java/util/stream/
AbstractShortCircuitTask.java 163 if (isRoot()) {
185 if (isRoot()) {
AbstractTask.java 263 protected boolean isRoot() {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleData.java 196 if (noSubstitute && !bundle.isRoot() && stringBundle.isRoot()) {
276 if (noSubstitute && !bundle.isRoot() && stringBundle.isRoot()) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 206 if (noSubstitute && !bundle.isRoot() && stringBundle.isRoot()) {
291 if (noSubstitute && !bundle.isRoot() && stringBundle.isRoot()) {
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 57 bool isRoot() const { return (m_pNode->right == m_pNode); }
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())
  /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) {
  /packages/apps/DocumentsUI/src/com/android/documentsui/
OpenExternalDirectoryActivity.java 159 final boolean isRoot = directoryName.equals(DIRECTORY_ROOT);
162 if (isRoot && isPrimary) {
170 file = isRoot ? volumeRoot : new File(volumeRoot, directoryName).getCanonicalFile();
181 if (isRoot) {
210 file = isRoot ? internalRoot : new File(internalRoot, directory);
231 final Intent intent = getIntentForExistingPermission(activity, isRoot, internalRoot, file);
259 args.putBoolean(EXTRA_IS_ROOT, isRoot);
345 boolean isRoot, File root, File file) {
  /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();
  /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())
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
FloatingToolbarEspressoUtils.java 25 import static android.support.test.espresso.matcher.ViewMatchers.isRoot;
100 onView(isRoot()).perform(SLEEP);
104 onView(isRoot()).perform(SLEEP);
  /art/tools/ahat/src/
Summarizer.java 59 if (inst.isRoot()) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CompactDecimalDataCache.java 146 public void put(UResource.Key key, UResource.Value value, boolean isRoot) {
148 if (isRoot && !isLatin) { return; }
210 if (isRoot
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CompactDecimalDataCache.java 145 public void put(UResource.Key key, UResource.Value value, boolean isRoot) {
147 if (isRoot && !isLatin) { return; }
209 if (isRoot
  /art/test/913-heaps/src/art/
Test913.java 540 public boolean isRoot() {
574 if (isRoot(referrer)) {
650 if (isRoot(referrer)) {
673 public static boolean isRoot(String ref) {
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 665 else if (/*isRoot*/ N == Pattern.getDstPattern())
733 bool isRoot = N == Pattern.getDstPattern();
737 if (isRoot) {
    [all...]

Completed in 1528 milliseconds

1 2 3 4 5 6 7 8 91011>>