HomeSort by relevance Sort by last modified time
    Searched full:_path (Results 1 - 25 of 101) sorted by null

1 2 3 4 5

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
direct.h 31 _CRTIMP int __cdecl _chdir(const char *_Path);
32 _CRTIMP int __cdecl _mkdir(const char *_Path);
33 _CRTIMP int __cdecl _rmdir(const char *_Path);
48 _CRTIMP int __cdecl _wchdir(const wchar_t *_Path);
49 _CRTIMP int __cdecl _wmkdir(const wchar_t *_Path);
50 _CRTIMP int __cdecl _wrmdir(const wchar_t *_Path);
58 int __cdecl chdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
59 int __cdecl mkdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
60 int __cdecl rmdir(const char *_Path) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
  /ndk/sources/cxx-stl/gabi++/
sources.mk 1 libgabi++_path := $(call my-dir)
31 libgabi++_c_includes := $(libgabi++_path)/include
  /external/chromium_org/tools/telemetry/telemetry/core/
extension_to_load.py 19 self._path = path
37 if crx_id.HasPublicKey(self._path):
39 return crx_id.GetCRXAppID(os.path.realpath(self._path))
50 return self._path
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage.py 90 self._path = path
96 file_path = os.path.join(self._path, Archive._SYM_FILE)
101 return os.path.exists(os.path.join(self._path, Archive._SYM_FILE))
105 file_path = os.path.join(self._path, Archive._SYM_FILE)
112 file_path = os.path.join(self._path,
121 [name[:-(len(Archive._SNAP_EXT))] for name in os.listdir(self._path)
130 file_path = os.path.join(self._path, self._cur_snapshot + Archive._MMAP_EXT)
140 file_path = os.path.join(self._path, snapshot_name + Archive._MMAP_EXT)
147 file_path = os.path.join(self._path,
158 file_path = os.path.join(self._path, snapshot_name + Archive._NHEAP_EXT
    [all...]
  /development/testrunner/
make_tree.py 34 self._path = os.path.join(parent._GetPath(), name)
36 self._path = ""
58 return self._path
63 path = os.path.join(android_build.GetTop(), self._path)
75 make_list.append(os.path.join(self._path, "Android.mk"))
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IsolatedFileSystem.js 41 this._path = path;
90 return this._path;
100 this._normalizedPath = WebInspector.IsolatedFileSystem.normalizePath(this._path);
125 this._manager.requestDOMFileSystem(this._path, callback);
157 if (this._manager.mapping().isFileExcluded(this._path, entry.fullPath))
162 if (this._manager.mapping().isFileExcluded(this._path, entry.fullPath + "/"))
222 console.error(errorMessage + " when testing if file exists '" + (this._path + "/" + path + "/" + nameCandidate) + "'");
233 var filePath = this._path + "/" + path;
279 console.error(errorMessage + " when deleting file '" + (this._path + "/" + path) + "'");
383 console.error(errorMessage + " when getting content for file '" + (this._path + "/" + path) + "'")
    [all...]
NetworkRequest.js 120 delete this._path;
398 if (this._path)
399 return this._path;
401 return this._path;
408 this._path = "";
411 this._path = "";
413 this._path = this._parsedURL.host + this._parsedURL.folderPathComponents;
414 this._path = this._path.trimURL(this.target().resourceTreeModel.inspectedPageDomain());
419 this._path = this._path.substring(0, this._path.lastIndexOf("/"))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
deps.py 43 self._path = path
47 for line in fileinput.FileInput(self._path):
56 for line in fileinput.FileInput(self._path, inplace=1):
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
EditingLocationHistoryManager.js 125 return entry._projectId === uiSourceCode.project().id() && entry._path === uiSourceCode.path();
147 this._path = uiSourceCode.path();
159 if (this._projectId !== entry._projectId || this._path !== entry._path)
182 var uiSourceCode = WebInspector.workspace.project(this._projectId).uiSourceCode(this._path);
189 var uiSourceCode = WebInspector.workspace.project(this._projectId).uiSourceCode(this._path);
  /external/chromium_org/tools/gyp/test/win/
gyptest-link-update-manifest.py 27 self._path = path
31 self._handle = win32api.LoadLibrary(self._path)
gyptest-link-embed-manifest.py 27 self._path = path
31 self._handle = win32api.LoadLibrary(self._path)
gyptest-link-enable-uac.py 27 self._path = path
31 self._handle = win32api.LoadLibrary(self._path)
gyptest-link-generate-manifest.py 27 self._path = path
31 self._handle = win32api.LoadLibrary(self._path)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_mailbox.py 54 self._path = test_support.TESTFN
55 self._delete_recursively(self._path)
56 self._box = self._factory(self._path)
60 self._delete_recursively(self._path)
144 self._box = self._factory(self._path, factory=rfc822.Message)
439 self._box = self._factory(self._path)
460 return self._path + '.lock'
513 self.assertTrue(os.path.exists(os.path.join(self._path, 'cur', '%s%sfoo' %
560 box = mailbox.Maildir(self._path, factory=FakeMessage)
568 self._box = mailbox.Maildir(self._path)
    [all...]
test_old_mailbox.py 122 self._path = test_support.TESTFN
125 os.unlink(self._path)
129 with open(self._path, 'w') as f:
147 with open(self._path, 'r') as f:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_mailbox.py 54 self._path = test_support.TESTFN
55 self._delete_recursively(self._path)
56 self._box = self._factory(self._path)
60 self._delete_recursively(self._path)
144 self._box = self._factory(self._path, factory=rfc822.Message)
439 self._box = self._factory(self._path)
460 return self._path + '.lock'
513 self.assertTrue(os.path.exists(os.path.join(self._path, 'cur', '%s%sfoo' %
560 box = mailbox.Maildir(self._path, factory=FakeMessage)
568 self._box = mailbox.Maildir(self._path)
    [all...]
test_old_mailbox.py 122 self._path = test_support.TESTFN
125 os.unlink(self._path)
129 with open(self._path, 'w') as f:
147 with open(self._path, 'r') as f:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mailbox.py 47 self._path = os.path.abspath(os.path.expanduser(path))
253 'tmp': os.path.join(self._path, 'tmp'),
254 'new': os.path.join(self._path, 'new'),
255 'cur': os.path.join(self._path, 'cur'),
257 if not os.path.exists(self._path):
259 os.mkdir(self._path, 0700)
263 raise NoSuchMailboxError(self._path)
288 dest = os.path.join(self._path, subdir, uniq + suffix)
308 os.remove(os.path.join(self._path, self._lookup(key)))
338 new_path = os.path.join(self._path, subdir, key + suffix
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mailbox.py 47 self._path = os.path.abspath(os.path.expanduser(path))
253 'tmp': os.path.join(self._path, 'tmp'),
254 'new': os.path.join(self._path, 'new'),
255 'cur': os.path.join(self._path, 'cur'),
257 if not os.path.exists(self._path):
259 os.mkdir(self._path, 0700)
263 raise NoSuchMailboxError(self._path)
288 dest = os.path.join(self._path, subdir, uniq + suffix)
308 os.remove(os.path.join(self._path, self._lookup(key)))
338 new_path = os.path.join(self._path, subdir, key + suffix
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 50 self._path = path
54 return self._path
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
cloudstorage_api.py 288 self._path = path
291 self._path + '?' + urllib.urlencode(self._options))
298 options['marker'] = self._last_yield.filename[len(self._path) + 1:]
302 'path': self._path,
320 errors.check_status(status, [200], self._path, resp_headers=resp_headers,
325 self._path + '?' + urllib.urlencode(self._options))
378 yield common.GCSFileStat(self._path + '/' + key,
394 self._path + '/' + e.find(common._T_PREFIX).text,
storage_api.py 199 self._path = path
231 'path': self._path,
248 self._path = state['path']
249 self.name = api_utils._unquote_filename(self._path)
433 self._path, headers=headers)
434 errors.check_status(status, [200, 206], self._path, headers, resp_headers)
624 self._path = path
644 self._path_with_token = '%s?%s' % (self._path, parsed.query)
659 'path': self._path,
680 self._path = state['path'
    [all...]
  /external/clang/test/Analysis/
dead-stores.m 101 Radar11059352_1 *_Path;
107 Radar11059352_1 *xxxxx = _Path; // no warning
  /external/eigen/cmake/
FindLAPACK.cmake 40 macro(check_lapack_libraries DEFINITIONS LIBRARIES _prefix _name _flags _list _blas _path)
41 #message("DEBUG: check_lapack_libraries(${_list} in ${_path} with ${_blas})")
53 # search first in ${_path}
56 PATHS ${_path} NO_DEFAULT_PATH
FindBLAS.cmake 41 macro(check_fortran_libraries DEFINITIONS LIBRARIES _prefix _name _flags _list _path)
42 #message("DEBUG: check_fortran_libraries(${_list} in ${_path})")
54 # search first in ${_path}
57 PATHS ${_path} NO_DEFAULT_PATH

Completed in 840 milliseconds

1 2 3 4 5