HomeSort by relevance Sort by last modified time
    Searched defs:Database (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/storage/
Database.h 32 #if ENABLE(DATABASE)
52 class Database : public AbstractDatabase {
54 virtual ~Database();
57 static PassRefPtr<Database> openDatabase(ScriptExecutionContext*, const String& name, const String& expectedVersion, const String& displayName,
91 Database(ScriptExecutionContext*, const String& name, const String& expectedVersion,
118 #endif // ENABLE(DATABASE)
Database.cpp 30 #include "Database.h"
32 #if ENABLE(DATABASE)
67 static PassOwnPtr<DatabaseCreationCallbackTask> create(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> creationCallback)
69 return adoptPtr(new DatabaseCreationCallbackTask(database, creationCallback));
78 DatabaseCreationCallbackTask(PassRefPtr<Database> database, PassRefPtr<DatabaseCallback> callback)
79 : m_database(database)
84 RefPtr<Database> m_database;
88 PassRefPtr<Database> Database::openDatabase(ScriptExecutionContext* context, const String& name
98 RefPtr<Database> database = adoptRef(new Database(context, name, expectedVersion, displayName, estimatedSize)); local
    [all...]
  /external/clang/include/clang/Tooling/
CompilationDatabase.h 21 // compilation database from the root of the build tree.
61 /// A compilation database allows the user to retrieve all compile command lines
69 /// \brief Loads a compilation database from a build directory.
71 /// Looks at the specified 'BuildDirectory' and creates a compilation database
76 /// compilation database for the build directory.
91 /// A compilation database representing the project would return both command
97 /// \brief A compilation database that returns a single compile command line.
150 /// \brief A JSON based compilation database.
152 /// JSON compilation database files must contain a list of JSON objects which
169 /// \brief Loads a JSON compilation database from the specified file
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
Database.js 29 WebInspector.Database = function(id, domain, name, version)
37 WebInspector.Database.prototype = {
97 onError(WebInspector.UIString("Database not found."));
115 var database = new WebInspector.Database(
120 WebInspector.panels.resources.addDatabase(database);
146 InspectorBackend.registerDomainDispatcher("Database", new WebInspector.DatabaseDispatcher());
  /external/javasqlite/src/main/java/SQLite/
Database.java 4 * Main class wrapping an SQLite database.
7 public class Database {
22 * Open an SQLite database file.
24 * @param filename the name of the database file
49 * Open an SQLite database file.
51 * @param filename the name of the database file
78 * Open an SQLite database file.
80 * @param filename the name of the database file
123 * Open SQLite auxiliary database file for temporary
151 * Close the underlying SQLite database file
    [all...]

Completed in 213 milliseconds