Home
last modified time | relevance | path

Searched refs:tableName (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/storage/
DDatabaseAuthorizer.cpp128 int DatabaseAuthorizer::createTable(const String& tableName) in createTable() argument
134 return denyBasedOnTableName(tableName); in createTable()
137 int DatabaseAuthorizer::createTempTable(const String& tableName) in createTempTable() argument
145 return denyBasedOnTableName(tableName); in createTempTable()
148 int DatabaseAuthorizer::dropTable(const String& tableName) in dropTable() argument
153 return updateDeletesBasedOnTableName(tableName); in dropTable()
156 int DatabaseAuthorizer::dropTempTable(const String& tableName) in dropTempTable() argument
164 return updateDeletesBasedOnTableName(tableName); in dropTempTable()
167 int DatabaseAuthorizer::allowAlterTable(const String&, const String& tableName) in allowAlterTable() argument
173 return denyBasedOnTableName(tableName); in allowAlterTable()
[all …]
DDatabaseAuthorizer.h54 int createTable(const String& tableName);
55 int createTempTable(const String& tableName);
56 int dropTable(const String& tableName);
57 int dropTempTable(const String& tableName);
58 int allowAlterTable(const String& databaseName, const String& tableName);
60 int createIndex(const String& indexName, const String& tableName);
61 int createTempIndex(const String& indexName, const String& tableName);
62 int dropIndex(const String& indexName, const String& tableName);
63 int dropTempIndex(const String& indexName, const String& tableName);
65 int createTrigger(const String& triggerName, const String& tableName);
[all …]
/external/webkit/Source/WebCore/inspector/front-end/
DDatabaseTableView.js26 WebInspector.DatabaseTableView = function(database, tableName) argument
31 this.tableName = tableName;
54 …this.database.executeSql("SELECT * FROM " + this.tableName, this._queryFinished.bind(this), this._…
65 … emptyMsgElement.textContent = WebInspector.UIString("The “%s”\ntable is empty.", this.tableName);
80 …ntent = WebInspector.UIString("An error occurred trying to\nread the “%s” table.", this.tableName);
DResourcesPanel.js443 showDatabase: function(database, tableName) argument
449 if (tableName) {
452 view = database._tableViews[tableName];
454 view = new WebInspector.DatabaseTableView(database, tableName);
455 database._tableViews[tableName] = view;
555 for (var tableName in database._tableViews) {
556 if (!(tableName in tableNamesHash)) {
557 if (self.visibleView === database._tableViews[tableName])
559 delete database._tableViews[tableName];
1232 WebInspector.DatabaseTableTreeElement = function(storagePanel, database, tableName) argument
[all …]
/external/javasqlite/src/main/java/SQLite/
DShell.java24 String tableName; field in Shell
57 s.tableName = tableName; in clone()
156 tableName = ""; in set_table_name()
160 tableName = Shell.sql_quote_dbl(str); in set_table_name()
162 tableName = Shell.sql_quote(str); in set_table_name()
262 tname = tableName; in newrow()
283 tname = tableName; in newrow()
/external/webkit/Source/WebCore/platform/graphics/mac/
DSimpleFontDataMac.mm298 static CFDataRef copyFontTableForTag(FontPlatformData& platformData, FourCharCode tableName)
304 if (ATSFontGetTable(atsFont, tableName, 0, 0, NULL, &tableSize) != noErr)
312 …if (ATSFontGetTable(atsFont, tableName, 0, tableSize, CFDataGetMutableBytePtr(data), &tableSize) !…
319 return CGFontCopyTableForTag(platformData.cgFont(), tableName);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java1871 String tableName; in tradAlphaCount() local