/external/chromium_org/third_party/WebKit/public/web/ |
WebWorkerPermissionClientProxy.h | 50 virtual bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize)
|
WebPermissionClient.h | 46 virtual bool allowDatabase(const WebString& name, const WebString& displayName, unsigned long estimatedSize) { return true; }
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
WindowWebDatabase.idl | 31 [MeasureAs=OpenWebDatabase, LogActivity, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
|
DOMWindowWebDatabase.h | 44 static PassRefPtrWillBeRawPtr<Database> openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState&);
|
DOMWindowWebDatabase.cpp | 43 PassRefPtrWillBeRawPtr<Database> DOMWindowWebDatabase::openDatabase(LocalDOMWindow& window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState& exceptionState) 53 database = dbManager.openDatabase(window.document(), name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
|
DatabaseClient.h | 51 virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) = 0;
|
DatabaseManager.h | 66 PassRefPtrWillBeRawPtr<Database> openDatabase(ExecutionContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, DatabaseCallback*, DatabaseError&, String& errorMessage); 83 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError&, String& errorMessage);
|
DatabaseTracker.h | 57 bool canEstablishDatabase(DatabaseContext*, const String& name, const String& displayName, unsigned long estimatedSize, DatabaseError&);
|
DatabaseManager.cpp | 163 unsigned long estimatedSize, bool setVersionInNewDatabase, DatabaseError& error, String& errorMessage) 168 if (DatabaseTracker::tracker().canEstablishDatabase(backendContext, name, displayName, estimatedSize, error)) { 169 RefPtrWillBeRawPtr<Database> backend = adoptRefWillBeNoop(new Database(backendContext, name, expectedVersion, displayName, estimatedSize)); 192 unsigned long estimatedSize, DatabaseCallback* creationCallback, 199 expectedVersion, displayName, estimatedSize, setVersionInNewDatabase, error, errorMessage);
|
Database.h | 91 unsigned long estimatedSize() const; 121 Database(DatabaseContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
|
DatabaseTracker.cpp | 71 bool DatabaseTracker::canEstablishDatabase(DatabaseContext* databaseContext, const String& name, const String& displayName, unsigned long estimatedSize, DatabaseError& error) 74 bool success = DatabaseClient::from(executionContext)->allowDatabase(executionContext, name, displayName, estimatedSize); 177 database->estimatedSize());
|
Database.cpp | 199 Database::Database(DatabaseContext* databaseContext, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize) 204 , m_estimatedSize(estimatedSize) 569 unsigned long Database::estimatedSize() const [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
DatabaseClientImpl.cpp | 50 bool DatabaseClientImpl::allowDatabase(ExecutionContext* executionContext, const String& name, const String& displayName, unsigned long estimatedSize) 58 return webFrame->permissionClient()->allowDatabase(name, displayName, estimatedSize);
|
DatabaseClientImpl.h | 46 virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) OVERRIDE;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebDatabaseObserver.h | 46 unsigned long estimatedSize) = 0;
|
/external/chromium_org/third_party/icu/source/i18n/ |
ucol_tok.cpp | [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebSettingsTest.java | 709 long estimatedSize, long total, WebStorage.QuotaUpdater updater) { 710 updater.updateQuota(estimatedSize); [all...] |
/external/guava/guava/src/com/google/common/collect/ |
Lists.java | 180 * @param estimatedSize an estimate of the eventual {@link List#size()} of 184 * @throws IllegalArgumentException if {@code estimatedSize} is negative 188 int estimatedSize) { 189 return new ArrayList<E>(computeArrayListCapacity(estimatedSize));
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/ |
compiler.jar | |
/external/owasp/sanitizer/distrib/lib/ |
guava.jar | |
/external/owasp/sanitizer/lib/guava-libraries/ |
guava.jar | |