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

1 2 3 4 5 6 7 8 91011>>

  /external/icu4c/tools/gentest/
gentest.h 12 U_CFUNC int genres32(const char *prog, const char *path);
  /external/webkit/Source/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);
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);
  /frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
MeasurementUtils.java 24 public static long measureDirectory(String path) {
25 return native_measureDirectory(path);
28 private native static long native_measureDirectory(String path);
  /external/webkit/Source/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...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailUriType.java 30 private final String path; field in class:VoicemailUriType
32 private VoicemailUriType(String path) {
33 this.path = path;
37 public String path() { method in class:VoicemailUriType
38 return path;
  /external/webkit/Tools/Scripts/
rebaseline-chromium-webkit-tests 34 scripts_directory = os.path.dirname(os.path.abspath(sys.argv[0]))
35 webkitpy_directory = os.path.join(scripts_directory, "webkitpy")
36 sys.path.append(os.path.join(webkitpy_directory, "layout_tests"))
39 sys.path.append(os.path.join(webkitpy_directory, "thirdparty"))
  /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,
  /build/tools/atree/
fs.h 8 int remove_recursively(const string& path);
9 int mkdir_recursively(const string& path);
11 int strip_file(const string& path);
  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.h 40 // DOMFileSystem path utilities. All methods in this class are static.
46 // Returns the name part from the given path.
47 static String getName(const String& path);
49 // Returns the parent directory path of the given path.
50 static String getDirectory(const String& path);
52 // Checks if a given path is a parent of mayBeChild. This method assumes given paths are absolute and do not have extra references to a parent (i.e. "../").
53 static bool isParentOf(const String& path, const String& mayBeChild);
55 // Appends the separator at the end of the path if it's not there already.
56 static String ensureDirectoryPath(const String& path);
    [all...]
  /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/chromium/chrome/browser/parsers/
metadata_parser_jpeg.cc 7 JpegMetadataParser::JpegMetadataParser(const FilePath& path)
8 : FileMetadataParser(path) {}
  /external/llvm/include/llvm/Support/
PathV2.h 1 //===- llvm/Support/PathV2.h - Path Operating System Concept ----*- C++ -*-===//
10 // This file declares the llvm::sys::path namespace. It is designed after
12 // path class.
26 namespace path { namespace in namespace:llvm::sys
31 /// @brief Path iterator.
34 /// components in \a path. The forward traversal order is as follows:
50 StringRef Path; //< The entire path.
51 StringRef Component; //< The current component. Not necessarily in Path.
52 size_t Position; //< The iterators current position within Path
    [all...]
  /external/qemu/android/utils/
path.h 52 extern ABool path_exists( const char* path );
54 /* checks that a path points to a regular file */
55 extern ABool path_is_regular( const char* path );
57 /* checks that a path points to a directory */
58 extern ABool path_is_dir( const char* path );
60 /* checks that a path is absolute or not */
61 extern ABool path_is_absolute( const char* path );
64 extern ABool path_can_read( const char* path );
65 extern ABool path_can_write( const char* path );
68 extern ABool path_can_exec( const char* path );
    [all...]
  /external/webkit/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/
react-to-vsprops-changes.py 12 top_level_directory = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))))
14 vsprops_directory = os.path.join(top_level_directory, 'WebKitLibraries', 'win', 'tools', 'vsprops')
15 vsprops_files = glob.glob(os.path.join(vsprops_directory, '*.vsprops'))
17 newest_vsprops_time = max(map(os.path.getmtime, vsprops_files))
19 obj_directory = os.path.join(os.environ['CONFIGURATIONBUILDDIR'], 'obj'
    [all...]
  /libcore/luni/src/main/native/
readlink.h 20 * Fills 'result' with the contents of the symbolic link 'path'. Sets errno and returns false on
25 bool readlink(const char* path, std::string& result);
  /development/testrunner/test_defs/
test_walker.py 34 def FindTests(self, path):
35 """Gets list of Android tests found at given path.
38 files relative to the given path.
45 FindTests will first scan sub-folders of path for tests. If none are found,
49 Some sample values for path:
65 path: file system path to search
71 if not os.path.exists(path):
72 logger.Log('%s does not exist' % path)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
filesystem.py 57 def abspath(self, path):
58 return os.path.abspath(path)
60 def basename(self, path):
61 """Wraps os.path.basename()."""
62 return os.path.basename(path)
64 def chdir(self, path):
66 return os.chdir(path)
69 """Copies the contents of the file at the given path to the destinatio
    [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...]

Completed in 1147 milliseconds

1 2 3 4 5 6 7 8 91011>>