HomeSort by relevance Sort by last modified time
    Searched full:pathname (Results 101 - 125 of 1668) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/tools/common/proguard/proguard4.7/docs/manual/
index.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/
quality.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", ""), "");
  /external/qemu/distrib/libselinux/src/
android.c 1011 static int pkgdir_selabel_lookup(const char *pathname,
1023 if (!strncmp(pathname, DATA_DATA_PREFIX, sizeof(DATA_DATA_PREFIX)-1)) {
1024 pathname += sizeof(DATA_DATA_PREFIX) - 1;
1025 } else if (!strncmp(pathname, DATA_USER_PREFIX, sizeof(DATA_USER_PREFIX)-1)) {
1026 pathname += sizeof(DATA_USER_PREFIX) - 1;
1027 while (isdigit(*pathname))
1028 pathname++;
1029 if (*pathname == '/')
1030 pathname++;
1036 if (!(*pathname))
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_glibc.cc 173 int WRAP(chdir)(const char* pathname) {
174 RTN_ERRNO_IF(ki_chdir(pathname) < 0);
241 int WRAP(mkdir)(const char* pathname, mode_t mode) {
242 RTN_ERRNO_IF(ki_mkdir(pathname, mode) < 0);
267 int WRAP(open)(const char* pathname, int oflag, mode_t cmode, int* newfd) {
268 *newfd = ki_open(pathname, oflag);
292 int WRAP(rmdir)(const char* pathname) {
293 RTN_ERRNO_IF(ki_rmdir(pathname) < 0);
314 int WRAP(stat)(const char* pathname, struct nacl_abi_stat* nacl_buf) {
317 int res = ki_stat(pathname, &buf)
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
navigate_unittest.py 23 self._tab.EvaluateJavaScript('document.location.pathname;'),
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowBitmapFactory.java 46 public static Bitmap decodeFile(String pathName) {
47 return create("file:" + pathName);
51 public static Bitmap decodeFile(String pathName, BitmapFactory.Options options) {
52 return create("file:" + pathName, options);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
osdefs.h 40 /* Max pathname length */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
osdefs.h 40 /* Max pathname length */
  /system/core/liblog/
fake_log_device.h 24 int fakeLogOpen(const char *pathName, int flags);
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
UrlUtils.java 19 * @param path Pathname relative to external/chrome/testing/data
27 * @param path Pathname relative to external/chrome/testing/data
  /external/e2fsprogs/util/
install-symlink.in 44 echo $SRC: Source pathname must be absolute
49 echo $DEST: Destination pathname must be absolute
  /external/chromium_org/third_party/libjingle/source/talk/base/
fileutils_unittest.cc 37 Pathname path;
43 Pathname path;
71 Pathname path;
84 Pathname path;
107 Pathname path;
143 Pathname path;
  /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...]
  /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...]
  /external/chromium_org/third_party/icu/source/tools/toolutil/
pkg_gencmn.c 83 char *pathname, *basename; member in struct:__anon16066
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/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/icu/icu4c/source/tools/toolutil/
pkg_gencmn.c 83 char *pathname, *basename; member in struct:__anon26035
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...]
  /system/core/init/
util.c 283 int mkdir_recursive(const char *pathname, mode_t mode)
287 const char *p = pathname;
293 width = slash - pathname;
303 memcpy(buf, pathname, width);
311 ret = make_dir(pathname, mode);
528 int restorecon(const char* pathname)
530 return selinux_android_restorecon(pathname, 0);
533 int restorecon_recursive(const char* pathname)
535 return selinux_android_restorecon(pathname, SELINUX_ANDROID_RESTORECON_RECURSE);
  /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);

Completed in 2282 milliseconds

1 2 3 45 6 7 8 91011>>