HomeSort by relevance Sort by last modified time
    Searched full:path (Results 226 - 250 of 4958) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/skia/
PathSkia.cpp 31 #include "Path.h"
46 Path::Path()
51 Path::Path(const Path& other)
56 Path::~Path()
61 Path& Path::operator=(const Path& other
    [all...]
  /sdk/emulator/qtools/
read_pid.cpp 35 event.time, event.vstart, event.vend, event.offset, event.path);
36 delete[] event.path;
44 event.time, event.vstart, event.path);
45 delete[] event.path;
60 event.time, event.tgid, event.pid, event.path);
61 delete[] event.path;
65 event.time, event.pid, event.path);
66 delete[] event.path;
  /system/core/rootdir/etc/
mountd.conf 14 ## path to the UMS driver file for specifying the block device path
  /external/webkit/WebCore/platform/
LinkHash.cpp 82 static inline void cleanPath(Vector<UChar, 512>& path)
86 while ((pos = findSlashDotDotSlash(path.data(), path.size())) != -1) {
87 int prev = reverseFind(path.data(), path.size(), '/', pos - 1);
89 if (prev < 0 || (prev > 3 && path[prev - 2] == ':' && path[prev - 1] == '/'))
90 path.remove(pos, 3);
92 path.remove(prev, pos - prev + 3);
98 // in the vast majority of cases where there is no "//" in the path
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/style/
filter.py 122 """Supports filtering with path-specific and user-specified rules."""
134 that stores the path-specific filter rules for
136 The "sub_paths" value is a list of path
137 substrings. If a file path contains one of the
138 substrings, then the corresponding path rules
150 to the base rules and any path rules. In other
175 """Cached dictionary of path rules to CategoryFilter instance."""
182 """Cached dictionary of file path to CategoryFilter instance."""
212 def _path_rules_from_path(self, path):
213 """Determine the path-specific rules to use, and return as a tuple.""
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
GestureStrokeTest.java 23 import android.graphics.Path;
46 // null path currently returned
55 Path emptyPath = emptyStroke.getPath();
56 // expect an empty path
65 Path linePath = lineStroke.getPath();
71 * for a single line, where the given toPath bounds exceeds the expected path.
76 // bound the path by the endpoint
77 Path linePath = lineStroke.toPath(LineGestureStrokeHelper.LINE_END_POINT,
88 * truncates the expected path.
93 // bound the path by the midpoin
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathDashPathEffectTest.java 27 import android.graphics.Path;
31 import android.graphics.Path.Direction;
46 args = {android.graphics.Path.class, float.class, float.class,
58 canvas.drawPath(path(), p); method
83 private static Path path() { method in class:PathDashPathEffectTest
84 Path p = new Path();
90 private static Path shape() {
91 Path p = new Path()
    [all...]
PathMeasureTest.java 20 import android.graphics.Path;
33 private Path mPath;
38 mPath = new Path();
52 args = {android.graphics.Path.class, boolean.class}
59 Path path = new Path(); local
60 mPathMeasure = new PathMeasure(path, true);
63 mPathMeasure = new PathMeasure(path, false);
86 mPath.addRect(1f, 2f, 3f, 4f, Path.Direction.CW)
    [all...]
  /development/testrunner/
coverage_targets.xml 26 [<src path=""/>] (0..*)
32 build_path - path to build directory for this module, relative to android
44 <src path="core/java" />
45 <src path="graphics/java" />
46 <src path="im/java" />
47 <src path="location/java" />
48 <src path="media/java" />
49 <src path="opengl/java" />
50 <src path="sax/java" />
51 <src path="telephony/java" /
    [all...]
  /external/opencore/build_config/default/
setup.sh 26 echo_stdout "Setting PATH back to the original"
27 export PATH=$BASE_PATH
49 ## set path up for linux OpenCore build
53 export PATH=$android_gcc_arm_path:$BASE_PATH
61 # set path up for linux-arm compiler
64 export PATH=$linux_arm_path:$BASE_PATH
70 ## set path up for linux OpenCore build
74 export PATH=$android_gcc_arm_path:$BASE_PATH
122 export PATH=$extern_tools_path:$PATH
    [all...]
  /external/yaffs2/yaffs2/direct/
yaffsfs.h 175 int yaffs_open(const char *path, int oflag, int mode) ;
182 int yaffs_unlink(const char *path) ;
185 int yaffs_stat(const char *path, struct yaffs_stat *buf) ;
186 int yaffs_lstat(const char *path, struct yaffs_stat *buf) ;
189 int yaffs_chmod(const char *path, mode_t mode);
192 int yaffs_mkdir(const char *path, mode_t mode) ;
193 int yaffs_rmdir(const char *path) ;
200 int yaffs_mount(const char *path) ;
201 int yaffs_unmount(const char *path) ;
204 int yaffs_readlink(const char *path, char *buf, int bufsiz);
    [all...]
  /cts/tools/host/test/com/android/cts/
CtsTestBase.java 64 buf.append("\t\t<TestPlan path=\"" + PLAN_REPOSITORY + "\" />");
65 buf.append("\t\t<TestCase path=\"" + CASE_REPOSITORY + "\" />");
66 buf.append("\t\t<TestResult path=\"" + RESULT_REPOSITORY + "\" />");
108 protected void deleteTestPackage(String path) {
109 String apkPath = path + File.separator + APK_SUFFIX;
110 String desPath = path + File.separator + DESCRITION_SUFFIX;
135 * @param path The file to be deleted.
137 protected void deleteFile(String path) {
138 File f = new File(path);
148 * @param path The directory to be cleared
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
FsUtils.java 116 public static String getTestUrl(String path) {
118 if (!path.startsWith(HTTP_TESTS_PREFIX)) {
119 url = "file://" + path;
122 if (path.startsWith(HTTPS_TESTS_PREFIX)) {
124 url = "https://127.0.0.1:8443/" + path.substring(HTTP_TESTS_PREFIX.length());
125 } else if (!path.startsWith(HTTP_LOCAL_TESTS_PREFIX)
126 && !path.startsWith(HTTP_MEDIA_TESTS_PREFIX)
127 && !path.startsWith(HTTP_WML_TESTS_PREFIX)) {
128 url = "http://127.0.0.1:8000/" + path.substring(HTTP_TESTS_PREFIX.length());
130 url = "file://" + path;
    [all...]
  /external/srec/portable/src/
PANSIFileSystemImpl.c 40 * [file path, PFileSystem*] mapping.
182 LCHAR path[P_PATH_MAX]; local
195 LSTRCPY(path, virtualPath);
196 CHKLOG(rc, PFileSystemCanonicalSlashes(path));
197 if (path[LSTRLEN(path)-1] != L('/'))
198 LSTRCAT(path, L("/"));
199 CHKLOG(rc, PHashTableGetEntry(impl->directoryMap, path, &entry));
210 ESR_ReturnCode PANSIFileSystemGetRealPathImpl(PFileSystem* self, LCHAR* path, size_t* len)
221 CHKLOG(rc, PFileSystemGetAbsolutePath(path, len))
    [all...]
  /external/webkit/WebCore/platform/graphics/cairo/
PathCairo.cpp 26 #include "Path.h"
41 Path::Path()
46 Path::~Path()
51 Path::Path(const Path& other)
60 Path& Path::operator=(const Path& other
294 cairo_path_t* path = cairo_copy_path(cr); local
343 cairo_path_t* path = cairo_copy_path(platformPath()->m_cr); local
    [all...]
  /dalvik/libcore/luni/src/main/native/
java_io_File.cpp 41 ScopedByteArray path(env, pathBytes);
45 size_t length = strlen(&path[0]);
47 env->SetByteArrayRegion(result, 0, length, path.bytes());
52 ScopedByteArray path(env, pathBytes);
53 return (remove(&path[0]) == 0);
57 ScopedByteArray path(env, pathBytes);
58 return (stat(&path[0], &sb) == 0);
104 ScopedByteArray path(env, pathBytes);
105 return (access(&path[0], F_OK) == 0);
109 ScopedByteArray path(env, pathBytes)
    [all...]
  /development/testrunner/test_defs/
native_test.py 37 The test_suite must contain a build path where the native test
55 build_path = os.path.join(android_build.GetTop(), self.GetBuildPath())
56 os.path.walk(build_path, self._CollectTestSources, source_list)
85 full_path = os.path.join(os.sep, "system", "bin", f)
110 This method is a callback for os.path.walk.
118 (name, ext) = os.path.splitext(f)
122 test_list.append(str(os.path.join(dirname, f)))
124 def _FilterOutMissing(self, path, sources):
132 path: Where the binaries should be.
133 sources: List of tests source path
    [all...]
  /development/tools/idegen/src/
Eclipse.java 42 * If the user has a file named "path-precedence" in their project's
49 File precedence = new File("path-precedence");
68 // Trim preceding "./" from path.
69 String path = sourceRoot.getPath().substring(2); local
72 if (bucket.matches(path)) {
88 classpath.append(" path=\"")
96 classpath.append(" <classpathentry kind=\"lib\" path=\"")
104 classpath.append(" <classpathentry kind=\"output\" path=\""
119 String path = sourceRoot.getPath(); local
132 if (!nextPath.startsWith(path)) {
    [all...]
  /external/bluetooth/bluez/src/
manager.h 30 dbus_bool_t manager_init(DBusConnection *conn, const char *path);
31 void manager_cleanup(DBusConnection *conn, const char *path);
36 struct btd_adapter *manager_find_adapter_by_path(const char *path);
43 void manager_add_adapter(const char *path);
  /external/clearsilver/man/man3/
hdf_write_file.3 23 NEOERR* hdf_write_file (HDF *hdf, const char *path);
  /external/dbus/dbus/
dbus-object-tree.h 38 const char **path,
42 const char **path);
46 const char **path);
56 char ***path,
dbus-server-unix.c 64 const char *path = dbus_address_entry_get_value (entry, "path"); local
68 if (path == NULL && tmpdir == NULL && abstract == NULL)
71 "path or tmpdir or abstract",
76 if ((path && tmpdir) ||
77 (path && abstract) ||
81 "cannot specify two of \"path\" and \"tmpdir\" and \"abstract\" at the same time");
131 if (path)
132 *server_p = _dbus_server_new_for_domain_socket (path, FALSE, error);
161 * @param path the path for the domain socket
    [all...]
  /external/dbus/test/data/invalid-config-files/
badselinux-1.conf 5 <listen>unix:path=/foo/bar</listen>
badselinux-2.conf 5 <listen>unix:path=/foo/bar</listen>
truncated-file.conf 5 <listen>unix:path=/foo/bar</listen>

Completed in 624 milliseconds

1 2 3 4 5 6 7 8 91011>>