Searched defs:path (Results 201 - 225 of 3116) sorted by relevance

1234567891011>>

/external/llvm/bindings/python/llvm/tests/
H A Dbase.py1 import os.path namespace
26 path = os.path.join(d, lib)
28 if os.path.exists(path):
29 return path
35 return os.path.join(os.path.dirname(os.path.abspath(__file__)), "test_file")
38 return os.path
[all...]
/external/mesa3d/scons/
H A Ddxsdk.py31 import os.path namespace
56 include_dir = os.path.join(dxsdk_root, 'Include')
57 lib_dir = os.path.join(dxsdk_root, 'Lib', target_cpu)
61 gcc = 'gcc' in os.path.basename(env['CC']).split('-')
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPathParser.java51 public PathParser(String path) { argument
52 super(path);
83 Path path = new Path();
84 super.parse(path);
85 pathList.add(path);
/external/qemu/android/skin/
H A Dimage.h33 const char* path; /* image file path (must be .png) */ member in struct:SkinImageDesc
59 extern SkinImage* skin_image_find_simple( const char* path );
/external/qemu/distrib/libselinux/src/
H A Dcanonicalize_context.c15 char path[PATH_MAX]; local
25 snprintf(path, sizeof path, "%s/context", selinux_mnt);
26 fd = open(path, O_RDWR);
H A Dcompute_create.c18 char path[PATH_MAX]; local
28 snprintf(path, sizeof path, "%s/create", selinux_mnt);
29 fd = open(path, O_RDWR);
H A Denabled.c74 char buf[20], path[PATH_MAX]; local
80 snprintf(path, sizeof path, "%s/mls", selinux_mnt);
81 fd = open(path, O_RDONLY);
H A Dget_initial_context.c16 char path[PATH_MAX]; local
26 snprintf(path, sizeof path, "%s%s%s",
28 fd = open(path, O_RDONLY);
/external/qemu/qom/
H A Dcontainer.c28 Object *container_get(Object *root, const char *path) argument
34 parts = g_strsplit(path, "/", 0);
/external/skia/platform_tools/android/bin/
H A Dhttp_download.py13 import os.path namespace
20 def _CreateDirectory(path):
23 os.makedirs(path)
61 _CreateDirectory(os.path.split(target)[0])
75 file_size = os.path.getsize(target)
/external/skia/tests/
H A DPathMeasureTest.cpp12 SkPath path; local
19 path.moveTo(pts[0]);
21 path.cubicTo(pts[i], pts[i + 1], pts[i + 2]);
24 SkPathMeasure meas(path, false);
29 SkPath path; local
36 path.moveTo(pts[0]);
38 path.quadTo(pts[i], pts[i + 1]);
40 SkPathMeasure meas(path, false);
45 SkPath path; local
54 path
77 SkPath path; local
[all...]
/external/srec/portable/src/
H A DPANSIFileSystem.c36 ESR_ReturnCode PANSIFileSystemGetcwd(LCHAR* path, size_t* len) argument
38 return ((PANSIFileSystem*) PANSIFileSystemSingleton)->getcwd(PANSIFileSystemSingleton, path, len);
/external/valgrind/main/none/tests/amd64/
H A Dbug156404-amd64.c19 extern long my_readlink ( const char* path );
25 "\tmovq %rdi,%rdi\n" // path is in rdi
35 long recurse ( const char* path, long count ) argument
38 return my_readlink(path);
40 long r = recurse(path, count-1);
/external/vixl/tools/
H A Dgit.py29 import os.path namespace
32 return os.path.isdir('.git')
/external/apache-http/src/org/apache/http/cookie/
H A DCookieOrigin.java52 private final String path; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) { argument
68 if (path == null) {
74 if (path.trim().length() != 0) {
75 this.path = path;
77 this.path = "/";
87 return this.path;
108 buffer.append(this.path);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java32 * This class runs over a path expression that is assumed to be absolute, and
42 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
43 * @return true if the path is confirmed to be absolute, false if it
46 public boolean checkAbsolute(LocPathIterator path) argument
49 path.callVisitors(null, this);
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java46 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
47 * @return true if the path is confirmed to be absolute, false if it
50 public static boolean check(LocPathIterator path) argument
53 path.callVisitors(null, hppc);
86 * Visit a predicate within a location path. Note that there isn't a
/external/bison/lib/
H A Dspawn_int.h43 const char *path; member in struct:__spawn_action::__anon357::__anon360
59 extern int __spawni (pid_t *pid, const char *path,
/external/bluetooth/bluedroid/main/
H A Dbte_conf.c38 void bte_load_conf(const char *path) { argument
39 assert(path != NULL);
41 ALOGI("%s attempt to load stack conf from %s", __func__, path);
43 config_t *config = config_new(path);
45 ALOGI("%s file >%s< not found", __func__, path);
60 void bte_load_ble_conf(const char* path) argument
62 assert(path != NULL);
64 ALOGI("%s attempt to load ble stack conf from %s", __func__, path);
66 config_t *config = config_new(path);
68 ALOGI("%s file >%s< not found", __func__, path);
[all...]
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_stream.py38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
H A Dtest_stream_hixie75.py38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
/external/chromium_org/apps/
H A Dsaved_files_service.h39 const base::FilePath& path,
46 // The path to a file entry that the app had permission to access.
47 base::FilePath path; member in struct:apps::SavedFileEntry
/external/chromium_org/base/android/
H A Dpath_utils.cc19 ScopedJavaLocalRef<jstring> path = local
21 FilePath data_path(ConvertJavaStringToUTF8(path));
28 ScopedJavaLocalRef<jstring> path = local
30 FilePath data_path(ConvertJavaStringToUTF8(path));
37 ScopedJavaLocalRef<jstring> path = local
39 FilePath cache_path(ConvertJavaStringToUTF8(path));
46 ScopedJavaLocalRef<jstring> path = local
48 FilePath downloads_path(ConvertJavaStringToUTF8(path));
55 ScopedJavaLocalRef<jstring> path = local
57 FilePath library_path(ConvertJavaStringToUTF8(path));
64 ScopedJavaLocalRef<jstring> path = local
[all...]
/external/chromium_org/base/debug/
H A Dproc_maps_linux.h17 // Describes a region of mapped memory and the path of the file mapped.
30 // Byte offset into |path| of the range mapped into memory.
38 // NOTE: path names aren't guaranteed to point at valid files. For example,
41 std::string path; member in struct:base::debug::MappedMemoryRegion
/external/chromium_org/base/files/
H A Dfile_path_watcher.cc49 bool FilePathWatcher::Watch(const FilePath& path, argument
52 DCHECK(path.IsAbsolute());
53 return impl_->Watch(path, recursive, callback);

Completed in 1926 milliseconds

1234567891011>>