/external/chromium_org/native_client_sdk/src/web/ |
index.html | 111 var sortLink = location.pathname + '?path=' + path; 128 var backpath = location.pathname; 193 var lnk = location.pathname.substr(0, location.pathname.indexOf('?')); 247 var lastSlash = location.pathname.lastIndexOf("/"); 248 var filename = location.pathname.substring(lastSlash + 1); 249 var firstSlash = location.pathname.indexOf("/", 1); 250 var root = location.pathname.substring(0, firstSlash + 1); 251 var pathRoot = location.pathname.substring(firstSlash + 1, 254 path = location.pathname.substring(firstSlash + 1, lastSlash + 1) [all...] |
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/ |
ui.js | 149 var pathName = window.location.pathname; 150 pathName = pathName.substring(0, pathName.lastIndexOf('/') + 1); 151 window.location = pathName + fileName + window.location.hash; 163 var pathName = window.location.pathname; 164 var currentFileName = pathName.substring(pathName.lastIndexOf('/') + 1) [all...] |
/external/lzma/CPP/Windows/ |
FileFind.cpp | 361 HANDLE CFindChangeNotification::FindFirst(LPCTSTR pathName, bool watchSubtree, DWORD notifyFilter)
363 _handle = ::FindFirstChangeNotification(pathName, BoolToBOOL(watchSubtree), notifyFilter);
368 if (GetLongPath(pathName, longPath))
376 HANDLE CFindChangeNotification::FindFirst(LPCWSTR pathName, bool watchSubtree, DWORD notifyFilter)
379 return FindFirst(UnicodeStringToMultiByte(pathName, GetCurrentCodePage()), watchSubtree, notifyFilter);
380 _handle = ::FindFirstChangeNotificationW(pathName, BoolToBOOL(watchSubtree), notifyFilter);
385 if (GetLongPath(pathName, longPath))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
util.py | 110 def convert_path (pathname): 111 """Return 'pathname' as a name that will work on the native filesystem, 116 ValueError on non-Unix-ish systems if 'pathname' either starts or 120 return pathname 121 if not pathname: 122 return pathname 123 if pathname[0] == '/': 124 raise ValueError, "path '%s' cannot be absolute" % pathname 125 if pathname[-1] == '/': 126 raise ValueError, "path '%s' cannot end with '/'" % pathname [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 110 def run_script(self, pathname): 111 self.msg(2, "run_script", pathname) 112 fp = open(pathname, READ_MODE) 114 self.load_module('__main__', fp, pathname, stuff) 116 def load_file(self, pathname): 117 dir, name = os.path.split(pathname) 119 fp = open(pathname, READ_MODE) 121 self.load_module(name, fp, pathname, stuff) 268 fp, pathname, stuff = self.find_module(partname, 274 m = self.load_module(fqname, fp, pathname, stuff [all...] |
genericpath.py | 39 """Return true if the pathname refers to an existing directory.""" 80 # pathname component; the root is everything before that. 86 """Split the extension from a pathname.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
util.py | 110 def convert_path (pathname): 111 """Return 'pathname' as a name that will work on the native filesystem, 116 ValueError on non-Unix-ish systems if 'pathname' either starts or 120 return pathname 121 if not pathname: 122 return pathname 123 if pathname[0] == '/': 124 raise ValueError, "path '%s' cannot be absolute" % pathname 125 if pathname[-1] == '/': 126 raise ValueError, "path '%s' cannot end with '/'" % pathname [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
modulefinder.py | 110 def run_script(self, pathname): 111 self.msg(2, "run_script", pathname) 112 fp = open(pathname, READ_MODE) 114 self.load_module('__main__', fp, pathname, stuff) 116 def load_file(self, pathname): 117 dir, name = os.path.split(pathname) 119 fp = open(pathname, READ_MODE) 121 self.load_module(name, fp, pathname, stuff) 268 fp, pathname, stuff = self.find_module(partname, 274 m = self.load_module(fqname, fp, pathname, stuff [all...] |
genericpath.py | 39 """Return true if the pathname refers to an existing directory.""" 80 # pathname component; the root is everything before that. 86 """Split the extension from a pathname.
|
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
pkg_gencmn.c | 83 char *pathname, *basename; member in struct:__anon13619 246 printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s"); 250 file=T_FileStream_open(files[i].pathname, "rb"); 252 fprintf(stderr, "gencmn: unable to open listed file %s\n", files[i].pathname); 267 fprintf(stderr, "gencmn: unable to read %s properly (got %ld/%ld byte%s)\n", files[i].pathname, (long)nread, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s"); 328 sprintf(buffer, "extern const char\n %s%s[]", symPrefix?symPrefix:"", files[0].pathname); 331 sprintf(buffer, ",\n %s%s[]", symPrefix?symPrefix:"", files[i].pathname); 368 sprintf(buffer, " { \"%s\", %s%s }", files[0].basename, symPrefix?symPrefix:"", files[0].pathname); 371 sprintf(buffer, ",\n { \"%s\", %s%s }", files[i].basename, symPrefix?symPrefix:"", files[i].pathname); 406 /* store the pathname */ [all...] |
/external/e2fsprogs/debugfs/ |
debugfs.8.in | 133 as an argument to specify an inode (as opposed to a pathname) 141 The second form is a pathname; if the pathname is prefixed by a forward slash 145 If not, the pathname is 401 .I rm pathname 403 .IR pathname . 405 .I pathname 485 .I undel <inode num> [pathname] 488 link the recovered inode to the specified pathname. The 498 inodes without specifying a destination pathname, and then in a separat [all...] |
/external/emma/core/java12/com/vladium/util/ |
Files.java | 106 String pathname = tokenizer.nextToken (); local 108 if (canonical) pathname = canonicalizePathname (pathname); 110 if (pathnames.add (pathname)) 112 _result.add (new File (pathname)); 124 * Converts 'pathname' into the canonical OS form. This wrapper function 125 * will return the absolute form of 'pathname' if File.getCanonicalPath() fails. 127 public static String canonicalizePathname (final String pathname) 129 if (pathname == null) throw new IllegalArgumentException ("null input: pathname"); [all...] |
/external/icu4c/tools/toolutil/ |
pkg_gencmn.c | 83 char *pathname, *basename; member in struct:__anon20994 267 printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s"); 271 file=T_FileStream_open(files[i].pathname, "rb"); 273 fprintf(stderr, "gencmn: unable to open listed file %s\n", files[i].pathname); 288 fprintf(stderr, "gencmn: unable to read %s properly (got %ld/%ld byte%s)\n", files[i].pathname, (long)nread, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s"); 349 sprintf(buffer, "extern const char\n %s%s[]", symPrefix?symPrefix:"", files[0].pathname); 352 sprintf(buffer, ",\n %s%s[]", symPrefix?symPrefix:"", files[i].pathname); 389 sprintf(buffer, " { \"%s\", %s%s }", files[0].basename, symPrefix?symPrefix:"", files[0].pathname); 392 sprintf(buffer, ",\n { \"%s\", %s%s }", files[i].basename, symPrefix?symPrefix:"", files[i].pathname); 426 /* store the pathname */ [all...] |
/external/oprofile/opjitconv/ |
opjitconv.c | 88 static void get_pathname(char const * pathname, void * name_list) 91 struct pathname * pn = xmalloc(sizeof(struct pathname)); 92 pn->name = xstrdup(pathname); 96 static void delete_pathname(struct pathname * pname) 108 struct pathname * pname = list_entry(pos1, struct pathname, 151 struct pathname * anon_dir = 152 list_entry(pos, struct pathname, neighbor); 443 struct pathname * pname = list_entry(pos1, struct pathname [all...] |
/art/test/068-classloader/src/ |
FancyLoader.java | 138 String pathName = CLASS_PATH + name + ".class"; 139 //System.out.println("--- Fancy: looking for " + pathName); 141 File path = new File(pathName); 147 throw new ClassNotFoundException("Not found: " + pathName); 156 throw new ClassNotFoundException("Read error: " + pathName);
|
/dalvik/tests/068-classloader/src/ |
FancyLoader.java | 138 String pathName = CLASS_PATH + name + ".class"; 139 //System.out.println("--- Fancy: looking for " + pathName); 141 File path = new File(pathName); 147 throw new ClassNotFoundException("Not found: " + pathName); 156 throw new ClassNotFoundException("Read error: " + pathName);
|
/external/qemu/ |
path.c | 24 char *pathname; member in struct:pathelem 53 if (asprintf(&new->pathname, "%s/%s", root, name) == -1) { 76 if ((dir = opendir(path->pathname)) != NULL) { 100 *e = new_entry(root->pathname, root, name); 128 return cursor->pathname;
|
/cts/tools/cts-java-scanner/src/com/android/cts/javascanner/ |
DocletRunner.java | 92 public boolean accept(File pathname) { 93 return pathname.isDirectory() || pathname.toString().endsWith(".java");
|
/external/chromium_org/content/public/common/ |
child_process_host.h | 66 // Returns the pathname to be used for a child process. If a subprocess 67 // pathname was specified on the command line, that will be used. Otherwise, 68 // the default child process pathname will be returned. On most platforms,
|
/external/chromium_org/sandbox/linux/services/ |
broker_process.h | 48 int Access(const char* pathname, int mode) const; 53 int Open(const char* pathname, int flags) const; 64 const char* pathname, int flags) const;
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/ |
cv-dbgfmt.c | 49 dbgfmt_cv->filenames[i].pathname = NULL; 72 if (dbgfmt_cv->filenames[i].pathname) 73 yasm_xfree(dbgfmt_cv->filenames[i].pathname);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/ |
ResearchLogDirectory.java | 45 public boolean accept(final File pathname) { 46 return pathname.getName().startsWith(ResearchLogDirectory.LOG_FILENAME_PREFIX) 47 && !pathname.canWrite();
|
/prebuilts/tools/common/proguard/proguard4.7/docs/ |
acknowledgements.html | 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash); 13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
license.html | 11 window.top.location.replace("index.html#"+window.location.pathname+window.location.hash); 13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/ |
limitations.html | 11 window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash); 13 var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|