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

1 2 3 4 5 6 7 8 91011

  /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)
  /ndk/tests/build/multi-module-path/
build.sh 6 export NDK_MODULE_PATH=`pwd`/path1:`pwd`/path2
  /external/apache-http/src/org/apache/http/cookie/
CookiePathComparator.java 73 String path2 = normalizePath(c2); local
74 if (path1.equals(path2)) {
76 } else if (path1.startsWith(path2)) {
78 } else if (path2.startsWith(path1)) {
  /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) {
81 SkPath path, path2; local
PathOpsBuilderTest.cpp 96 SkPath path2; local
99 builder.resolve(&path2);
100 int pixelDiff = comparePaths(reporter, __FUNCTION__, path, path2);
284 SkPath path2; local
285 path2.moveTo(5940, 2790);
286 path2.lineTo(5940, 2160);
287 path2.lineTo(5970, 1980);
288 path2.lineTo(5688, 773669888);
289 path2.lineTo(5688, 2160);
290 path2.lineTo(5688, 2430)
    [all...]
GpuDrawPathTest.cpp 97 SkPath path1, path2; local
99 path2.setIsVolatile(true);
104 path2.conicTo(p0, p1, .7f);
110 GrPath::ComputeKey(path2, stroke, &key2, &isVolatile);
PathOpsBattles.cpp 13 SkPath path1, path2; local
29 path2.moveTo(46.9383f, 68.4529f);
30 path2.cubicTo(17.5117f, 88.6307f, -21.518f, 87.7442f, -49.9981f, 66.251f);
31 path2.cubicTo(-78.4781f, 44.7578f, -90.035f, 7.46781f, -78.7014f, -26.3644f);
32 path2.cubicTo(-67.3679f, -60.1967f, -35.6801f, -83, -1.48383e-06f, -83);
33 path2.lineTo(4.22689e-14f, -60);
34 path2.cubicTo(-25.7929f, -60, -48.6997f, -43.5157f, -56.8926f, -19.0586f);
35 path2.cubicTo(-65.0855f, 5.39842f, -56.7312f, 32.355f, -36.1432f, 47.8923f);
36 path2.cubicTo(-15.5552f, 63.4296f, 12.6591f, 64.0704f, 33.9313f, 49.484f);
37 path2.lineTo(46.9383f, 68.4529f)
43 SkPath path1, path2; local
66 SkPath path1, path2; local
    [all...]
PathOpsOpTest.cpp 1894 SkPath path2; local
1966 SkPath path2; local
2001 SkPath path2; local
2082 SkPath path2; local
3331 SkPath path2; local
3349 SkPath path2; local
3372 SkPath path2; local
3467 SkPath path2; local
3478 SkPath path1, path2; local
3520 SkPath path, path2; local
5589 SkPath path1, path2; local
5608 SkPath path1, path2; local
    [all...]
  /external/skia/gm/
bug530095.cpp 13 SkPath path1, path2; local
15 path2.addCircle(2, 2, 1.24f);
33 canvas->drawPath(path2, paint);
47 canvas->drawPath(path2, paint);
strokefill.cpp 281 SkPath path2; local
282 path2.setFillType(SkPath::kWinding_FillType);
283 path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
284 path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(40), SkPath::kCW_Direction);
285 canvas->drawPath(path2, paint);
287 path2.reset();
288 path2.addCircle(x + SkIntToScalar(240), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
289 canvas->drawPath(path2, paint);
290 SkASSERT(SkPathPriv::CheapIsFirstDirection(path2, SkPathPriv::kCCW_FirstDirection));
292 path2.reset()
    [all...]
  /external/mesa3d/src/glsl/tests/
compare_ir 49 file2, path2 = tempfile.mkstemp(os.path.basename(sys.argv[2]))
55 subprocess.call(['diff', '-u', path1, path2])
58 os.remove(path2)
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CanvasTest.java 95 Path path2 = new Path(); local
96 path2.moveTo(100, 100);
97 path2.lineTo(150, 140);
101 canvas.drawPath(path2, paint);
104 + "Path " + shadowOf(path2).getPoints().toString(), shadowOf(canvas).getDescription());
107 + "Path " + shadowOf(path2).getPoints().toString(), shadowOf(targetBitmap).getDescription());
  /frameworks/compile/mclinker/unittests/
UniqueGCFactoryBaseTest.cpp 68 sys::fs::Path path1(TOPDIR), path2(TOPDIR);
70 path2.append("unittests/test2.txt");
77 memFactory->produce(path2, FileHandle::OpenMode(FileHandle::ReadOnly),
  /external/webrtc/webrtc/base/
pathutils_unittest.cc 46 rtc::Pathname path2("c:/foo bar.txt");
47 EXPECT_EQ(path2.url(), std::string("file:///c:/foo%20bar.txt"));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
FileSystem.java 128 * Build a path from the two path components. Concatenate path1 and path2. Insert the file system-dependent
130 * end with a separator character AND path2 does not begin with one).
133 * @param path2 - the second 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);
  /external/lzma/CPP/Windows/
FileLink.cpp 369 FString path2 = path; local
370 int pos = path2.ReverseFind(FCHAR_PATH_SEPARATOR);
374 if (pos == 2 && path2[1] == L':')
377 path2.DeleteFrom(pos);
378 return NDir::CreateComplexDir(path2);
  /external/skia/samplecode/
SamplePictFile.cpp 180 SkString path2(path);
181 path2.append(".new.skp");
182 SkFILEWStream writer(path2.c_str());
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 290 std::string JoinPath(const std::string &path1, const std::string &path2) {
292 return path2;
294 if (path2.empty()) {
301 if (path2[0] == OS_PATH_SEPARATOR) {
302 fullPath += path2.substr(1, string::npos);
304 fullPath += path2;
slang_rs_reflect_utils.h 95 std::string JoinPath(const std::string &path1, const std::string &path2);
  /external/dbus/dbus/
dbus-object-tree.c 1515 const char *path2[] = { "foo", "bar", NULL }; local
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DictionaryMaker.java 86 * Utility method that throws an exception if path1 and path2 point to the same file.
88 private static void checkNotSameFile(final String path1, final String path2)
90 if (null == path1 || null == path2) return;
91 if (new File(path1).getCanonicalPath().equals(new File(path2).getCanonicalPath())) {
92 throw new RuntimeException(path1 + " and " + path2 + " are the same file: "

Completed in 1512 milliseconds

1 2 3 4 5 6 7 8 91011