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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
__init__.py 44 If mod_pywebsocket is not in the Python path, specify the following.
47 PythonPath "sys.path+['<websock_lib>']"
68 If you want to allow handlers whose canonical path is not under the root
79 PythonPath "sys.path+['/websock_lib']"
95 specified in the handshake is considered as if it is a file path under
  /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);
  /bootable/recovery/
roots.h 29 // Return the Volume* record for this path (or NULL).
30 Volume* volume_for_path(const char* path);
32 // Make sure that the volume 'path' is on is mounted. Returns 0 on
34 int ensure_path_mounted(const char* path);
36 // Make sure that the volume 'path' is on is mounted. Returns 0 on
38 int ensure_path_unmounted(const char* path);
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
set_sys_path.py 41 # Add the parent directory to sys.path to enable importing mod_pywebsocket.
42 sys.path.insert(0, os.path.join(os.path.split(__file__)[0], '..'))
  /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.15/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);
  /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"))
  /external/llvm/utils/llvm-lit/
llvm-lit.in 11 sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
17 'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
20 clang_obj_root = os.path.join(llvm_obj_root, 'tools', 'clang')
22 if os.path.exists(clang_obj_root):
24 os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
25 clang_tools_extra_obj_root = os.path.join(clang_obj_root, 'tools', 'extra')
26 if os.path.exists(clang_tools_extra_obj_root):
28 os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
  /external/skia/gm/
pathreverse.cpp 13 static void test_path(SkCanvas* canvas, const SkPath& path) {
16 canvas->drawPath(path, paint);
20 canvas->drawPath(path, paint);
23 static void test_rev(SkCanvas* canvas, const SkPath& path) {
24 test_path(canvas, path);
27 rev.reverseAddPath(path);
37 SkPath path; local
39 path.addRect(r); test_rev(canvas, path);
42 path.offset(20, 20)
84 SkPath path; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathTest.java 21 import android.graphics.Path;
35 // new the Path instance
36 new Path();
38 // another the Path instance with different params
39 new Path(new Path());
44 // new the Path instance
45 Path path = new Path(); local
55 Path path = new Path(); local
63 Path path = new Path(); local
69 Path path = new Path(); local
85 Path path = new Path(); local
99 Path path = new Path(); local
107 Path path = new Path(); local
121 Path path = new Path(); local
129 Path path = new Path(); local
137 Path path = new Path(); local
145 Path path = new Path(); local
153 Path path = new Path(); local
162 Path path = new Path(); local
173 Path path = new Path(); local
188 Path path = new Path(); local
206 Path path = new Path(); local
212 Path path = new Path(); local
221 Path path = new Path(); local
233 Path path = new Path(); local
244 Path path = new Path(); local
254 Path path = new Path(); local
264 Path path = new Path(); local
274 Path path = new Path(); local
284 Path path = new Path(); local
295 Path path = new Path(); local
304 Path path = new Path(); local
318 Path path = new Path(); local
326 Path path = new Path(); local
340 Path path = new Path(); local
348 Path path = new Path(); local
360 Path path = new Path(); local
368 Path path = new Path(); local
377 Path path = new Path(); local
    [all...]
  /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...]
  /external/llvm/bindings/python/llvm/tests/
base.py 1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
  /bionic/libc/bionic/
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/linux-tools-perf/util/
exec_cmd.h 5 extern const char *perf_extract_argv0_path(const char *path);
10 extern const char *system_path(const char *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:
51 StringRef Path; ///< The entire path.
52 StringRef Component; ///< The current component. Not necessarily in Path.
53 size_t Position; ///< The iterators current position within Path
    [all...]
  /external/openssh/openbsd-compat/
basename.c 27 basename(const char *path)
34 if (path == NULL || *path == '\0') {
41 endp = path + strlen(path) - 1;
42 while (endp > path && *endp == '/')
46 if (endp == path && *endp == '/') {
54 while (startp > path && *(startp - 1) != '/')
  /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...]

Completed in 1614 milliseconds

1 2 3 4 5 6 7 8 91011>>