Searched defs:path1 (Results 1 - 25 of 42) sorted by relevance

12

/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java316 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
317 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
320 * @param path1 - the first path component may be null or empty
322 * @return the normalized path resulting from concatenating path1 to path2
324 public String path(String path1, String path2) { argument
326 if (path1 != null && path1.length() > 0) {
327 buf.append(path1);
330 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the normalized path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the normalized path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java307 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
308 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
311 * @param path1 - the first path component may be null or empty
313 * @return the normalized path resulting from concatenating path1 to path2
315 public String path(String path1, String path2) { argument
317 if (path1 != null && path1.length() > 0) {
318 buf.append(path1);
321 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java315 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
316 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
319 * @param path1 - the first path component may be null or empty
321 * @return the normalized path resulting from concatenating path1 to path2
323 public String path(String path1, String path2) { argument
325 if (path1 != null && path1.length() > 0) {
326 buf.append(path1);
329 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java315 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
316 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
319 * @param path1 - the first path component may be null or empty
321 * @return the normalized path resulting from concatenating path1 to path2
323 public String path(String path1, String path2) { argument
325 if (path1 != null && path1.length() > 0) {
326 buf.append(path1);
329 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java316 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
317 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
320 * @param path1 - the first path component may be null or empty
322 * @return the normalized path resulting from concatenating path1 to path2
324 public String path(String path1, String path2) { argument
326 if (path1 != null && path1.length() > 0) {
327 buf.append(path1);
330 if ((path1 != null && path1
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
H A DFileSystem.java128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
129 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
132 * @param path1 - the first path component may be null or empty
134 * @return the path resulting from concatenating path1 to path2
136 public String path(String path1, String path2); argument
H A DAbstractFakeFileSystem.java316 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
317 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
320 * @param path1 - the first path component may be null or empty
322 * @return the normalized path resulting from concatenating path1 to path2
324 public String path(String path1, String path2) { argument
326 if (path1 != null && path1.length() > 0) {
327 buf.append(path1);
330 if ((path1 != null && path1
[all...]
/external/skia/tests/
H A DPathOpsIssue3651.cpp12 static SkPath path1() { function
1095 SkPath path = path1();

Completed in 379 milliseconds

12