Home
last modified time | relevance | path

Searched refs:parentPath (Results 1 – 25 of 37) sorted by relevance

12

/external/annotation-tools/annotation-file-utilities/src/annotator/find/
DGenericArrayLocationCriterion.java221 TreePath parentPath = pathRemaining.getParentPath(); in isSatisfiedBy() local
222 if (parentPath == null) { in isSatisfiedBy()
228 Tree parent = parentPath.getLeaf(); in isSatisfiedBy()
233 parentPath = parentPath.getParentPath(); in isSatisfiedBy()
234 parent = parentPath.getLeaf(); in isSatisfiedBy()
246 parentPath = parentPath.getParentPath(); in isSatisfiedBy()
247 parent = parentPath.getLeaf(); in isSatisfiedBy()
257 pathRemaining = parentPath; in isSatisfiedBy()
271 TreePath gpath = parentPath.getParentPath(); in isSatisfiedBy()
335 for (TreePath outerPath = parentPath.getParentPath(); in isSatisfiedBy()
[all …]
DBoundLocationCriterion.java55 TreePath parentPath = path.getParentPath(); in isSatisfiedBy() local
56 if (parentPath == null) { in isSatisfiedBy()
60 Tree parent = parentPath.getLeaf(); in isSatisfiedBy()
79 returnValue = parentCriterion.isSatisfiedBy(parentPath); in isSatisfiedBy()
90 returnValue = parentCriterion.isSatisfiedBy(parentPath); in isSatisfiedBy()
115 return this.isSatisfiedBy(parentPath); in isSatisfiedBy()
DLocalVariableCriterion.java41 TreePath parentPath = path.getParentPath(); in isSatisfiedBy() local
42 if (parentPath != null) { in isSatisfiedBy()
43 Tree parent = parentPath.getLeaf(); in isSatisfiedBy()
47 && (! (parentPath.getParentPath().getLeaf() instanceof MethodTree))) { in isSatisfiedBy()
110 return this.isSatisfiedBy(parentPath); in isSatisfiedBy()
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/command/
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 … verifyFileSystemCondition(notNullOrEmpty(parentPath), parentPath, "filesystem.doesNotExist"); in handle() local
52 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.doesNotExist… in handle() local
53 verifyWritePermission(session, parentPath); in handle()
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPIteratorImpl.java245 public NodeIterator(XMPNode visitedNode, String parentPath, int index) in NodeIterator() argument
255 path = accumulatePath(visitedNode, parentPath, index); in NodeIterator()
399 protected String accumulatePath(XMPNode currNode, String parentPath, int currentIndex) in accumulatePath() argument
419 if (parentPath == null || parentPath.length() == 0) in accumulatePath()
431 return parentPath + separator + segmentName; in accumulatePath()
525 private String parentPath;
537 public NodeIteratorChildren(XMPNode parentNode, String parentPath)
543 this.parentPath = accumulatePath(parentNode, parentPath, 1);
578 path = accumulatePath(child, parentPath, index);
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java54 String parentPath = getFileSystem().getParent(path); in handle() local
55 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
58 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
62 verifyExecutePermission(session, parentPath); in handle()
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/
DAbstractStoreFileCommandHandler.java51 String parentPath = getFileSystem().getParent(path); in handle() local
52 …verifyFileSystemCondition(getFileSystem().isDirectory(parentPath), parentPath, "filesystem.isNotAD… in handle() local
55 String pathMustBeWritable = getFileSystem().exists(path) ? path : parentPath; in handle()
59 verifyExecutePermission(session, parentPath); in handle()
DRntoCommandHandler.java50 String parentPath = getFileSystem().getParent(toPath); in handle() local
51 …verifyFileSystemCondition(getFileSystem().exists(parentPath), parentPath, "filesystem.pathDoesNotE… in handle() local
52 verifyWritePermission(session, parentPath); in handle()

12