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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
__init__.py 43 If mod_pywebsocket is not in the Python path, specify the following.
46 PythonPath "sys.path+['<websock_lib>']"
67 PythonPath "sys.path+['/websock_lib']"
75 specified in the handshake is considered as if it is a file path under
  /external/webkit/WebCore/html/
File.cpp 33 File::File(const String& path)
34 : Blob(path)
35 , m_name(pathGetFileName(path))
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
URLUtil.java 23 * Canonicalize the path, i.e. remove ".." and "." occurences.
25 * @param path the path to be canonicalized
26 * @return the canonicalized path
28 public static String canonicalizePath(String path) {
31 while ((dirIndex = path.indexOf("/./")) >= 0) {
32 path = path.substring(0, dirIndex + 1)
33 + path.substring(dirIndex + 3);
36 if (path.endsWith("/."))
    [all...]
  /external/chromium/third_party/icu/source/tools/gentest/
gentest.h 12 U_CFUNC int genres32(const char *prog, const char *path);
  /external/clearsilver/python/examples/trans/
tstart.py 8 sys.path.insert(0, "../base") # pickup base libs
10 sys.path.insert(0, "../../") # pickup neo_cgi.so
12 # don't put anything above this because the path isn't
  /external/icu4c/tools/gentest/
gentest.h 12 U_CFUNC int genres32(const char *prog, const char *path);
  /external/webkit/WebCore/platform/chromium/
FileSystemChromiumLinux.cpp 36 String pathGetFileName(const String& path)
38 return path.substring(path.reverseFind('/') + 1);
41 String pathGetDisplayFileName(const String& path)
43 return pathGetFileName(path);
FileSystemChromium.cpp 40 bool deleteFile(const String& path)
42 return ChromiumBridge::deleteFile(path);
45 bool deleteEmptyDirectory(const String& path)
47 return ChromiumBridge::deleteEmptyDirectory(path);
50 bool getFileSize(const String& path, long long& result)
52 return ChromiumBridge::getFileSize(path, result);
55 bool getFileModificationTime(const String& path, time_t& result)
57 return ChromiumBridge::getFileModificationTime(path, result);
60 String directoryName(const String& path)
62 return ChromiumBridge::directoryName(path);
    [all...]
FileSystemChromiumWin.cpp 39 String pathGetFileName(const String& path)
41 return String(PathFindFileName(String(path).charactersWithNullTermination()));
44 String pathGetDisplayFileName(const String& path)
46 return pathGetFileName(path);
FileSystemChromiumMac.mm 39 String pathGetFileName(const String& path)
41 return [path lastPathComponent];
44 String pathGetDisplayFileName(const String& path)
46 return [[NSFileManager defaultManager] displayNameAtPath:path];
  /bootable/recovery/
roots.h 25 // Return the Volume* record for this path (or NULL).
26 Volume* volume_for_path(const char* path);
28 // Make sure that the volume 'path' is on is mounted. Returns 0 on
30 int ensure_path_mounted(const char* path);
32 // Make sure that the volume 'path' is on is mounted. Returns 0 on
34 int ensure_path_unmounted(const char* path);
  /external/webkit/WebKitTools/pywebsocket/test/
config.py 41 # Add the parent directory to sys.path to enable importing mod_pywebsocket.
42 sys.path += [os.path.join(os.path.split(__file__)[0], '..')]
  /external/chromium/net/base/
net_util_win.cc 24 std::string path;
27 // URL contains no host, the path is the filename. In this case, the path
30 path = url.path();
31 size_t first_non_slash = path.find_first_not_of("/\\");
33 path.erase(0, first_non_slash);
36 // on the path.
37 path = "\\\\";
38 path.append(host)
    [all...]
  /external/webkit/WebCore/platform/wince/
KURLWince.cpp 27 return path();
  /external/qemu/distrib/sdl-1.2.12/src/audio/
SDL_audiodev_c.h 24 /* Open the audio device, storing the pathname in 'path' */
25 extern int SDL_OpenAudioPath(char *path, int maxlen, int flags, int classic);
  /frameworks/base/core/java/android/os/
StatFs.java 26 * filesystem at <var>path</var>. Upon construction, the stat of
30 * @param path A path in the desired file system to state.
32 public StatFs(String path) { native_setup(path); }
37 * path, and the new stat values are available upon return.
39 public void restat(String path) { native_restat(path); }
71 private native void native_restat(String path);
72 private native void native_setup(String path);
    [all...]
  /bionic/libc/bionic/
dirname_r.c 34 dirname_r(const char* path, char* buffer, size_t bufflen)
40 if (path == NULL || *path == '\0') {
41 path = ".";
47 endp = path + strlen(path) - 1;
48 while (endp > path && *endp == '/')
52 while (endp > path && *endp != '/')
56 if (endp == path) {
57 path = (*endp == '/') ? "/" : "."
    [all...]
  /bootable/recovery/minzip/
DirUtil.h 24 * specified in path are present, creating as many directories
34 * (usually if some element of path is not a directory).
36 int dirCreateHierarchy(const char *path, int mode,
39 /* rm -rf <path>
41 int dirUnlinkHierarchy(const char *path);
43 /* chown -R <uid>:<gid> <path>
44 * chmod -R <mode> <path>
48 int dirSetHierarchyPermissions(const char *path,
  /bionic/libc/unistd/
statfs.c 32 int statfs(const char* path, struct statfs* stat)
34 return __statfs64(path, sizeof(struct statfs), stat);
  /build/libs/host/include/host/
Directories.h 6 std::string parent_dir(const std::string& path);
8 extern "C" int mkdirs(const char* path);
  /external/clearsilver/util/
neo_files.h 25 NEOERR *ne_mkdirs (const char *path, mode_t mode);
26 NEOERR *ne_load_file (const char *path, char **str);
27 NEOERR *ne_load_file_len (const char *path, char **str, int *len);
28 NEOERR *ne_save_file (const char *path, char *str);
29 NEOERR *ne_remove_dir (const char *path);
30 NEOERR *ne_listdir(const char *path, ULIST **files);
31 NEOERR *ne_listdir_match(const char *path, ULIST **files, const char *match);
32 NEOERR *ne_listdir_fmatch(const char *path, ULIST **files, MATCH_FUNC fmatch,
  /external/webkit/WebKitTools/Scripts/
run-chromium-webkit-tests 34 sys.path.append(os.path.join(os.path.dirname(os.path.abspath(sys.argv[0])),
36 sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(sys.argv[0]))))
  /external/webkit/WebKitTools/Scripts/webkitpy/layout_tests/layout_package/
test_files.py 57 for path in paths:
59 path = os.path.join(port.layout_tests_dir(), path)
60 if path.find('*') > -1:
61 filenames = glob.glob(path)
64 paths_to_walk.add(path)
70 for path in paths_to_walk:
71 if os.path.isfile(path) and _has_supported_extension(path)
    [all...]
  /bionic/libc/stdio/
mktemp.c 45 mkstemps(char *path, int slen)
49 return (_gettemp(path, &fd, 0, slen) ? fd : -1);
53 mkstemp(char *path)
57 return (_gettemp(path, &fd, 0, 0) ? fd : -1);
61 mkdtemp(char *path)
63 return(_gettemp(path, (int *)NULL, 1, 0) ? path : (char *)NULL);
69 _mktemp(char *path)
71 return(_gettemp(path, (int *)NULL, 0, 0) ? path : (char *)NULL)
    [all...]
  /development/testrunner/
android_build.py 37 the absolute file path of the Android build root.
83 The absolute file path of the Android host binary directory.
89 path = os.path.join(GetTop(), "out", "host", os_arch, "bin")
90 if not os.path.exists(path):
91 logger.Log("Error: Host bin path could not be found %s" % path)
93 return path
105 The absolute file path of the Android product directory
    [all...]

Completed in 212 milliseconds

1 2 3 4 5 6 7 8 91011>>