Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseAuthorizer.cpp125 int DatabaseAuthorizer::createTable(const String& tableName) in createTable() argument
131 return denyBasedOnTableName(tableName); in createTable()
134 int DatabaseAuthorizer::createTempTable(const String& tableName) in createTempTable() argument
142 return denyBasedOnTableName(tableName); in createTempTable()
145 int DatabaseAuthorizer::dropTable(const String& tableName) in dropTable() argument
150 return updateDeletesBasedOnTableName(tableName); in dropTable()
153 int DatabaseAuthorizer::dropTempTable(const String& tableName) in dropTempTable() argument
161 return updateDeletesBasedOnTableName(tableName); in dropTempTable()
164 int DatabaseAuthorizer::allowAlterTable(const String&, const String& tableName) in allowAlterTable() argument
170 return denyBasedOnTableName(tableName); in allowAlterTable()
[all …]
DDatabaseAuthorizer.h55 int createTable(const String& tableName);
56 int createTempTable(const String& tableName);
57 int dropTable(const String& tableName);
58 int dropTempTable(const String& tableName);
59 int allowAlterTable(const String& databaseName, const String& tableName);
61 int createIndex(const String& indexName, const String& tableName);
62 int createTempIndex(const String& indexName, const String& tableName);
63 int dropIndex(const String& indexName, const String& tableName);
64 int dropTempIndex(const String& indexName, const String& tableName);
66 int createTrigger(const String& triggerName, const String& tableName);
[all …]
DDatabaseBackendBase.cpp366 String tableName(infoTableName); in performOpenAndVerify() local
367 if (!m_sqliteDatabase.tableExists(tableName)) { in performOpenAndVerify()
370 …if (!m_sqliteDatabase.executeCommand("CREATE TABLE " + tableName + " (key TEXT NOT NULL ON CONFLIC… in performOpenAndVerify()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DDatabaseTableView.js30 WebInspector.DatabaseTableView = function(database, tableName) argument
35 this.tableName = tableName;
59 _escapeTableName: function(tableName) argument
61 return tableName.replace(/\"/g, "\"\"");
66 …this.database.executeSql("SELECT * FROM \"" + this._escapeTableName(this.tableName) + "\"", this._…
76 …w = new WebInspector.EmptyView(WebInspector.UIString("The “%s”\ntable is empty.", this.tableName));
91 …ntent = WebInspector.UIString("An error occurred trying to\nread the “%s” table.", this.tableName);
DResourcesPanel.js481 _showDatabase: function(database, tableName) argument
487 if (tableName) {
493 view = tableViews[tableName];
495 view = new WebInspector.DatabaseTableView(database, tableName);
496 tableViews[tableName] = view;
633 for (var tableName in tableViews) {
634 if (!(tableName in tableNamesHash)) {
635 if (self.visibleView === tableViews[tableName])
637 delete tableViews[tableName];
1358 WebInspector.DatabaseTableTreeElement = function(storagePanel, database, tableName) argument
[all …]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/
Dliblouis.js140 function(tableName, callback) { argument
145 { tableName: tableName, callback: callback }); property
151 this.rpc_('CheckTable', { 'table_name': tableName },
155 this, tableName);
201 this.getTranslator(record.tableName, record.callback);
216 this.getTranslator(record.tableName, record.callback);
255 cvox.LibLouis.Translator = function(instance, tableName) { argument
266 this.tableName_ = tableName;
/external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
DITranslatorService.aidl34 boolean checkTable(String tableName); in checkTable() argument
40 byte[] translate(String text, String tableName); in translate() argument
46 String backTranslate(in byte[] cells, String tableName); in backTranslate() argument
DTranslatorManager.java111 public BrailleTranslator getTranslator(String tableName) { in getTranslator() argument
115 if (localService.checkTable(tableName)) { in getTranslator()
116 return new BrailleTranslatorImpl(tableName); in getTranslator()
/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/fonttools/Lib/fontTools/ttLib/tables/
DotConverters.py15 tableName = name
30 tableName = tp
34 tableClass = tableNamespace.get(tableName)
DotBase.py644 tableName = name if name else self.__class__.__name__
649 xmlWriter.begintag(tableName, attrs)
652 xmlWriter.endtag(tableName)
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
DSimpleFontDataMac.mm272 static CFDataRef copyFontTableForTag(FontPlatformData& platformData, FourCharCode tableName)
274 return CGFontCopyTableForTag(platformData.cgFont(), tableName);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemNumber.java1871 String tableName; in tradAlphaCount() local
/external/chromium_org/chrome/third_party/chromevox/
DchromeVoxChromeOptionsScript.js861 …case cvox.LibLouis.InstanceState.LOADING:this.pendingTranslators_.push({tableName:a,callback:b});b… property
863 ….pendingTranslators_.forEach(goog.bind(function(a){this.getTranslator(a.tableName,a.callback)},thi…
864 ….pendingTranslators_.forEach(goog.bind(function(a){this.getTranslator(a.tableName,a.callback)},thi…
DchromeVoxChromeBackgroundScript.js864 …case cvox.LibLouis.InstanceState.LOADING:this.pendingTranslators_.push({tableName:a,callback:b});b… property
866 ….pendingTranslators_.forEach(goog.bind(function(a){this.getTranslator(a.tableName,a.callback)},thi…
867 ….pendingTranslators_.forEach(goog.bind(function(a){this.getTranslator(a.tableName,a.callback)},thi…