HomeSort by relevance Sort by last modified time
    Searched full:path (Results 326 - 350 of 17547) sorted by null

<<11121314151617181920>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
runrc.cmd 17 Run RC file, name is in the first arg, second arg is either PATH
21 parse arg name path rest
33 call runit name path
37 parse arg name path dir
39 if path \= '' & path \= '-r' then do
40 dir = value(translate(path),,'OS2ENVIRONMENT')
42 dir = translate(dir, '\', '/') /* change UNIX-like path to OS/2 */
47 if path = '-r' then do /* recursive call */
48 subdir = filespec('path', dir
    [all...]
  /external/openssh/openbsd-compat/
dirname.c 29 dirname(const char *path)
36 if (path == NULL || *path == '\0') {
43 endp = path + strlen(path) - 1;
44 while (endp > path && *endp == '/')
48 while (endp > path && *endp != '/')
52 if (endp == path) {
60 } while (endp > path && *endp == '/');
63 len = endp - path + 1
    [all...]
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 20 import android.graphics.Path;
55 public Path toPath() {
56 Path path = new Path(); local
64 path.moveTo(point[0], point[1]);
69 path.lineTo(point[0], point[1]);
74 path.lineTo(point[0], point[1]);
79 path.lineTo(point[0], point[1]);
81 path.close()
    [all...]
  /frameworks/base/core/java/android/view/animation/
PathInterpolator.java 22 import android.graphics.Path;
30 * An interpolator that can traverse a Path that extends from <code>Point</code>
31 * <code>(0, 0)</code> to <code>(1, 1)</code>. The x coordinate along the <code>Path</code>
33 * This means that the Path must conform to a function <code>y = f(x)</code>.
35 * <p>The <code>Path</code> must not have gaps in the x direction and must not
39 * Path path = new Path();
40 * path.lineTo(0.25f, 0.25f);
41 * path.moveTo(0.25f, 0.5f)
110 Path path = PathParser.createPathFromPathData(pathData); local
144 Path path = new Path(); local
151 Path path = new Path(); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextPathActivity.java 23 import android.graphics.Path;
61 Path path = new Path(); local
64 drawTextAsPath(canvas, "Hello", path);
67 drawTextAsPath(canvas, "OpenGL", path);
70 private void drawTextAsPath(Canvas canvas, String text, Path path) {
72 mHugePaint.getTextPath(text, 0, count, 0, 0, path);
73 path.close()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
SnailSource.java 38 // The only path we accept is "/snail/set/id" and "/snail/item/id"
40 public MediaObject createMediaObject(Path path) {
42 switch (mMatcher.match(path)) {
47 return new SnailAlbum(path, item);
50 return new SnailItem(path);
57 // them. You can obtain the Path of the SnailAlbum and SnailItem associated
63 public static Path getSetPath(int id) {
64 return Path.fromString("/snail/set").getChild(id);
67 public static Path getItemPath(int id)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
16 self.cwd_drive = os.path.splitdrive(os.getcwd())[0]
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
35 self.assertTrue(os.path.exists(self.pyc_path))
40 py_compile.compile(os.path.basename(self.source_path),
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
46 py_compile.compile(os.path.relpath(self.source_path),
47 os.path.relpath(self.pyc_path)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_py_compile.py 14 self.source_path = os.path.join(self.directory, '_test.py')
16 self.cwd_drive = os.path.splitdrive(os.getcwd())[0]
18 # current working directory path and the 'self.source_path' might be
21 drive = os.path.splitdrive(self.source_path)[0]
35 self.assertTrue(os.path.exists(self.pyc_path))
40 py_compile.compile(os.path.basename(self.source_path),
41 os.path.basename(self.pyc_path))
43 self.assertTrue(os.path.exists(self.pyc_path))
46 py_compile.compile(os.path.relpath(self.source_path),
47 os.path.relpath(self.pyc_path)
    [all...]
  /external/clang/test/CodeGen/
tbaa-class.cpp 1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -no-struct-path-tbaa -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin -O1 -disable-llvm-optzns %s -emit-llvm -o - | FileCheck %s -check-prefix=PATH
57 // PATH: define i32 @{{.*}}(
58 // PATH: store i32 1, i32* %{{.*}}, align 4, !tbaa [[TAG_i32:!.*]]
59 // PATH: store i32 4, i32* %{{.*}}, align 4, !tbaa [[TAG_A_f32:!.*]]
69 // PATH: define i32 @{{.*}}(
70 // PATH: store i32 1, i32* %{{.*}}, align 4, !tbaa [[TAG_i32]]
71 // PATH: store i16 4, i16* %{{.*}}, align 2, !tbaa [[TAG_A_f16:!.*]]
81 // PATH: define i32 @{{.*}}(
82 // PATH: store i32 1, i32* %{{.*}}, align 4, !tbaa [[TAG_A_f32]
    [all...]
  /external/e2fsprogs/util/
symlinks.c 38 * tidypath removes excess slashes and "." references from a path string
78 static int tidy_path (char *path)
83 s = path + strlen(path) - 1;
88 while (substr(path, "/./", "/"))
90 while (substr(path, "//", "/"))
93 while ((p = strstr(path,"/../")) != NULL) {
95 for (p--; p != path; p--) if (*p == '/') break;
101 if (*path == '\0')
102 strcpy(path,"/");
321 static char path[PATH_MAX+2]; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
LineAndPointRenderer.java 73 protected void appendToPath(Path path, PointF thisPoint, PointF lastPoint) {
75 path.lineTo(thisPoint.x, thisPoint.y);
86 Path path = null; local
102 //appendToPath(path, thisPoint, lastPoint);
109 // record the first point of the new Path
111 path = new Path();
115 path.moveTo(firstPoint.x, firstPoint.y);
    [all...]
  /external/chromium-trace/trace-viewer/third_party/WebOb/webob/
static.py 120 def __init__(self, path, index_page='index.html', hide_index_with_redirect=False,
122 self.path = os.path.abspath(path)
123 if not self.path.endswith(os.path.sep):
124 self.path += os.path.sep
125 if not os.path.isdir(self.path)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/
.classpath 3 <classpathentry kind="src" path="plugins/org.eclipse.build.tools/src"/>
4 <classpathentry kind="src" path="plugins/org.eclipse.build.tools/src_rss"/>
5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/ibm142"/>
6 <classpathentry kind="lib" path="/eclipseInternalBuildTools/plugins/org.eclipse.internal.build.tools/j2ee.jar"/>
7 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant.jar"/>
8 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant-antlr.jar"/>
9 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant-apache-bcel.jar"/>
10 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant-apache-bsf.jar"/>
11 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant-apache-log4j.jar"/>
12 <classpathentry kind="lib" path="plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ant-apache-oro.jar"/
    [all...]
  /external/mockftpserver/MockFtpServer/
.classpath 3 <classpathentry kind="src" path="src/main/java"/>
4 <classpathentry excluding="**/*.java" kind="src" path="src/main/resources"/>
5 <classpathentry kind="src" path="src/test/java"/>
6 <classpathentry kind="src" path="src/test/groovy"/>
7 <classpathentry excluding="**/*.java" kind="src" path="src/test/resources"/>
8 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
9 <classpathentry kind="var" path="M2_REPO/junit-addons/junit-addons/1.4/junit-addons-1.4.jar"/>
10 <classpathentry kind="var" path="M2_REPO/log4j/log4j/1.2.13/log4j-1.2.13.jar"/>
11 <classpathentry kind="var" path="M2_REPO/commons-net/commons-net/1.4.1/commons-net-1.4.1.jar"/>
12 <classpathentry kind="var" path="M2_REPO/junit/junit/3.8.1/junit-3.8.1.jar"/>
    [all...]
  /external/owasp/sanitizer/tools/
cut_release.py 14 def mime_type_from_path(path):
15 if path.endswith(".pom"):
17 elif path.endswith(".jar"):
23 trunk_directory_path = os.path.realpath(os.path.join(
24 os.path.dirname(sys.argv[0]),
26 maven_directory_path = os.path.realpath(os.path.join(
27 os.path.dirname(sys.argv[0]),
33 maven_metadata_path = os.path.join
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
configHelpSourceEdit.py 30 self.path.set(filePath)
46 self.path = StringVar(self)
56 text='Help File Path: Enter URL or browse for file')
57 self.entryPath = Entry(self.frameMain, textvariable=self.path,
83 path = self.path.get()
84 if path:
85 dir, base = os.path.split(path)
89 dir = os.path.join(os.path.dirname(sys.executable), 'Doc'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
configHelpSourceEdit.py 30 self.path.set(filePath)
46 self.path = StringVar(self)
56 text='Help File Path: Enter URL or browse for file')
57 self.entryPath = Entry(self.frameMain, textvariable=self.path,
83 path = self.path.get()
84 if path:
85 dir, base = os.path.split(path)
89 dir = os.path.join(os.path.dirname(sys.executable), 'Doc'
    [all...]
  /external/pdfium/testing/tools/
common.py 26 self.my_dir = os.path.dirname(os.path.realpath(__file__))
27 self.testing_dir = os.path.dirname(self.my_dir)
28 if (os.path.basename(self.my_dir) != 'tools' or
29 os.path.basename(self.testing_dir) != 'testing'):
31 self.pdfium_dir = os.path.dirname(self.testing_dir)
32 # Find path to build directory. This depends on whether this is a
34 # standalone, we expect a path like .../pdfium/out/Debug, but for
35 # chromium, we expect a path like .../src/out/Debug two levels
36 # higher (to skip over the third_party/pdfium path component unde
    [all...]
  /external/skia/tests/
PathOpsSimplifyDegenerateThreadedTest.cpp 37 SkPath path, out; local
38 path.setFillType(SkPath::kWinding_FillType);
39 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
40 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
41 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
42 path.close();
43 path.moveTo(SkIntToScalar(dx), SkIntToScalar(dy));
44 path.lineTo(SkIntToScalar(ex), SkIntToScalar(ey));
45 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
46 path.close()
    [all...]
PathOpsSimplifyTrianglesThreadedTest.cpp 40 SkPath path, out; local
41 path.setFillType(SkPath::kWinding_FillType);
42 path.moveTo(SkIntToScalar(ax), SkIntToScalar(ay));
43 path.lineTo(SkIntToScalar(bx), SkIntToScalar(by));
44 path.lineTo(SkIntToScalar(cx), SkIntToScalar(cy));
45 path.close();
46 path.moveTo(SkIntToScalar(dx), SkIntToScalar(dy));
47 path.lineTo(SkIntToScalar(ex), SkIntToScalar(ey));
48 path.lineTo(SkIntToScalar(fx), SkIntToScalar(fy));
49 path.close()
    [all...]
  /frameworks/native/cmds/installd/tests/
installd_utils_test.cpp 51 android_app_dir.path = (char*) TEST_APP_DIR;
54 android_app_private_dir.path = (char*) TEST_APP_PRIVATE_DIR;
57 android_data_dir.path = (char*) TEST_DATA_DIR;
60 android_asec_dir.path = (char*) TEST_ASEC_DIR;
63 android_mnt_expand_dir.path = (char*) TEST_EXPAND_DIR;
69 android_system_dirs.dirs[0].path = (char*) TEST_SYSTEM_DIR1;
72 android_system_dirs.dirs[1].path = (char*) TEST_SYSTEM_DIR2;
85 << badprefix1 << " should be allowed as a valid path";
89 << badprefix2 << " should be allowed as a valid path";
93 << badprefix3 << " should be allowed as a valid path";
311 char path[PKG_PATH_MAX]; local
330 char path[PKG_PATH_MAX]; local
343 char path[PKG_PATH_MAX]; local
356 char path[PKG_PATH_MAX]; local
366 char path[PKG_PATH_MAX]; local
376 char path[PKG_PATH_MAX]; local
386 char path[PKG_PATH_MAX]; local
393 char path[PKG_PATH_MAX]; local
    [all...]
  /developers/samples/android/experimental/ndkSampleGen/
samples.xml 3 <sample name="Teapot" path="../../../../../development/ndk/platforms/android-17/samples/Teapot"/>
4 <sample name="MoreTeapots" path="../../../../../development/ndk/platforms/android-18/samples/MoreTeapots"/>
  /development/samples/browseable/Interpolator/
_index.jd 8 This sample demonstrates the use of animation interpolators and path animations for
10 view (scale X and Y) along a path.
  /device/moto/shamu/sepolicy/
mmi_touch_sh.te 13 # Write to /sys/path/to/firmware/forcereflash
14 # Read from /sys/path/to/firmware/poweron (and others)
  /external/ant-glob/src/org/apache/tools/ant/util/
FileUtils.java 28 * referred to using abstract path names which are translated to native
107 * Verifies that the specified filename represents an absolute path.
108 * Differs from new java.io.File("filename").isAbsolute() in that a path
110 * at minimum match "\\a\b" to be considered an absolute path.
112 * @return true if the filename represents an absolute path.
143 * Dissect the specified absolute path.
144 * @param path the path to dissect.
145 * @return String[] {root, remaining path}.
146 * @throws java.lang.NullPointerException if path is null
    [all...]

Completed in 515 milliseconds

<<11121314151617181920>>