HomeSort by relevance Sort by last modified time
    Searched full:origins (Results 26 - 50 of 188) sorted by null

12 3 4 5 6 7 8

  /frameworks/base/core/java/android/webkit/
WebStorageClassic.java 46 private static final String ORIGINS = "origins";
70 Map origins = (Map) values.get(ORIGINS);
72 callback.onReceiveValue(origins);
120 Map origins = new HashMap(mOrigins);
123 values.put(ORIGINS, origins);
191 * Returns a list of origins having a database
GeolocationPermissions.java 74 * Gets the set of origins for which Geolocation permissions are stored.
80 * Strings containing the origins for which Geolocation
83 // Note that we represent the origins as strings. These are created using
85 // (Database, Geolocation etc) do so, it's safe to match up origins based
125 * Clears the Geolocation permission state for all origins.
  /external/chromium/chrome/browser/content_settings/
content_settings_notification_provider.h 77 // Returns all origins that explicitly have been allowed.
80 // Returns all origins that explicitly have been denied.
97 // Clears the sets of explicitly allowed and denied origins.
  /external/webkit/Tools/DumpRenderTree/
StorageTrackerDelegate.mm 61 NSArray *origins = [[WebStorageManager sharedWebStorageManager] origins];
62 for (WebSecurityOrigin *origin in origins)
  /external/webkit/Source/WebCore/storage/
StorageTracker.cpp 123 if (!m_database.tableExists("Origins")) {
124 if (!m_database.executeCommand("CREATE TABLE Origins (origin TEXT UNIQUE ON CONFLICT REPLACE, path TEXT);"))
125 LOG_ERROR("Failed to create Origins table.");
156 SQLiteStatement statement(m_database, "SELECT origin FROM Origins");
171 LOG_ERROR("Failed to read in all origins from the database.");
286 SQLiteStatement statement(m_database, "INSERT INTO Origins VALUES (?, ?)");
311 void StorageTracker::origins(Vector<RefPtr<SecurityOrigin> >& result) function in class:WebCore::StorageTracker
355 SQLiteStatement statement(m_database, "SELECT origin, path FROM Origins");
376 LOG_ERROR("Failed to read in all origins from the database.");
387 SQLiteStatement deleteStatement(m_database, "DELETE FROM Origins");
    [all...]
  /external/chromium/chrome/browser/
browsing_data_database_helper_browsertest.cc 47 std::vector<webkit_database::OriginInfo> origins; local
48 db_tracker->GetAllOriginsInfo(&origins);
49 ASSERT_EQ(2U, origins.size());
  /external/webkit/Source/WebKit/android/jni/
GeolocationPermissionsBridge.cpp 44 GeolocationPermissions::OriginSet origins = GeolocationPermissions::getOrigins(); local
52 GeolocationPermissions::OriginSet::const_iterator end = origins.end();
53 for (GeolocationPermissions::OriginSet::const_iterator iter = origins.begin(); iter != end; ++iter) {
  /external/webkit/Source/WebKit/mac/Storage/
WebDatabaseManagerPrivate.h 54 - (NSArray *)origins;
62 - (void)deleteAllDatabases; // Deletes all databases and all origins.
WebStorageManager.mm 51 - (NSArray *)origins
55 StorageTracker::tracker().origins(coreOrigins);
WebStorageManagerPrivate.h 36 - (NSArray *)origins;
WebDatabaseManager.mm 62 - (NSArray *)origins
65 DatabaseTracker::tracker().origins(coreOrigins);
  /external/webkit/Source/WebKit2/UIProcess/
WebResourceCacheManagerProxy.cpp 75 void WebResourceCacheManagerProxy::didGetCacheOrigins(const Vector<SecurityOriginData>& origins, uint64_t callbackID)
78 performAPICallbackWithSecurityOriginDataVector(origins, callback.get());
  /external/chromium/chrome/browser/extensions/
extension_special_storage_policy.h 20 // to determine which origins have these rights.
extension_process_manager_unittest.cc 42 // Extensions with common origins ("scheme://id/") should be grouped in the
  /external/chromium/chrome/browser/notifications/
desktop_notification_service.h 99 // The default content setting determines how to handle origins that haven't
108 // Returns all origins that explicitly have been allowed.
111 // Returns all origins that explicitly have been denied.
120 // Clears the sets of explicitly allowed and denied origins.
  /external/valgrind/main/memcheck/tests/darwin/
aio.stderr.exp 22 Use --track-origins=yes to see where uninitialised values come from
  /external/valgrind/main/memcheck/tests/
partiallydefinedeq.stderr.exp 18 Use --track-origins=yes to see where uninitialised values come from
partiallydefinedeq.stderr.exp2 23 Use --track-origins=yes to see where uninitialised values come from
partiallydefinedeq.stderr.exp3 19 Use --track-origins=yes to see where uninitialised values come from
partiallydefinedeq.stderr.exp4 23 Use --track-origins=yes to see where uninitialised values come from
origin4-many.c 14 An important question is: which of the origins is reported in the
31 // different origins.
  /external/webkit/LayoutTests/storage/domstorage/localstorage/storagetracker/
storage-tracker-2-create.html 11 description("StorageTracker test - write local storage for this origin. Should be called after origins-prepare.html.");
  /external/chromium/chrome/browser/geolocation/
geolocation_exceptions_table_model.cc 40 // Sort by port number. This has to differ if the origins are really origins
196 // Sort top-level requesting origins, keeping all embedded (child) rules
215 // The rows are in different origins. We need to find out how the top-level
216 // origins will compare.
  /external/clang/test/Driver/
fsanitize.c 65 // RUN: %clang -target x86_64-linux-gnu -fsanitize-memory-track-origins -pie %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-ONLY-TRACK-ORIGINS
66 // CHECK-ONLY-TRACK-ORIGINS: warning: argument unused during compilation: '-fsanitize-memory-track-origins'
68 // RUN: %clang -target x86_64-linux-gnu -fsanitize=address %s -### 2>&1 | FileCheck %s --check-prefix=CHECK-NO-EXTRA-TRACK-ORIGINS
69 // CHECK-NO-EXTRA-TRACK-ORIGINS-NOT: "-fsanitize-memory-track-origins"
80 // RUN: %clang -target x86_64-linux-gnu -fsanitize=memory -fsanitize-memory-track-origins -pie %s -### 2>&1
  /external/webkit/Source/WebCore/page/
SecurityOrigin.h 126 // origins.
146 // about:blank. Empty origins differ from unique origins in that they can
147 // sometimes be replaced by non-empty origins, for example when an

Completed in 2814 milliseconds

12 3 4 5 6 7 8