HomeSort by relevance Sort by last modified time
    Searched refs:tableName (Results 1 - 22 of 22) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseAuthorizer.h 55 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...]
DatabaseAuthorizer.cpp 125 int DatabaseAuthorizer::createTable(const String& tableName)
131 return denyBasedOnTableName(tableName);
134 int DatabaseAuthorizer::createTempTable(const String& tableName)
142 return denyBasedOnTableName(tableName);
145 int DatabaseAuthorizer::dropTable(const String& tableName)
150 return updateDeletesBasedOnTableName(tableName);
153 int DatabaseAuthorizer::dropTempTable(const String& tableName)
161 return updateDeletesBasedOnTableName(tableName);
164 int DatabaseAuthorizer::allowAlterTable(const String&, const String& tableName)
170 return denyBasedOnTableName(tableName);
    [all...]
Database.cpp 479 String tableName(infoTableName);
480 if (!m_sqliteDatabase.tableExists(tableName)) {
483 if (!m_sqliteDatabase.executeCommand("CREATE TABLE " + tableName + " (key TEXT NOT NULL ON CONFLICT FAIL UNIQUE ON CONFLICT REPLACE,value TEXT NOT NULL ON CONFLICT FAIL);")) {
    [all...]
  /external/chromium_org/third_party/eyesfree/src/android/java/src/com/googlecode/eyesfree/braille/translate/
ITranslatorService.aidl 34 boolean checkTable(String tableName);
37 * Translates text into braille according to the give tableName.
40 byte[] translate(String text, String tableName);
46 String backTranslate(in byte[] cells, String tableName);
TranslatorManager.java 108 * table specified by {@code tableName}.
111 public BrailleTranslator getTranslator(String tableName) {
115 if (localService.checkTable(tableName)) {
116 return new BrailleTranslatorImpl(tableName);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
DatabaseTableView.js 30 WebInspector.DatabaseTableView = function(database, tableName)
35 this.tableName = tableName;
56 * @param {string} tableName
59 _escapeTableName: function(tableName)
61 return tableName.replace(/\"/g, "\"\"");
66 this.database.executeSql("SELECT * FROM \"" + this._escapeTableName(this.tableName) + "\"", this._queryFinished.bind(this), this._queryError.bind(this));
76 this._emptyView = new WebInspector.EmptyView(WebInspector.UIString("The ?%s?\ntable is empty.", this.tableName));
91 errorMsgElement.textContent = WebInspector.UIString("An error occurred trying to\nread the ?%s? table.", this.tableName);
ResourcesPanel.js 500 * @param {string=} tableName
502 _showDatabase: function(database, tableName)
508 if (tableName) {
514 view = tableViews[tableName];
516 view = new WebInspector.DatabaseTableView(database, tableName);
517 tableViews[tableName] = view;
654 for (var tableName in tableViews) {
655 if (!(tableName in tableNamesHash)) {
656 if (self.visibleView === tableViews[tableName])
658 delete tableViews[tableName];
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
TvPermissionTest.java 46 String tableName) throws Exception {
49 fail("Accessing " + tableName + " table should require READ_EPG_DATA permission.");
55 public void verifyInsert(Uri uri, String tableName) throws Exception {
59 fail("Accessing " + tableName + " table should require WRITE_EPG_DATA permission.");
65 public void verifyUpdate(Uri uri, String tableName) throws Exception {
69 fail("Accessing " + tableName + " table should require WRITE_EPG_DATA permission.");
75 public void verifyDelete(Uri uri, String tableName) throws Exception {
78 fail("Accessing " + tableName + " table should require WRITE_EPG_DATA permission.");
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 226 private void createTable(String tableName, String columnNames) {
227 String sql = "Create TABLE " + tableName + " (_id INTEGER PRIMARY KEY, " + columnNames
232 private void addValuesIntoTable(String tableName, int start, int end) {
234 mDatabase.execSQL("INSERT INTO " + tableName + "(number) VALUES ('"
239 private void addValueIntoTable(String tableName, String value) {
240 mDatabase.execSQL("INSERT INTO " + tableName + "(number) VALUES ('" + value + "');");
243 private void deleteValueFromTable(String tableName, String value) {
244 mDatabase.execSQL("DELETE FROM " + tableName + " WHERE number = '" + value + "';");
247 private Cursor getCursor(String tableName, String selection, String[] columnNames) {
248 return mDatabase.query(tableName, columnNames, selection, null, null, null, "number")
    [all...]
MergeCursorTest.java 308 byte[] blob, String tablename) {
314 mDatabase.execSQL("CREATE TABLE " + tablename + " (_id INTEGER PRIMARY KEY,"
318 String sql = "INSERT INTO " + tablename + " (string_text, double_number, int_number,"
322 sql = "INSERT INTO " + tablename + " (string_text) VALUES ('" + COLUMN_FOR_NULL_TEST + "')";
340 private void createTable(String tableName, String columnNames) {
341 String sql = "Create TABLE " + tableName + " (_id INTEGER PRIMARY KEY, " + columnNames
346 private void addValuesIntoTable(String tableName, int start, int end) {
348 mDatabase.execSQL("INSERT INTO " + tableName + "(number_1) VALUES ('"
353 private Cursor getCursor(String tableName, String selection, String[] columnNames) {
354 return mDatabase.query(tableName, columnNames, selection, null, null, null, "number_1")
    [all...]
  /external/javasqlite/src/main/java/SQLite/
Shell.java 24 String tableName;
57 s.tableName = tableName;
156 tableName = "";
160 tableName = Shell.sql_quote_dbl(str);
162 tableName = Shell.sql_quote(str);
262 tname = tableName;
283 tname = tableName;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 219 private void createTable(String tableName, String columnNames) {
220 String sql = "Create TABLE " + tableName + " (_id INTEGER PRIMARY KEY, "
225 private void addValuesIntoTable(String tableName, int start, int end) {
227 mDatabase.execSQL("INSERT INTO " + tableName + "(number_1) VALUES ('" + i + "');");
  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 15 tableName = name
30 tableName = tp
34 tableClass = tableNamespace.get(tableName)
otBase.py 644 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/
SimpleFontDataMac.mm 270 static CFDataRef copyFontTableForTag(FontPlatformData& platformData, FourCharCode tableName)
272 return CGFontCopyTableForTag(platformData.cgFont(), tableName);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/liblouis_nacl/
liblouis.js 47 * @private {!Array.<{tableName: string,
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemNumber.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.test.performance_3.6.0.v20091014.jar 
com.ibm.icu_4.2.1.v20100412.jar 
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 4610 milliseconds