HomeSort by relevance Sort by last modified time
    Searched refs:Database (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseCallback.h 36 class Database;
42 virtual bool handleEvent(Database*) = 0;
DatabaseCallback.idl 30 boolean handleEvent(Database database);
31 boolean handleEvent(DatabaseSync database);
WorkerGlobalScopeWebDatabase.idl 28 [RuntimeEnabled=Database, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
30 [RuntimeEnabled=Database, RaisesException] DatabaseSync openDatabaseSync(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
SQLStatement.h 42 class Database;
50 static PassOwnPtr<SQLStatement> create(Database*,
61 SQLStatement(Database*, PassOwnPtr<SQLStatementCallback>, PassOwnPtr<SQLStatementErrorCallback>);
WindowWebDatabase.idl 30 [RuntimeEnabled=Database, MeasureAs=OpenWebDatabase, PerWorldBindings, ActivityLogging=ForIsolatedWorlds, RaisesException] Database openDatabase(DOMString name, DOMString version, DOMString displayName, unsigned long estimatedSize, optional DatabaseCallback creationCallback);
DOMWindowWebDatabase.h 38 class Database;
45 static PassRefPtr<Database> openDatabase(DOMWindow*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
WorkerGlobalScopeWebDatabase.h 37 class Database;
45 static PassRefPtr<Database> openDatabase(WorkerGlobalScope*, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState&);
Database.cpp 30 #include "modules/webdatabase/Database.h"
60 PassRefPtr<Database> Database::create(ExecutionContext*, PassRefPtr<DatabaseBackendBase> backend)
63 // frontend database as its own the backend. When we split the 2 apart,
66 return static_cast<Database*>(backend.get());
69 Database::Database(PassRefPtr<DatabaseContext> databaseContext,
106 Database::~Database()
118 Database* Database::from(DatabaseBackend* backend
    [all...]
Database.h 51 class Database : public DatabaseBase, public DatabaseBackend, public ScriptWrappable {
53 virtual ~Database();
62 static Database* from(DatabaseBackend*);
74 Database(PassRefPtr<DatabaseContext>, const String& name,
77 static PassRefPtr<Database> create(ExecutionContext*, PassRefPtr<DatabaseBackendBase>);
SQLTransaction.h 43 class Database;
55 static PassRefPtr<SQLTransaction> create(Database*, PassOwnPtr<SQLTransactionCallback>,
64 Database* database() { return m_database.get(); } function in class:WebCore::SQLTransaction
69 SQLTransaction(Database*, PassOwnPtr<SQLTransactionCallback>,
98 RefPtr<Database> m_database;
DOMWindowWebDatabase.cpp 36 #include "modules/webdatabase/Database.h"
43 PassRefPtr<Database> DOMWindowWebDatabase::openDatabase(DOMWindow* window, const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassOwnPtr<DatabaseCallback> creationCallback, ExceptionState& exceptionState)
48 RefPtr<Database> database = 0;
53 database = dbManager.openDatabase(window->document(), name, version, displayName, estimatedSize, creationCallback, error, errorMessage);
54 ASSERT(database || error != DatabaseError::None);
61 return database;
Database.idl 31 ] interface Database {
DatabaseBackend.h 36 class Database;
44 // for the split out of the Database backend to be done later. This
78 friend class Database;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDatabaseResource.h 41 class Database;
46 static PassRefPtr<InspectorDatabaseResource> create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version);
48 void bind(InspectorFrontend::Database*);
49 Database* database() { return m_database.get(); } function in class:WebCore::InspectorDatabaseResource
50 void setDatabase(PassRefPtr<Database> database) { m_database = database; }
54 InspectorDatabaseResource(PassRefPtr<Database>, const String& domain, const String& name, const String& version)
    [all...]
InspectorDatabaseResource.cpp 35 #include "modules/webdatabase/Database.h"
41 PassRefPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
43 return adoptRef(new InspectorDatabaseResource(database, domain, name, version));
46 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
47 : m_database(database)
55 void InspectorDatabaseResource::bind(InspectorFrontend::Database* frontend)
57 RefPtr<TypeBuilder::Database::Database> jsonObject = TypeBuilder::Database::Database::create(
    [all...]
InspectorDatabaseAgent.h 40 class Database;
70 String databaseId(Database*);
72 void didOpenDatabase(PassRefPtr<Database>, const String& domain, const String& name, const String& version);
76 Database* databaseForId(const String& databaseId);
79 InspectorFrontend::Database* m_frontend;
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui_util.h 8 #include "chrome/browser/performance_monitor/database.h"
13 typedef std::vector<Database::MetricVector> VectorOfMetricVectors;
28 // of all intervals for which the database was active for the span to
32 const Database::MetricVector* metrics,
46 virtual scoped_ptr<Database::MetricVector> AggregateInterval(
48 Database::MetricVector::const_iterator* metric,
49 const Database::MetricVector::const_iterator& metric_end,
58 virtual scoped_ptr<Database::MetricVector> AggregateInterval(
60 Database::MetricVector::const_iterator* metric,
61 const Database::MetricVector::const_iterator& metric_end
    [all...]
performance_monitor_ui_util.cc 40 const Database::MetricVector* metrics,
46 Database::MetricVector::const_iterator metric = metrics->begin();
70 scoped_ptr<Database::MetricVector> NoAggregation::AggregateInterval(
72 Database::MetricVector::const_iterator* metric,
73 const Database::MetricVector::const_iterator& metric_end,
77 scoped_ptr<Database::MetricVector> aggregated_series(
78 new Database::MetricVector());
86 scoped_ptr<Database::MetricVector> MedianAggregation::AggregateInterval(
88 Database::MetricVector::const_iterator* metric,
89 const Database::MetricVector::const_iterator& metric_end
    [all...]
performance_monitor_ui_util_unittest.cc 21 scoped_ptr<Database::MetricVector> AggregateSingleInterval(
23 const Database::MetricVector* metrics,
28 Database::MetricVector::const_iterator metric = metrics->begin();
45 return scoped_ptr<Database::MetricVector>();
53 Database::MetricVector metric_vector;
59 scoped_ptr<Database::MetricVector> aggregated_metric =
80 Database::MetricVector metric_vector;
82 Database::MetricVector aggregated_metric =
110 Database::MetricVector metric_vector;
119 Database::MetricVector aggregated_metric
    [all...]
  /libcore/luni/src/test/java/libcore/sqlite/
OldExceptionTest.java 19 import SQLite.Database;
24 private Database db = null;
28 db = new Database();
  /packages/apps/Nfc/nci/jni/
RouteDataSet.h 161 typedef std::vector<RouteData*> Database;
193 ** Description: Import data from an XML file. Fill the database.
205 ** Description: Obtain a database of routing data.
206 ** selection: which database.
208 ** Returns: Pointer to database.
211 Database* getDatabase (DatabaseSelection selection);
263 Database mSecElemRouteDatabase; //routes when NFC service selects sec elem
264 Database mDefaultRouteDatabase; //routes when NFC service deselects sec elem
287 ** database: store data in this database
    [all...]
  /external/clang/include/clang/Tooling/
JSONCompilationDatabase.h 33 /// \brief A JSON based compilation database.
35 /// JSON compilation database files must contain a list of JSON objects which
52 /// \brief Loads a JSON compilation database from the specified file.
54 /// Returns NULL and sets ErrorMessage if the database could not be
59 /// \brief Loads a JSON compilation database from a data buffer.
61 /// Returns NULL and sets ErrorMessage if the database could not be loaded.
73 /// \brief Returns the list of all files available in the compilation database.
79 /// database.
83 /// \brief Constructs a JSON compilation database on a memory buffer.
84 JSONCompilationDatabase(llvm::MemoryBuffer *Database)
    [all...]
  /external/chromium_org/components/dom_distiller/core/
dom_distiller_database.h 51 // |entries_to_remove| from the database. |callback| will be invoked on the UI
57 // Asynchronously loads all entries from the database and invokes |callback|
67 // The underlying database. Calls to this type may be blocking.
68 class Database {
74 virtual ~Database() {}
79 class LevelDB : public Database {
106 // Allow callers to provide their own Database implementation.
107 void InitWithDatabase(scoped_ptr<Database> database,
117 scoped_ptr<Database> db_
    [all...]
  /external/chromium_org/chrome/browser/performance_monitor/
database_unittest.cc 13 #include "chrome/browser/performance_monitor/database.h"
28 // A class which is friended by Database, in order to hold the private methods
32 explicit DatabaseTestHelper(Database* database) : database_(database) { }
37 // Override the check for a metric's validity and insert it in the database.
52 // Writes an invalid event to the database; since events are stored as JSON
69 // Returns the number of entries in a given database.
79 Database* database_;
83 class TestingClock : public Database::Clock
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 31 expectFailure("", "Empty database");
45 OwningPtr<CompilationDatabase> Database(
47 if (!Database) {
51 return Database->getAllFiles();
56 OwningPtr<CompilationDatabase> Database(
58 if (!Database) {
62 return Database->getAllCompileCommands();
118 OwningPtr<CompilationDatabase> Database(
120 if (!Database)
122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName)
    [all...]

Completed in 580 milliseconds

1 2 3 4 5