HomeSort by relevance Sort by last modified time
    Searched full:estimatedsize (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/gpu/command_buffer/service/
renderbuffer_manager.cc 41 size_t Renderbuffer::EstimatedSize() {
97 memory_tracker_->TrackMemFree(renderbuffer->EstimatedSize());
107 memory_tracker_->TrackMemFree(renderbuffer->EstimatedSize());
109 memory_tracker_->TrackMemAlloc(renderbuffer->EstimatedSize());
renderbuffer_manager.h 70 size_t EstimatedSize();
renderbuffer_manager_unittest.cc 134 EXPECT_EQ(0u, renderbuffer1->EstimatedSize());
149 EXPECT_EQ(kWidth * kHeight * 4u * 4u, renderbuffer1->EstimatedSize());
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
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);
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);
WindowWebDatabase.idl 31 [MeasureAs=OpenWebDatabase, LogActivity, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
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);
DOMWindowWebDatabase.h 44 static PassRefPtrWillBeRawPtr<Database> openDatabase(LocalDOMWindow&, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, DatabaseCallback* creationCallback, ExceptionState&);
DatabaseClient.h 51 virtual bool allowDatabase(ExecutionContext*, const String& name, const String& displayName, unsigned long estimatedSize) = 0;
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.h 91 unsigned long estimatedSize() const;
121 Database(DatabaseContext*, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize);
DatabaseTracker.h 57 bool canEstablishDatabase(DatabaseContext*, const String& name, const String& displayName, unsigned long estimatedSize, DatabaseError&);
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;
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 214 * @param estimatedSize the estimated size of a new database, or 0 if
222 String databaseIdentifier, long currentQuota, long estimatedSize,
261 // If we cannot satisfy the estimatedSize, we should return 0 as
264 if (totalUnusedQuota >= estimatedSize) {
265 newOriginQuota = estimatedSize;
270 " estimatedSize for the new database " +
271 " (estimatedSize: " + estimatedSize +
281 // Increase the quota. If estimatedSize == 0, then this is a quota overflow
283 long quotaIncrease = estimatedSize == 0
    [all...]
  /packages/apps/Browser/tests/src/com/android/browser/
TestWebChromeClient.java 135 long currentQuota, long estimatedSize, long totalUsedQuota,
138 estimatedSize, totalUsedQuota, quotaUpdater);
WebStorageSizeManagerUnitTests.java 130 assertEquals(0, mNewQuota); // We cannot satisfy the estimatedSize
  /external/chromium_org/third_party/WebKit/public/platform/
WebDatabaseObserver.h 46 unsigned long estimatedSize) = 0;
  /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; }
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/ui/
ExportDialog.java 196 String estimatedSize = "" + size + " Mb";
197 mEstimatedSize.setText(estimatedSize);
  /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));
  /cts/tests/tests/webkit/src/android/webkit/cts/
WebSettingsTest.java 709 long estimatedSize, long total, WebStorage.QuotaUpdater updater) {
710 updater.updateQuota(estimatedSize);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
ucol_tok.cpp     [all...]

Completed in 1902 milliseconds

1 2