HomeSort by relevance Sort by last modified time
    Searched defs:origin (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/WebKit/qt/Api/
qwebdatabase_p.h 33 WTF::RefPtr<WebCore::SecurityOrigin> origin; member in class:QWebDatabasePrivate
qwebsecurityorigin_p.h 31 origin = o;
36 WTF::RefPtr<WebCore::SecurityOrigin> origin; member in class:QWebSecurityOriginPrivate
qwebdatabase.cpp 43 a security origin, use QWebSecurityOrigin::databases(). Each database has an internal name(),
90 DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(d->name, d->origin.get());
103 DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(d->name, d->origin.get());
116 DatabaseDetails details = DatabaseTracker::tracker().detailsForNameAndOrigin(d->name, d->origin.get());
151 return DatabaseTracker::tracker().fullPathForDatabase(d->origin.get(), d->name, false);
158 Returns the databases's security origin.
160 QWebSecurityOrigin QWebDatabase::origin() const function in class:QWebDatabase
162 QWebSecurityOriginPrivate* priv = new QWebSecurityOriginPrivate(d->origin.get());
163 QWebSecurityOrigin origin(priv);
164 return origin;
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_cocoa.h 44 // The origin of this object in the page's document.
45 // This is relative to webkit's top-left origin, not Cocoa's
46 // bottom-left origin.
47 @property(nonatomic, readonly) NSPoint origin; variable
  /external/chromium/net/ftp/
ftp_auth_cache.h 30 Entry(const GURL& origin, const string16& username,
34 const GURL origin; member in struct:net::FtpAuthCache::Entry
42 // Return Entry corresponding to given |origin| or NULL if not found.
43 Entry* Lookup(const GURL& origin);
45 // Add an entry for |origin| to the cache (consisting of |username| and
46 // |password|). If there is already an entry for |origin|, it will be
48 void Add(const GURL& origin, const string16& username,
51 // Remove the entry for |origin| from the cache, if one exists and matches
53 void Remove(const GURL& origin, const string16& username,
  /external/chromium/webkit/glue/
form_data.h 30 GURL origin; member in struct:webkit_glue::FormData
  /external/webkit/Source/WebKit2/Shared/API/c/
WKGeometry.h 48 WKPoint origin; member in struct:WKRect
  /external/webkit/Source/WebKit2/Shared/
SecurityOriginData.cpp 61 RefPtr<APIObject> origin = WebSecurityOrigin::create(originData.protocol, originData.host, originData.port); local
62 if (!origin)
64 securityOrigins.uncheckedAppend(origin);
DictionaryPopupInfo.h 52 WebCore::FloatPoint origin; member in struct:WebKit::DictionaryPopupInfo
  /external/chromium/chrome/browser/
load_notification_details.h 22 PageTransition::Type origin,
29 origin_(origin),
35 PageTransition::Type origin() const { return origin_; } function in class:LoadNotificationDetails
  /external/chromium/chrome/browser/notifications/
notifications_prefs_cache.cc 21 const GURL& origin) {
24 allowed_origins_.insert(origin);
25 if ((iter = denied_origins_.find(origin)) != denied_origins_.end())
30 const GURL& origin) {
33 denied_origins_.insert(origin);
34 if ((iter = allowed_origins_.find(origin)) != allowed_origins_.end())
60 std::string origin; local
62 (*i)->GetAsString(&origin);
63 origin_vector->push_back(GURL(origin));
67 int NotificationsPrefsCache::HasPermission(const GURL& origin) {
    [all...]
  /external/chromium/chrome/browser/password_manager/
password_form_data.h 17 const char* origin; member in struct:PasswordFormData
  /external/chromium/chrome/browser/search_engines/
template_url_prepopulate_data_unittest.cc 152 GURL origin = engine_url.GetOrigin(); local
153 unique_engines.insert(origin);
  /external/clang/test/Sema/
init-struct-qualified.c 5 typedef struct _NSRect { NSPoint origin; NSSize size; } NSRect; member in struct:_NSRect
  /external/elfutils/libdw/
dwarf_func_inline.c 79 Dwarf_Die *origin = INTUSE(dwarf_formref_die) (attr, &origin_mem); local
80 if (origin == NULL)
83 if (origin->addr != v->die_addr)
  /external/webkit/Source/JavaScriptCore/profiler/
ProfileGenerator.h 50 JSGlobalObject* origin() const { return m_origin; } function in class:JSC::ProfileGenerator
  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.h 52 void* origin() const function in class:WTF::StackBounds
  /external/webkit/Source/WebCore/bindings/v8/
ScriptEventListener.cpp 116 v8::ScriptOrigin origin = function->GetScriptOrigin(); local
117 if (!origin.ResourceName().IsEmpty()) {
118 sourceName = toWebCoreString(origin.ResourceName());
  /external/webkit/Source/WebCore/dom/
MessageEvent.h 46 static PassRefPtr<MessageEvent> create(PassOwnPtr<MessagePortArray> ports, PassRefPtr<SerializedScriptValue> data = 0, const String& origin = "", const String& lastEventId = "", PassRefPtr<DOMWindow> source = 0)
48 return adoptRef(new MessageEvent(data, origin, lastEventId, source, ports));
52 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, PassOwnPtr<MessagePortArray>);
55 const String& origin() const { return m_origin; } function in class:WebCore::MessageEvent
63 void initMessageEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, DOMWindow* source, MessagePort*);
69 MessageEvent(PassRefPtr<SerializedScriptValue> data, const String& origin, const String& lastEventId, PassRefPtr<DOMWindow> source, PassOwnPtr<MessagePortArray>);
  /external/webkit/Source/WebKit/chromium/public/
WebPasswordFormData.h 70 WebURL origin; member in struct:WebKit::WebPasswordFormData
  /external/webkit/Source/WebKit/chromium/src/
WebDatabase.cpp 109 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromDatabaseIdentifier(originIdentifier); local
110 DatabaseTracker::tracker().getOpenDatabases(origin.get(), databaseName, &databaseHandles);
WebStorageNamespaceImpl.cpp 77 RefPtr<WebCore::SecurityOrigin> origin = WebCore::SecurityOrigin::createFromString(originWebCoreString); local
78 return new WebStorageAreaImpl(m_storageNamespace->storageArea(origin.release()));
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebframeprivate.h 49 WebKitSecurityOrigin* origin; member in struct:_WebKitWebFramePrivate
  /external/webkit/Source/WebKit/win/
WebSecurityOrigin.cpp 45 WebSecurityOrigin* origin = new WebSecurityOrigin(securityOrigin); local
46 origin->AddRef();
47 return origin;
  /external/webkit/Source/WebKit2/WebProcess/ApplicationCache/
WebApplicationCacheManager.cpp 73 RefPtr<SecurityOrigin> origin = *i; local
76 originData.protocol = origin->protocol();
77 originData.host = origin->host();
78 originData.port = origin->port();
91 RefPtr<SecurityOrigin> origin = SecurityOrigin::create(originData.protocol, originData.host, originData.port); local
92 if (!origin)
95 ApplicationCache::deleteCacheForOrigin(origin.get());

Completed in 283 milliseconds

1 2 3 4 5 6 7 8 9