Searched refs:source_url (Results 1 - 25 of 131) sorted by last modified time

123456

/external/skia/tools/pyutils/
H A Dgs_utils.py43 url_utils.copy_contents(source_url=source_http_url, dest_path=dest_path,
H A Durl_utils.py43 def copy_contents(source_url, dest_path, create_subdirs_if_needed=False):
44 """ Copies the full contents of the URL 'source_url' into
48 source_url: string; complete URL to read from
55 Some subclass of Exception if unable to read source_url or write dest_path.
61 with contextlib.closing(urllib.urlopen(source_url)) as source_handle:
H A Durl_utils_test.py45 source_url = url_utils.create_filepath_url(source_path)
52 url_utils.copy_contents(source_url=source_url,
56 url_utils.copy_contents(source_url=source_url,
/external/skia/tools/
H A Dsvndiff.py107 def _DownloadUrlToFile(source_url, dest_path):
108 """Download source_url, and save its contents to dest_path.
111 reader = urllib2.urlopen(source_url)
117 '%s: unable to download source_url %s to dest_path %s' % (
118 e, source_url, dest_path))
159 source_url=old_image_url,
170 source_url=new_image_url,
/external/skia/gm/rebaseline_server/
H A Ddownload_actuals.py79 source_url = gm_json.CreateGmActualUrl(
83 url_utils.copy_contents(source_url=source_url, dest_path=dest_path,
/external/chromium_org/v8/src/
H A Daccessors.cc646 Object* url = Script::cast(JSValue::cast(object)->value())->source_url();
H A Dapi.cc1650 i::Object* url = i::Script::cast(obj->script())->source_url();
H A Dmessages.js571 if (this.source_url) {
572 return this.source_url;
579 $Array("source", "name", "source_url", "source_mapping_url", "line_ends",
H A Dobjects-inl.h5372 ACCESSORS(Script, source_url, Object, kSourceUrlOffset)
H A Dobjects.h6451 // [source_url]: sourceURL from magic comment
6452 DECL_ACCESSORS(source_url, Object)
6454 // [source_url]: sourceMappingURL magic comment
H A Dparser.cc3994 if (scanner_.source_url()->length() > 0) {
3995 Handle<String> source_url = scanner_.source_url()->Internalize(isolate()); local
3996 info_->script()->set_source_url(*source_url);
H A Dscanner.h462 const LiteralBuffer* source_url() const { return &source_url_; } function in class:v8::internal::Scanner
/external/chromium_org/third_party/skia/gm/rebaseline_server/
H A Ddownload_actuals.py81 source_url = gm_json.CreateGmActualUrl(
85 url_utils.copy_contents(source_url=source_url, dest_path=dest_path,
/external/chromium_org/third_party/skia/tools/
H A Dsvndiff.py107 def _DownloadUrlToFile(source_url, dest_path):
108 """Download source_url, and save its contents to dest_path.
111 reader = urllib2.urlopen(source_url)
117 '%s: unable to download source_url %s to dest_path %s' % (
118 e, source_url, dest_path))
159 source_url=old_image_url,
170 source_url=new_image_url,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DDebuggerScript.js175 sourceURL: script.source_url,
/external/chromium_org/ui/base/clipboard/
H A Dscoped_clipboard_writer.cc35 const std::string& source_url) {
42 if (!source_url.empty()) {
43 parameters.push_back(Clipboard::ObjectMapParam(source_url.begin(),
44 source_url.end()));
34 WriteHTML(const base::string16& markup, const std::string& source_url) argument
H A Dscoped_clipboard_writer.h43 void WriteHTML(const base::string16& markup, const std::string& source_url);
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation.h127 // The |source_url| is the URL of the source entry. |size| should not be
132 // The |source_url| is the URL of the source entry. The |destination_url| is
137 // The |source_url| is the URL of the source file. |size| is the number
198 const FileSystemURL& source_url,
H A Dfile_system_operation_runner.cc623 const FileSystemURL& source_url,
630 AsWeakPtr(), handle, callback, type, source_url, dest_url, size));
633 callback.Run(type, source_url, dest_url, size);
619 OnCopyProgress( const OperationHandle& handle, const CopyProgressCallback& callback, FileSystemOperation::CopyProgressType type, const FileSystemURL& source_url, const FileSystemURL& dest_url, int64 size) argument
H A Dfile_system_operation_runner.h288 const FileSystemURL& source_url,
/external/chromium_org/extensions/browser/api/declarative/
H A Ddeclarative_api.cc133 source_url());
/external/chromium_org/extensions/browser/
H A Dextension_error.cc220 GURL source_url = GURL(source_); local
222 source_url.path() ==
224 context_url_ = source_url;
H A Dextension_function.cc192 name_, extension_.get(), source_context_type_, source_url());
H A Dextension_function.h226 void set_source_url(const GURL& source_url) { source_url_ = source_url; } argument
227 const GURL& source_url() { return source_url_; } function in class:ExtensionFunction
H A Dextension_function_dispatcher.cc331 registry->enabled_extensions().GetHostedAppByURL(params.source_url);
451 function->set_source_url(params.source_url);

Completed in 643 milliseconds

123456