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

1 2 3

  /ndk/tests/build/import-install/path2/
path2.c 1 #include "path2.h"
3 int path2(int x) function
path2.h 3 extern int path2(int x);
Android.mk 7 LOCAL_SRC_FILES := path2.c
  /ndk/tests/build/import-install/path1/
path1.c 2 #include "path2.h"
6 return path2(x + 1);
Android.mk 14 $(call import-module,path2)
  /external/skia/gm/
strokefill.cpp 65 SkPath path2; local
66 path2.setFillType(SkPath::kWinding_FillType);
67 path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
68 path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(40), SkPath::kCW_Direction);
69 canvas->drawPath(path2, paint);
71 path2.reset();
72 path2.addCircle(x + SkIntToScalar(240), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
73 canvas->drawPath(path2, paint);
74 SkASSERT(path2.cheapIsDirection(SkPath::kCCW_Direction));
76 path2.reset()
    [all...]
  /ndk/tests/build/multi-module-path/
build.sh 6 export NDK_MODULE_PATH=`pwd`/path1:`pwd`/path2
run.sh 6 export NDK_MODULE_PATH=`pwd`/path1:`pwd`/path2
  /external/skia/tests/
ParsePathTest.cpp 15 SkPath path2; local
16 bool success = SkParsePath::FromSVGString(str.c_str(), &path2);
19 SkParsePath::ToSVGString(path2, &str2);
23 REPORTER_ASSERT(reporter, path == path2);
24 if (path != path2) {
  /cts/tests/tests/content/src/android/content/cts/
ContentUrisTest.java 27 private static final String PATH2 = "testPath2";
33 private Uri uri2 = Uri.parse("content://" + AUTHORITY + "/" + PATH2);
76 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2;
98 expected = "content://" + AUTHORITY + "/" + PATH2 + "/" + CODE2;
  /external/apache-http/src/org/apache/http/cookie/
CookiePathComparator.java 68 String path2 = normalizePath(c2); local
69 if (path1.equals(path2)) {
71 } else if (path1.startsWith(path2)) {
73 } else if (path2.startsWith(path1)) {
  /external/bluetooth/glib/gio/tests/
g-file.c 32 const char *path2; member in struct:TestPathsWithOper
81 compare_two_files (const gboolean use_uri, const char *path1, const char *path2)
90 file2 = g_file_new_for_uri (path2);
95 file2 = g_file_new_for_path (path2);
134 gboolean equal = compare_two_files (FALSE, cmp_paths[i].path1, cmp_paths[i].path2);
163 gboolean equal = compare_two_files (TRUE, cmp_uris[i].path1, cmp_uris[i].path2);
274 gboolean equal = parse_check_utf8 (strings[i].use_uri, strings[i].path1, strings[i].path2);
336 g_assert_cmpstr (s, ==, arg_data[i].path2);
402 /* path1 equal uri path2 path3 */
428 char *s = get_relative_path (dirs[i].use_uri, dirs[i].equal, dirs[i].path1, dirs[i].path2);
    [all...]
  /external/dbus/dbus/
dbus-object-tree.c 1502 const char *path2[] = { "foo", "bar", NULL }; local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
DateFormatSymbolsTest.java 75 URL path2 = new File("resources/provider/correct").toURL(); local
77 new URL[] { path1, path2 }) {
105 URL path2 = new File("resources/provider/wrong").toURL(); local
107 new URL[] { path1, path2 }) {
179 URL path2 = new File("resources/provider/correct").toURL(); local
181 new URL[] { path1, path2 }) {
202 URL path2 = new File("resources/provider/wrong").toURL(); local
204 new URL[] { path1, path2 }) {
DecimalFormatSymbolsTest.java 84 URL path2 = new File("resources/provider/correct").toURL(); local
86 new URL[] { path1, path2 }) {
114 URL path2 = new File("resources/provider/wrong").toURL(); local
116 new URL[] { path1, path2 }) {
190 URL path2 = new File("resources/provider/correct").toURL(); local
192 new URL[] { path1, path2 }) {
213 URL path2 = new File("resources/provider/wrong").toURL(); local
215 new URL[] { path1, path2 }) {
  /external/clang/bindings/python/tests/cindex/
test_translation_unit.py 61 def normpaths_equal(path1, path2):
65 return os.path.normpath(path1) == os.path.normpath(path2)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/etc/checkstyle/
checkstyle-frames.xsl 230 <xsl:variable name="path2" select="translate($path,'\','/')"/>
233 <xsl:if test="contains($path2,'/')">
236 <xsl:with-param name="path"><xsl:value-of select="substring-after($path2,'/')"/></xsl:with-param>
239 <xsl:if test="not(contains($path2,'/')) and not($path2 = '')">
  /packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/makedict/
DictionaryMaker.java 93 * Utility method that throws an exception if path1 and path2 point to the same file.
95 private static void checkNotSameFile(final String path1, final String path2)
97 if (null == path1 || null == path2) return;
98 if (new File(path1).getCanonicalPath().equals(new File(path2).getCanonicalPath())) {
99 throw new RuntimeException(path1 + " and " + path2 + " are the same file: "
  /external/webkit/Tools/Scripts/webkitpy/style/
filter_unittest.py 223 (["path2"], ["+c"])]
229 self.assertTrue(config.should_check("c", "path2"))
231 self.assertFalse(config.should_check("c", "path2/path1"))
  /external/chromium/chrome/browser/
browsing_data_appcache_helper_unittest.cc 38 GURL manifest3("http://example2.com/path2/manifest.xml");
  /external/clang/tools/c-arcmt-test/
c-arcmt-test.c 69 " c-arcmt-test <remap-file-path1> <remap-file-path2> ...\n\n\n");
  /external/openssh/
sftp.c 1116 int *hflag, int *sflag, unsigned long *n_arg, char **path1, char **path2)
1161 *path1 = *path2 = NULL;
1178 *path2 = xstrdup(argv[optidx + 1]);
1180 undo_glob_escape(*path2);
1194 *path2 = xstrdup(argv[optidx + 1]);
1197 undo_glob_escape(*path2);
1289 char *path1, *path2, *tmp; local
1298 path1 = path2 = NULL;
1300 &sflag, &n_arg, &path1, &path2);
1317 err = process_get(conn, path1, path2, *pwd, pflag, rflag)
    [all...]
  /frameworks/wilhelm/tests/mimeUri/
slesTestPlayUri2.cpp 63 void TestPlayUri( SLObjectItf sl, const char* path, const char* path2)
142 uri.URI = (SLchar*) path2;
213 fprintf(stdout, "URI example: starting to play %s\n", path2);
  /external/chromium/chrome/browser/search_engines/
search_host_to_urls_map_unittest.cc 40 t_urls_[1].SetURL("http://" + host_ + "/path2", 0, 0);
  /external/libvpx/examples/includes/geshi/docs/
phpdoc.ini 67 ;directory = /path1,/path2,.,..,subdirectory

Completed in 673 milliseconds

1 2 3