Searched defs:origin (Results 126 - 150 of 332) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/wtf/
H A DStackBounds.cpp72 static void* estimateStackBound(void* origin) argument
74 return static_cast<char*>(origin) - estimatedStackSize;
/external/webkit/Source/WebCore/loader/
H A DCrossOriginPreflightResultCache.cpp159 void CrossOriginPreflightResultCache::appendEntry(const String& origin, const KURL& url, PassOwnPtr<CrossOriginPreflightResultCacheItem> preflightResult) argument
163 pair<CrossOriginPreflightResultHashMap::iterator, bool> addResult = m_preflightHashMap.add(make_pair(origin, url), resultPtr);
170 bool CrossOriginPreflightResultCache::canSkipPreflight(const String& origin, const KURL& url, bool includeCredentials, const String& method, const HTTPHeaderMap& requestHeaders) argument
173 CrossOriginPreflightResultHashMap::iterator cacheIt = m_preflightHashMap.find(std::make_pair(origin, url));
H A DDocumentWriter.cpp109 void DocumentWriter::begin(const KURL& url, bool dispatch, SecurityOrigin* origin) argument
111 // We need to take a reference to the security origin because |clear|
113 RefPtr<SecurityOrigin> forcedSecurityOrigin = origin;
164 // the parent and the current frames share the security origin.
/external/webkit/Source/WebCore/loader/appcache/
H A DApplicationCache.cpp188 void ApplicationCache::deleteCacheForOrigin(SecurityOrigin* origin) argument
196 KURL originURL(KURL(), origin->toString());
/external/webkit/Source/WebCore/page/
H A DLocation.cpp123 String Location::origin() const function in class:WebCore::Location
253 // FIXME: It's not clear this cross-origin security check is valuable.
255 // Other location operations simply block use of JavaScript URLs cross origin.
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceMarker.cpp115 AffineTransform RenderSVGResourceMarker::markerTransformation(const FloatPoint& origin, float autoAngle, float strokeWidth) const argument
124 transform.translate(origin.x(), origin.y());
139 AffineTransform RenderSVGResourceMarker::markerContentTransformation(const AffineTransform& contentTransformation, const FloatPoint& origin, float strokeWidth) const argument
141 // The 'origin' coordinate maps to SVGs refX/refY, given in coordinates relative to the viewport established by the marker
142 FloatPoint mappedOrigin = viewportTransform().mapPoint(origin);
H A DSVGMarkerData.h47 FloatPoint origin() const { return m_origin; } function in class:WebCore::SVGMarkerData
/external/webkit/Source/WebCore/storage/
H A DStorageAreaImpl.cpp47 inline StorageAreaImpl::StorageAreaImpl(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
49 , m_securityOrigin(origin)
61 PassRefPtr<StorageAreaImpl> StorageAreaImpl::create(StorageType storageType, PassRefPtr<SecurityOrigin> origin, PassRefPtr<StorageSyncManager> syncManager, unsigned quota) argument
63 RefPtr<StorageAreaImpl> area = adoptRef(new StorageAreaImpl(storageType, origin, syncManager, quota));
/external/webkit/Source/WebCore/storage/chromium/
H A DDatabaseTrackerChromium.cpp69 String DatabaseTracker::fullPathForDatabase(SecurityOrigin* origin, const String& name, bool) argument
71 return origin->databaseIdentifier() + "/" + name + "#";
149 void DatabaseTracker::getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases) argument
155 DatabaseNameMap* nameMap = m_openDatabaseMap->get(origin);
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationClientImpl.cpp201 void GeolocationClientImpl::providePermissionState(String origin, bool allow, bool remember) argument
203 permissions()->providePermissionState(origin, allow, remember);
/external/webkit/Source/WebKit/android/jni/
H A DWebStorage.cpp65 WebCore::SecurityOrigin* origin = coreOrigins[i].get(); local
66 WTF::String url = origin->toString();
75 static unsigned long long GetQuotaForOrigin(JNIEnv* env, jobject obj, jstring origin) argument
77 WTF::String originStr = jstringToWtfString(env, origin);
83 static unsigned long long GetUsageForOrigin(JNIEnv* env, jobject obj, jstring origin) argument
85 WTF::String originStr = jstringToWtfString(env, origin);
105 static void SetQuotaForOrigin(JNIEnv* env, jobject obj, jstring origin, unsigned long long quota) argument
107 WTF::String originStr = jstringToWtfString(env, origin);
112 static void DeleteOrigin(JNIEnv* env, jobject obj, jstring origin) argument
114 WTF::String originStr = jstringToWtfString(env, origin);
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileUtilities.h66 virtual long long seekFile(FileHandle, long long offset, int origin) { return 0; } argument
/external/webkit/Source/WebKit/chromium/src/
H A DWebSecurityOrigin.cpp52 WebSecurityOrigin WebSecurityOrigin::createFromString(const WebString& origin) argument
54 return WebSecurityOrigin(SecurityOrigin::createFromString(origin));
130 WebSecurityOrigin::WebSecurityOrigin(const WTF::PassRefPtr<WebCore::SecurityOrigin>& origin) argument
131 : m_private(static_cast<WebSecurityOriginPrivate*>(origin.releaseRef()))
135 WebSecurityOrigin& WebSecurityOrigin::operator=(const WTF::PassRefPtr<WebCore::SecurityOrigin>& origin) argument
137 assign(static_cast<WebSecurityOriginPrivate*>(origin.releaseRef()));
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDragClientGtk.cpp137 IntSize origin = eventPos - dragImageOrigin; local
139 origin.width(), origin.height());
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebDesktopNotificationsDelegate.cpp168 void WebDesktopNotificationsDelegate::requestPermission(SecurityOrigin* origin, PassRefPtr<VoidCallback> callback) argument
170 BString org(origin->toString());
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebDatabaseManager.cpp73 // to get both the origins and the Vector of DatabaseDetails for each origin in one
131 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromDatabaseIdentifier(originIdentifier); local
132 if (!origin)
135 DatabaseTracker::tracker().deleteDatabase(origin.get(), databaseIdentifier);
142 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromDatabaseIdentifier(originIdentifier); local
143 if (!origin)
146 DatabaseTracker::tracker().deleteOrigin(origin.get());
162 // prevent new data from being added to databases in that origin.
164 RefPtr<SecurityOrigin> origin = SecurityOrigin::createFromDatabaseIdentifier(originIdentifier); local
165 if (!origin)
171 dispatchDidModifyOrigin(SecurityOrigin* origin) argument
177 dispatchDidModifyDatabase(WebCore::SecurityOrigin* origin, const String& databaseIdentifier) argument
[all...]
/external/zlib/src/contrib/minizip/
H A Dioapi.c21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
25 #define FSEEKO_FUNC(stream, offset, origin) fseeko64(stream, offset, origin)
41 long call_zseek64 (const zlib_filefunc64_32_def* pfilefunc,voidpf filestream, ZPOS64_T offset, int origin) argument
44 return (*(pfilefunc->zfile_func64.zseek64_file)) (pfilefunc->zfile_func64.opaque,filestream,offset,origin);
51 return (*(pfilefunc->zseek32_file))(pfilefunc->zfile_func64.opaque,filestream,offsetTruncated,origin);
91 static long ZCALLBACK fseek64_file_func OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
161 static long ZCALLBACK fseek_file_func (voidpf opaque, voidpf stream, uLong offset, int origin) argument
165 switch (origin)
184 fseek64_file_func(voidpf opaque, voidpf stream, ZPOS64_T offset, int origin) argument
[all...]
/external/chromium/chrome/browser/
H A Dbrowsing_data_database_helper.cc29 const std::string& origin,
36 origin(origin),
75 void BrowsingDataDatabaseHelper::DeleteDatabase(const std::string& origin, argument
79 this, &BrowsingDataDatabaseHelper::DeleteDatabaseInWebKitThread, origin,
137 const std::string& origin,
142 tracker_->DeleteDatabase(UTF8ToUTF16(origin), UTF8ToUTF16(name), NULL);
148 const GURL& origin,
151 : origin(origin),
24 DatabaseInfo( const std::string& host, const std::string& database_name, const std::string& origin_identifier, const std::string& description, const std::string& origin, int64 size, base::Time last_modified) argument
136 DeleteDatabaseInWebKitThread( const std::string& origin, const std::string& name) argument
147 PendingDatabaseInfo( const GURL& origin, const std::string& name, const std::string& description) argument
175 AddDatabase( const GURL& origin, const std::string& name, const std::string& description) argument
[all...]
H A Dbrowsing_data_indexed_db_helper.cc166 const std::string& origin,
174 origin(origin),
193 PendingIndexedDBInfo::PendingIndexedDBInfo(const GURL& origin, argument
195 : origin(origin),
223 const GURL& origin, const string16& description) {
225 pending_indexed_db_info_.push_back(PendingIndexedDBInfo(origin, description));
260 UTF8ToUTF16(info->origin.spec()));
267 if (indexed_db->origin
161 IndexedDBInfo( const std::string& protocol, const std::string& host, unsigned short port, const std::string& database_identifier, const std::string& origin, const FilePath& file_path, int64 size, base::Time last_modified) argument
222 AddIndexedDB( const GURL& origin, const string16& description) argument
[all...]
H A Dcookies_tree_model_unittest.cc119 return node->GetDetailedInfo().session_storage_info->origin + ",";
121 return node->GetDetailedInfo().local_storage_info->origin + ",";
130 return node->GetDetailedInfo().indexed_db_info->origin + ",";
281 SCOPED_TRACE("First cookie origin removed");
296 SCOPED_TRACE("First database origin removed");
311 SCOPED_TRACE("First local storage origin removed");
326 SCOPED_TRACE("First IndexedDB origin removed");
347 SCOPED_TRACE("First origin removed");
350 // 28 because in this case, the origin remains, although the COOKIES
385 SCOPED_TRACE("First origin remove
672 CookieTreeOriginNode* origin = root->GetOrCreateOriginNode(host); local
[all...]
/external/chromium/chrome/browser/content_settings/
H A Dcontent_settings_notification_provider.cc48 const GURL& origin) {
50 if (origin.spec().empty()) {
55 return ContentSettingsPattern::FromURLNoWildcard(origin);
117 GURL origin = ToGURL(requesting_url_pattern);
119 GrantPermission(origin);
121 DenyPermission(origin);
123 ContentSetting current_setting = GetContentSetting(origin);
125 ResetAllowedOrigin(origin);
127 ResetBlockedOrigin(origin);
261 void NotificationProvider::GrantPermission(const GURL& origin) { argument
47 ToContentSettingsPattern( const GURL& origin) argument
267 DenyPermission(const GURL& origin) argument
273 PersistPermissionChange( const GURL& origin, bool is_allowed) argument
346 ResetAllowedOrigin(const GURL& origin) argument
363 ResetBlockedOrigin(const GURL& origin) argument
[all...]
/external/chromium/chrome/browser/geolocation/
H A Dgeolocation_exceptions_table_model.cc54 : origin(in_origin),
59 GURL origin; member in struct:GeolocationExceptionsTableModel::Entry
81 if ((entry.origin == entry.embedding_origin) &&
84 (j < entries_.size()) && (entries_[j].origin == entry.origin); ++j) {
97 GURL entry_origin(entry->origin); // Copy, not reference, since we'll erase
100 (entries_[row + 1].origin == entry_origin);
123 } while (!next_has_same_origin && (entry->origin == entry_origin) &&
124 (entry->origin == entry->embedding_origin) &&
145 if (entry.origin
236 AddEntriesForOrigin( const GURL& origin, const GeolocationContentSettingsMap::OneOriginSettings& settings) argument
[all...]
/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_impl.cc75 bool BalloonCollectionImpl::RemoveBySourceOrigin(const GURL& origin) { argument
76 return base_.CloseAllBySourceOrigin(origin);
159 gfx::Point origin = layout_.GetLayoutOrigin(); local
163 gfx::Point upper_left = layout_.NextPosition((*it)->GetViewSize(), &origin);
169 // Start from the layout origin.
H A Dnotification_ui_manager.cc181 const GURL& origin = notification.origin_url(); local
191 if (origin == (*iter)->notification().origin_url() &&
204 if (origin == (*balloon_iter)->notification().origin_url() &&
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_installed_bubble.cc340 gfx::Point origin; local
341 views::View::ConvertPointToScreen(reference_view, &origin);
343 bounds.set_origin(origin);

Completed in 597 milliseconds

1234567891011>>