Searched refs:origin (Results 51 - 75 of 1516) sorted by relevance

1234567891011>>

/external/chromium_org/tools/gn/
H A Dinput_conversion.cc58 const ParseNode* origin,
70 Err result(origin, "Script result wasn't a valid value.", help_text);
78 // Sets the origin of the value and any nested values with the given node.
79 void RecursivelySetOrigin(Value* value, const ParseNode* origin) { argument
80 value->set_origin(origin);
84 RecursivelySetOrigin(&list_value[i], origin);
89 const ParseNode* origin,
97 *err = MakeParseErr(input, origin, *err);
103 *err = MakeParseErr(input, origin, *err);
115 *err = MakeParseErr(input, origin, Er
57 MakeParseErr(const std::string& input, const ParseNode* origin, const Err& nested) argument
88 ParseString(const std::string& input, const ParseNode* origin, Err* err) argument
140 ParseList(const std::string& input, const ParseNode* origin, Err* err) argument
187 ConvertInputToValue(const std::string& input, const ParseNode* origin, const Value& input_conversion_value, Err* err) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_credential_state.cc35 bool SpdyCredentialState::HasCredential(const GURL& origin) const {
36 return FindCredentialSlot(origin) != kNoEntry;
39 size_t SpdyCredentialState::SetHasCredential(const GURL& origin) { argument
40 size_t i = FindCredentialSlot(origin);
50 slots_[last_added_] = GetCanonicalOrigin(origin);
54 size_t SpdyCredentialState::FindCredentialSlot(const GURL& origin) const {
55 GURL url = GetCanonicalOrigin(origin);
/external/chromium_org/chrome/browser/sync_file_system/
H A Dmock_remote_file_sync_service.h36 void(const GURL& origin, const SyncStatusCallback& callback));
38 void(const GURL& origin, const SyncStatusCallback& callback));
40 void(const GURL& origin, const SyncStatusCallback& callback));
42 void(const GURL& origin, const SyncStatusCallback& callback));
44 void(const GURL& origin, const SyncStatusCallback& callback));
61 virtual scoped_ptr<base::ListValue> DumpFiles(const GURL& origin) OVERRIDE;
79 const GURL& origin, const SyncStatusCallback& callback);
81 const GURL& origin, const SyncStatusCallback& callback);
83 const GURL& origin, const SyncStatusCallback& callback);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicSecureHandler.java53 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
57 if (origin == null) {
58 throw new IllegalArgumentException("Cookie origin may not be null");
60 return !cookie.isSecure() || origin.isSecure();
H A DAbstractCookieAttributeHandler.java40 public void validate(final Cookie cookie, final CookieOrigin origin) argument
45 public boolean match(final Cookie cookie, final CookieOrigin origin) { argument
/external/chromium_org/chrome/browser/ui/cocoa/
H A Dconfirm_bubble_controller.h28 origin:(CGPoint)origin
34 - (NSPoint)origin;
/external/chromium_org/net/http/
H A Dhttp_auth_cache.cc42 // Debug helper to check that |origin| arguments are properly formed.
43 void CheckOriginIsValid(const GURL& origin) { argument
44 DCHECK(origin.is_valid());
46 DCHECK(origin.SchemeIs("http") || origin.SchemeIs("https") ||
47 origin.SchemeIs("ftp"));
48 DCHECK(origin.GetOrigin() == origin);
71 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin, argument
74 CheckOriginIsValid(origin);
88 LookupByPath(const GURL& origin, const std::string& path) argument
113 Add(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge, const AuthCredentials& credentials, const std::string& path) argument
199 Remove(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const AuthCredentials& credentials) argument
216 UpdateStaleChallenge(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge) argument
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper_unittest.cc221 const GURL origin("http://www.google.com");
229 helper->AddChangedCookie(origin, origin, "A=1", net::CookieOptions());
230 helper->AddChangedCookie(origin, origin, "A=1; Domain=.www.google.com",
233 helper->AddChangedCookie(origin, origin, std::string(), net::CookieOptions());
234 helper->AddChangedCookie(origin,
235 origin,
247 helper->AddReadCookies(origin, origi
[all...]
/external/chromium/net/http/
H A Dhttp_auth_cache.cc42 // Debug helper to check that |origin| arguments are properly formed.
43 void CheckOriginIsValid(const GURL& origin) { argument
44 DCHECK(origin.is_valid());
45 DCHECK(origin.SchemeIs("http") || origin.SchemeIs("https"));
46 DCHECK(origin.GetOrigin() == origin);
69 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin, argument
72 CheckOriginIsValid(origin);
76 if (it->origin()
86 LookupByPath(const GURL& origin, const std::string& path) argument
111 Add(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge, const string16& username, const string16& password, const std::string& path) argument
199 Remove(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const string16& username, const string16& password) argument
217 UpdateStaleChallenge(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge) argument
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_special_storage_policy.cc33 bool ExtensionSpecialStoragePolicy::IsStorageProtected(const GURL& origin) { argument
34 if (origin.SchemeIs(extensions::kExtensionScheme))
37 return protected_apps_.Contains(origin);
40 bool ExtensionSpecialStoragePolicy::IsStorageUnlimited(const GURL& origin) { argument
45 return unlimited_extensions_.Contains(origin);
48 bool ExtensionSpecialStoragePolicy::IsStorageSessionOnly(const GURL& origin) { argument
51 return cookie_settings_->IsCookieSessionOnly(origin);
54 bool ExtensionSpecialStoragePolicy::CanQueryDiskSize(const GURL& origin) { argument
55 return installed_apps_.Contains(origin);
79 bool ExtensionSpecialStoragePolicy::HasIsolatedStorage(const GURL& origin) { argument
89 ExtensionsProtectingOrigin( const GURL& origin) argument
181 NotifyGranted( const GURL& origin, int change_flags) argument
194 NotifyRevoked( const GURL& origin, int change_flags) argument
227 Contains( const GURL& origin) argument
233 ExtensionsContaining( const GURL& origin) argument
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_origin.h26 // Return a human-readable name for |origin|.
27 const char* NameFromOrigin(Origin origin);
/external/chromium_org/chrome/browser/ui/
H A Dconfirm_bubble.h19 // |origin|. A bubble created by this function takes ownership of the
22 const gfx::Point& origin,
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_data_model.h23 AutofillDataModel(const std::string& guid, const std::string& origin);
46 std::string origin() const { return origin_; } function in class:autofill::AutofillDataModel
47 void set_origin(const std::string& origin) { origin_ = origin; } argument
59 // The origin of this data. This should be
63 // URL, identifying the origin for non-aggregated data, or
64 // (c) an empty string, indicating that the origin for this data is unknown.
/external/chromium_org/content/public/browser/
H A Dlocal_storage_usage_info.h16 GURL origin; member in struct:content::LocalStorageUsageInfo
/external/chromium_org/third_party/WebKit/Source/core/css/
H A Dsvg.css64 /* CSS transform specification: "transform-origin 0 0 for SVG elements without associated CSS layout box, 50% 50% for all other elements". */
67 -webkit-transform-origin: 0 0;
71 -webkit-transform-origin: 50% 50%;
/external/chromium_org/third_party/WebKit/Source/web/
H A DStorageNamespaceProxy.cpp45 PassOwnPtr<StorageArea> StorageNamespace::localStorageArea(SecurityOrigin* origin) argument
51 return adoptPtr(new StorageAreaProxy(adoptPtr(localStorageNamespace->createStorageArea(origin->toString())), LocalStorage));
69 PassOwnPtr<StorageArea> StorageNamespaceProxy::storageArea(SecurityOrigin* origin) argument
71 return adoptPtr(new StorageAreaProxy(adoptPtr(m_storageNamespace->createStorageArea(origin->toString())), SessionStorage));
H A DWebDOMMessageEvent.cpp49 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId) argument
57 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
65 WebString WebDOMMessageEvent::origin() const function in class:WebKit::WebDOMMessageEvent
67 return WebString(constUnwrap<MessageEvent>()->origin());
H A DWebStorageEventDispatcherImpl.cpp45 const WebString& newValue, const WebURL& origin,
49 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin);
57 const WebString& newValue, const WebURL& origin,
61 RefPtr<WebCore::SecurityOrigin> securityOrigin = WebCore::SecurityOrigin::create(origin);
43 dispatchLocalStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
55 dispatchSessionStorageEvent( const WebString& key, const WebString& oldValue, const WebString& newValue, const WebURL& origin, const WebURL& pageURL, const WebStorageNamespace& sessionNamespace, WebStorageArea* sourceAreaInstance, bool originatedInProcess) argument
/external/chromium_org/webkit/browser/fileapi/
H A Dsandbox_origin_database_interface.cc14 : origin(origin_in), path(path_in) {
/external/chromium_org/webkit/browser/quota/
H A Dspecial_storage_policy.cc23 void SpecialStoragePolicy::NotifyGranted(const GURL& origin, int change_flags) { argument
25 FOR_EACH_OBSERVER(Observer, observers_, OnGranted(origin, change_flags));
28 void SpecialStoragePolicy::NotifyRevoked(const GURL& origin, int change_flags) { argument
30 FOR_EACH_OBSERVER(Observer, observers_, OnRevoked(origin, change_flags));
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_screen_position_client.cc49 gfx::Point origin = GetOrigin(root_window); local
50 point->Offset(origin.x(), origin.y());
56 gfx::Point origin = GetOrigin(root_window); local
57 point->Offset(-origin.x(), -origin.y());
78 gfx::Point origin = bounds.origin(); local
79 aura::Window::ConvertPointToTarget(window->parent(), root, &origin);
82 origin
[all...]
/external/chromium_org/webkit/common/database/
H A Ddatabase_identifier.cc14 std::string GetIdentifierFromOrigin(const GURL& origin) { argument
15 return DatabaseIdentifier::CreateFromOrigin(origin).ToString();
33 DatabaseIdentifier DatabaseIdentifier::CreateFromOrigin(const GURL& origin) { argument
34 if (!origin.is_valid() || origin.is_empty() ||
35 !origin.IsStandard() || SchemeIsUnique(origin.scheme()))
38 if (origin.SchemeIsFile())
41 int port = origin.IntPort();
50 return DatabaseIdentifier(origin
[all...]
/external/chromium_org/chrome/browser/search/
H A Diframe_source.cc56 std::string* origin) const {
65 *origin = contents->GetURL().GetOrigin().spec();
67 TrimString(*origin, "/", origin);
84 std::string origin; local
85 if (!GetOrigin(render_process_id, render_view_id, &origin)) {
91 base::JsonDoubleQuote(origin, false, &js_escaped_origin);
95 ReplaceFirstSubstringAfterOffset(&response, 0, "{{ORIGIN}}", origin);
/external/chromium_org/content/browser/dom_storage/
H A Dsession_storage_database_adapter.cc14 const GURL& origin)
17 origin_(origin) {
11 SessionStorageDatabaseAdapter( SessionStorageDatabase* db, const std::string& permanent_namespace_id, const GURL& origin) argument
/external/chromium_org/content/public/test/
H A Dmock_resource_context.cc33 bool MockResourceContext::AllowMicAccess(const GURL& origin) { argument
37 bool MockResourceContext::AllowCameraAccess(const GURL& origin) { argument

Completed in 1700 milliseconds

1234567891011>>