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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SecurityOriginTest.cpp 48 RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", "example.com", ports[i]); local
49 EXPECT_TRUE(origin->isUnique()) << "Port " << ports[i] << " should have generated a unique origin.";
58 RefPtr<SecurityOrigin> origin = SecurityOrigin::create("http", "example.com", ports[i]); local
59 EXPECT_FALSE(origin->isUnique()) << "Port " << ports[i] << " should not have generated a unique origin.";
OriginAccessEntryTest.cpp 72 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromString("http://www.google.com"); local
76 EXPECT_EQ(OriginAccessEntry::MatchesOrigin, entry1.matchesOrigin(*origin));
77 EXPECT_EQ(OriginAccessEntry::DoesNotMatchOrigin, entry2.matchesOrigin(*origin));
78 EXPECT_EQ(OriginAccessEntry::MatchesOriginButIsPublicSuffix, entry3.matchesOrigin(*origin));
  /external/chromium_org/content/public/browser/
session_storage_usage_info.h 12 GURL origin; member in struct:content::SessionStorageUsageInfo
local_storage_usage_info.h 16 GURL origin; member in struct:content::LocalStorageUsageInfo
load_notification_details.h 20 PageTransition origin,
27 origin(origin),
40 PageTransition origin; member in struct:content::LoadNotificationDetails
  /external/chromium_org/chrome/renderer/extensions/
media_galleries_custom_bindings.cc 46 const GURL origin = GURL(webframe->document().securityOrigin().toString()); local
47 const std::string fs_name = fileapi::GetIsolatedFileSystemName(origin, fsid);
50 origin, fsid, extension_misc::kMediaFileSystemPathPart);
  /external/chromium_org/components/translate/common/
translate_util_unittest.cc 87 GURL origin = translate::GetTranslateSecurityOrigin(); local
88 EXPECT_EQ(std::string(translate::kSecurityOrigin), origin.spec());
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 45 set origin 0,0 variable
  /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/chromium_org/chrome/browser/automation/
testing_automation_provider_gtk.cc 38 gfx::Point origin; local
40 origin = gfx::PointAtOffsetFromOrigin(ui::GetWidgetScreenOffset(widget));
45 origin = gfx::Point(x, y);
47 bounds->set_origin(origin);
  /external/chromium_org/chrome/browser/media/
desktop_streams_registry.h 24 // |source| for the |origin|. Returns identifier of the new stream.
27 const GURL& origin,
32 // using RegisterStream() or if it was generated for a different origin.
37 const GURL& origin);
44 GURL origin; member in struct:DesktopStreamsRegistry::ApprovedDesktopMediaStream
  /external/chromium_org/chrome/test/chromedriver/
basic_types.h 31 WebRect(const WebPoint& origin, const WebSize& size);
39 WebPoint origin; member in struct:WebRect
  /external/chromium_org/components/autofill/core/browser/
autofill_data_model.h 22 AutofillDataModel(const std::string& guid, const std::string& origin);
40 std::string origin() const { return origin_; } function in class:autofill::AutofillDataModel
41 void set_origin(const std::string& origin) { origin_ = origin; }
47 // The origin of this data. This should be
51 // URL, identifying the origin for non-aggregated data, or
52 // (c) an empty string, indicating that the origin for this data is unknown.
  /external/chromium_org/components/autofill/core/common/
form_data.h 31 GURL origin; member in struct:autofill::FormData
  /external/chromium_org/content/public/common/
show_desktop_notification_params.h 19 // URL which is the origin that created this notification.
20 GURL origin; member in struct:content::ShowDesktopNotificationHostMsgParams
  /external/chromium_org/net/ftp/
ftp_auth_cache.h 30 Entry(const GURL& origin, const AuthCredentials& credentials);
33 GURL origin; member in struct:net::FtpAuthCache::Entry
40 // Return Entry corresponding to given |origin| or NULL if not found.
41 Entry* Lookup(const GURL& origin);
43 // Add an entry for |origin| to the cache using |credentials|. If there is
44 // already an entry for |origin|, it will be overwritten.
45 void Add(const GURL& origin, const AuthCredentials& credentials);
47 // Remove the entry for |origin| from the cache, if one exists and matches
49 void Remove(const GURL& origin, const AuthCredentials& credentials);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DOMURLUtilsReadOnly.cpp 43 String DOMURLUtilsReadOnly::origin(const KURL& url) function in class:WebCore::DOMURLUtilsReadOnly
  /external/chromium_org/third_party/WebKit/Source/web/
WebDOMMessageEvent.cpp 48 void WebDOMMessageEvent::initMessageEvent(const WebString& type, bool canBubble, bool cancelable, const WebSerializedScriptValue& messageData, const WebString& origin, const WebFrame* sourceFrame, const WebString& lastEventId, const WebMessagePortChannelArray& webChannels)
62 unwrap<MessageEvent>()->initMessageEvent(type, canBubble, cancelable, messageData, origin, lastEventId, window, ports.release());
70 WebString WebDOMMessageEvent::origin() const function in class:blink::WebDOMMessageEvent
72 return WebString(constUnwrap<MessageEvent>()->origin());
  /external/chromium_org/third_party/skia/src/utils/
SkCanvasStack.h 20 void pushCanvas(SkCanvas* canvas, const SkIPoint& origin);
43 SkIPoint origin; member in struct:SkCanvasStack::CanvasData
  /external/chromium_org/webkit/browser/fileapi/
sandbox_isolated_origin_database.h 17 // This origin database implementation supports only one origin
24 // Initialize this database for |origin| which makes GetPathForOrigin return
27 const std::string& origin,
33 virtual bool HasOriginPath(const std::string& origin) OVERRIDE;
34 virtual bool GetPathForOrigin(const std::string& origin,
36 virtual bool RemovePathForOrigin(const std::string& origin) OVERRIDE;
42 const std::string& origin,
46 const std::string& origin() const { return origin_; } function in class:fileapi::SandboxIsolatedOriginDatabase
sandbox_origin_database_interface.h 19 std::string origin; member in struct:fileapi::SandboxOriginDatabaseInterface::OriginRecord
23 OriginRecord(const std::string& origin, const base::FilePath& path);
29 // Returns true if the origin's path is included in this database.
30 virtual bool HasOriginPath(const std::string& origin) = 0;
34 virtual bool GetPathForOrigin(const std::string& origin,
37 // Removes the origin's path from the database.
38 // Returns success if the origin has been successfully removed, or
39 // the origin is not found.
41 virtual bool RemovePathForOrigin(const std::string& origin) = 0;
  /external/skia/src/utils/
SkCanvasStack.h 20 void pushCanvas(SkCanvas* canvas, const SkIPoint& origin);
43 SkIPoint origin; member in struct:SkCanvasStack::CanvasData
  /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

Completed in 360 milliseconds

1 2 3 4 5 6 7 8 91011>>