Searched refs:path1 (Results 1 - 25 of 115) sorted by relevance

12345

/external/apache-http/src/org/apache/http/cookie/
H A DCookiePathComparator.java72 String path1 = normalizePath(c1);
74 if (path1.equals(path2)) {
76 } else if (path1.startsWith(path2)) {
78 } else if (path2.startsWith(path1)) {
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
H A DDefaultFileSystem.groovy266 * Build a path from the two path components. Concatenate path1 and path2. Insert the system-dependent
267 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
270 * @param path1 - the first path component may be null or empty
272 * @return the path resulting from concatenating path1 to path2
276 public String path(String path1, String path2) {
278 if (path1 != null && path1.length() > 0) {
279 buf.append(path1)
282 if ((path1 != null && path1
[all...]
H A DAbstractFakeFileSystem.groovy381 * Build a path from the two path components. Concatenate path1 and path2. Insert the path
382 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
385 * @param path1 - the first path component may be null or empty
387 * @return the path resulting from concatenating path1 to path2
389 String path(String path1, String path2) {
391 if (path1 != null && path1.length() > 0) {
392 buf.append(path1)
395 if ((path1 != null && path1
[all...]
H A DFileSystem.groovy167 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
168 * separator character in between if necessary (i.e., if both are non-empty and path1 does not already
171 * @param path1 - the first path component may be null or empty
173 * @return the path resulting from concatenating path1 to path2
175 public String path(String path1, String path2)
/external/skia/gm/
H A Dbug530095.cpp13 SkPath path1, path2; local
14 path1.addCircle(200, 200, 124);
24 canvas->drawPath(path1, paint);
40 canvas->drawPath(path1, paint);
/external/mesa3d/src/compiler/glsl/tests/
H A Dcompare_ir48 file1, path1 = tempfile.mkstemp(os.path.basename(sys.argv[1]))
55 subprocess.call(['diff', '-u', path1, path2])
57 os.remove(path1)
/external/libcxx/test/std/experimental/filesystem/class.filesystem_error/
H A Dfilesystem_error.members.pass.cpp21 // const path& path1() const noexcept;
54 assert(e.path1().empty() && e.path2().empty());
62 assert(e.path1() == p1);
71 assert(e.path1() == p1);
82 // const path& path1() const noexcept;
84 ASSERT_SAME_TYPE(path const&, decltype(e.path1()));
85 ASSERT_NOEXCEPT(e.path1());
/external/skia/tests/
H A DPathOpsBuilderTest.cpp275 SkPath path1; local
276 path1.moveTo(5, -225);
277 path1.lineTo(-225, 7425);
278 path1.lineTo(7425, 7425);
279 path1.lineTo(7425, -225);
280 path1.lineTo(-225, -225);
281 path1.lineTo(5, -225);
282 path1.close();
299 builder.add(path1, kUnion_SkPathOp);
312 SkPath path1(pat
335 SkPath path1; local
[all...]
H A DGpuDrawPathTest.cpp106 SkPath path1, path2; local
110 path1.conicTo(p0, p1, .5f);
116 GrPath::ComputeKey(GrShape(path1, GrStyle::SimpleFill()), &key1, &isVolatile);
125 path1.setIsVolatile(true);
126 GrPath::ComputeKey(GrShape(path1, style), &key1, &isVolatile);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCanvasTest.java92 Path path1 = new Path();
93 path1.lineTo(10, 10);
94 path1.moveTo(20, 15);
100 canvas.drawPath(path1, paint);
103 assertEquals("Path " + shadowOf(path1).getPoints().toString() + "\n"
106 assertEquals("Path " + shadowOf(path1).getPoints().toString() + "\n"
/external/ltp/testcases/kernel/syscalls/symlink/
H A Dsymlink01.c224 void delete_files(char *path1, char *path2);
316 int creat_both(char *path1, char *path2, char *path3);
317 int creat_symlink(char *path1, char *path2, char *_path3);
318 int creat_path_max(char *path1, char *path2, char *path3);
319 int ck_symlink(char *path1, char *path2, char *path3);
320 int creat_object(char *path1, char *_path2, char *_path3);
321 int ck_object(char *path1, char *path2, char *path3);
322 int ck_both(char *path1, char *path2, char *path3);
323 int ck_path_max(char *path1, char *path2, char *path3);
333 int (*test_setup) (char *path1, cha
636 delete_files(char *path1, char *path2) argument
650 creat_symlink(char *path1, char *path2, char *_path3) argument
678 creat_object(char *path1, char *_path2, char *_path3) argument
714 creat_both(char *path1, char *path2, char *path3) argument
732 ck_symlink(char *path1, char *path2, char *path3) argument
761 ck_both(char *path1, char *path2, char *path3) argument
796 creat_path_max(char *path1, char *path2, char *path3) argument
835 ck_path_max(char *path1, char *path2, char *path3) argument
859 ck_object(char *path1, char *path2, char *path3) argument
[all...]
/external/icu/icu4c/as_is/os400/
H A Diculd.c230 char path1[1000]; local
231 sprintf(path1,"/qsys.lib/%s.lib/%s.pgm",
234 printf("# ln -s %s %s\n", path1, prog);
235 if((!TEST_MODE) && symlink(path1,prog)) {
/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
/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
/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
/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
/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
/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
/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
/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
/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
/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
/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
/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
/external/dtc/tests/
H A Ddtbs_equal_unordered.c181 char path1[PATH_MAX], path2[PATH_MAX]; local
183 CHECK(fdt_get_path(fdt1, offset1, path1, sizeof(path1)));
186 if (!streq(path1, path2))
187 TEST_BUG("Path mismatch %s vs. %s\n", path1, path2);
189 verbose_printf("Checking %s\n", path1);

Completed in 548 milliseconds

12345