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

1 2

  /external/chromium_org/chrome/test/pyautolib/
pyauto_utils.py 31 _path = '' variable in class:ExistingPathReplacer
44 self._path = path
45 if os.path.exists(self._path):
47 assert os.path.isdir(self._path), '%s is not a directory' % self._path
49 assert os.path.isfile(self._path), '%s is not a file' % self._path
51 self._backup_basename = os.path.basename(self._path)
52 self._backup_dir = tempfile.mkdtemp(dir=os.path.dirname(self._path),
54 logging.info('Backing up %s in %s' % (self._path, self._backup_dir)
    [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/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
  /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/
IsolatedFileSystem.js 39 this._path = path;
77 return this._path;
101 this._manager.requestDOMFileSystem(this._path, callback);
182 console.error(errorMessage + " when testing if file exists '" + (this._path + "/" + path + "/" + nameCandidate) + "'");
190 var filePath = this._path + "/" + path;
231 console.error(errorMessage + " when deleting file '" + (this._path + "/" + path) + "'");
326 console.error(errorMessage + " when getting content for file '" + (this._path + "/" + path) + "'");
381 console.error(errorMessage + " when setting content for file '" + (this._path + "/" + path) + "'");
462 console.error(errorMessage + " when renaming file '" + (this._path + "/" + path) + "' to '" + newName + "'");
NetworkRequest.js 114 delete this._path;
384 if (this._path)
385 return this._path;
387 return this._path;
394 this._path = "";
397 this._path = "";
399 this._path = this._parsedURL.host + this._parsedURL.folderPathComponents;
400 this._path = this._path.trimURL(WebInspector.inspectedPageDomain ? WebInspector.inspectedPageDomain : "");
405 this._path = this._path.substring(0, this._path.lastIndexOf("/"))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 53 self._path = path
61 return self._path
  /external/chromium_org/tools/gyp/test/win/
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)
  /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/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 104 this._path=undefined;
155 this._path = path;
266 signed_url: this._path + '?' + this._normalizedParameters(),
450 var sigString = this._oauthEscape(this._action)+'&'+this._oauthEscape(this._path)+'&'+this._oauthEscape(this._normalizedParameters());
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 104 this._path=undefined;
155 this._path = path;
266 signed_url: this._path + '?' + this._normalizedParameters(),
450 var sigString = this._oauthEscape(this._action)+'&'+this._oauthEscape(this._path)+'&'+this._oauthEscape(this._normalizedParameters());
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauthsimple.js 104 this._path=undefined;
155 this._path = path;
266 signed_url: this._path + '?' + this._normalizedParameters(),
450 var sigString = this._oauthEscape(this._action)+'&'+this._oauthEscape(this._path)+'&'+this._oauthEscape(this._normalizedParameters());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauthsimple.js 104 this._path=undefined;
155 this._path = path;
266 signed_url: this._path + '?' + this._normalizedParameters(),
450 var sigString = this._oauthEscape(this._action)+'&'+this._oauthEscape(this._path)+'&'+this._oauthEscape(this._normalizedParameters());
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauthsimple.js 104 this._path=undefined;
155 this._path = path;
266 signed_url: this._path + '?' + this._normalizedParameters(),
450 var sigString = this._oauthEscape(this._action)+'&'+this._oauthEscape(this._path)+'&'+this._oauthEscape(this._normalizedParameters());
  /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:
  /external/antlr/antlr-3.4/runtime/Python/
xmlrunner.py 163 self._path = "."
171 stream = file(os.path.join(self._path, filename), "w")
207 self._path = path
209 path = property(lambda self: self._path, _set_path, None,
  /external/chromium_org/build/android/pylib/
forwarder.py 35 self._path = path
38 self._fd = os.open(self._path, os.O_RDONLY | os.O_CREAT)
40 raise Exception('Could not open file %s for reading' % self._path)
  /external/chromium_org/tools/deep_memory_profiler/lib/
pageframe.py 97 self._path = path
115 return self._path
dump.py 69 self._path = path
90 return self._path
168 LOGGER.info('%s%s ...ignored an empty dump.' % (log_header, self._path))
170 LOGGER.error('%s%s ...error %s' % (log_header, self._path, e))
173 LOGGER.info('%s%s (version:%s)' % (log_header, self._path, self._version))
  /external/chromium/net/tools/testserver/
device_management.py 88 self._path = path
103 self._params = cgi.parse_qs(self._path[self._path.find('?') + 1:])

Completed in 1543 milliseconds

1 2