Searched refs:tableName (Results 1 - 25 of 25) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A 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...]
H A DDatabaseAuthorizer.cpp126 int DatabaseAuthorizer::createTable(const String& tableName) argument
132 return denyBasedOnTableName(tableName);
135 int DatabaseAuthorizer::createTempTable(const String& tableName) argument
143 return denyBasedOnTableName(tableName);
146 int DatabaseAuthorizer::dropTable(const String& tableName) argument
151 return updateDeletesBasedOnTableName(tableName);
154 int DatabaseAuthorizer::dropTempTable(const String& tableName) argument
162 return updateDeletesBasedOnTableName(tableName);
165 int DatabaseAuthorizer::allowAlterTable(const String&, const String& tableName) argument
171 return denyBasedOnTableName(tableName);
174 createIndex(const String&, const String& tableName) argument
183 createTempIndex(const String&, const String& tableName) argument
194 dropIndex(const String&, const String& tableName) argument
202 dropTempIndex(const String&, const String& tableName) argument
213 createTrigger(const String&, const String& tableName) argument
222 createTempTrigger(const String&, const String& tableName) argument
233 dropTrigger(const String&, const String& tableName) argument
241 dropTempTrigger(const String&, const String& tableName) argument
286 createVTable(const String& tableName, const String& moduleName) argument
299 dropVTable(const String& tableName, const String& moduleName) argument
311 allowDelete(const String& tableName) argument
319 allowInsert(const String& tableName) argument
329 allowUpdate(const String& tableName, const String&) argument
343 allowRead(const String& tableName, const String&) argument
356 allowAnalyze(const String& tableName) argument
426 updateDeletesBasedOnTableName(const String& tableName) argument
[all...]
H A DDatabaseBackendBase.cpp348 String tableName(infoTableName);
349 if (!m_sqliteDatabase.tableExists(tableName)) {
352 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);")) {
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DDatabaseTableView.js30 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);
H A DResourcesPanel.js451 * @param {string=} tableName
453 _showDatabase: function(database, tableName)
459 if (tableName) {
465 view = tableViews[tableName];
467 view = new WebInspector.DatabaseTableView(database, tableName);
468 tableViews[tableName] = view;
598 for (var tableName in tableViews) {
599 if (!(tableName in tableNamesHash)) {
600 if (self.visibleView === tableViews[tableName])
602 delete tableViews[tableName];
[all...]
/macosx-10.9.5/Security-55471.14.18/include/security_keychain/
H A DSecFrameworkP.h42 CFStringRef tableName);
H A DSecFrameworkP.c83 CFStringRef tableName) {
87 tableName);
82 SecFrameworkCopyLocalizedString(CFStringRef key, CFStringRef tableName) argument
H A DSecBase.cpp30 static CFStringRef copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName);
126 copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName) argument
144 errorString = CFCopyLocalizedStringFromTableInBundle(keyString,tableName,secBundle,NULL);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/Security/
H A DSecFrameworkP.h42 CFStringRef tableName);
H A DSecFrameworkP.c83 CFStringRef tableName) {
87 tableName);
82 SecFrameworkCopyLocalizedString(CFStringRef key, CFStringRef tableName) argument
H A DSecBase.cpp30 static CFStringRef copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName);
126 copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName) argument
144 errorString = CFCopyLocalizedStringFromTableInBundle(keyString,tableName,secBundle,NULL);
/macosx-10.9.5/Security-55471.14.18/libsecurity_keychain/lib/
H A DSecFrameworkP.h42 CFStringRef tableName);
H A DSecFrameworkP.c83 CFStringRef tableName) {
87 tableName);
82 SecFrameworkCopyLocalizedString(CFStringRef key, CFStringRef tableName) argument
H A DSecBase.cpp30 static CFStringRef copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName);
126 copyErrorMessageFromBundle(OSStatus status,CFStringRef tableName) argument
144 errorString = CFCopyLocalizedStringFromTableInBundle(keyString,tableName,secBundle,NULL);
/macosx-10.9.5/Security-55471.14.18/sec/Security/
H A DSecFramework.h44 CFStringRef tableName);
H A DSecFramework.c65 CFStringRef tableName) {
69 tableName);
64 SecFrameworkCopyLocalizedString(CFStringRef key, CFStringRef tableName) argument
/macosx-10.9.5/cddafs-252/Classes/
H A DTBundle.cpp93 CFStringRef tableName )
98 if ( tableName == NULL )
100 tableName = CFSTR ( kLocalizableString );
105 fLocalizationDictionaryForTable = CopyLocalizationDictionaryForTable ( tableName );
H A DTBundle.h78 CFStringRef tableName );
/macosx-10.9.5/vim-53/runtime/tools/
H A Dunicode.vim192 func! BuildWidthTable(pattern, tableName)
245 exe "file " . a:tableName
246 call setline(1, " static struct interval " . a:tableName . "[] =")
/macosx-10.9.5/configd-596.15/SystemConfiguration.fproj/
H A DSCDPrivate.c881 _SC_CFBundleCopyNonLocalizedString(CFBundleRef bundle, CFStringRef key, CFStringRef value, CFStringRef tableName) argument
890 if ((tableName == NULL) || CFEqual(tableName, CFSTR(""))) tableName = CFSTR("Localizable");
894 * URL to <bundle>/Resources/English.lproj/<tableName>.strings. Do this
906 NULL, NULL, CFSTR("%@.strings"), tableName);
937 tableName,
H A DSCPrivate.h731 CFStringRef tableName);
/macosx-10.9.5/CF-855.17/
H A DCFBundle.h170 CFStringRef CFBundleCopyLocalizedString(CFBundleRef bundle, CFStringRef key, CFStringRef value, CFStringRef tableName) CF_FORMAT_ARGUMENT(2);
H A DCFBundle_Resources.c2270 CF_EXPORT CFStringRef CFBundleCopyLocalizedString(CFBundleRef bundle, CFStringRef key, CFStringRef value, CFStringRef tableName) { argument
2280 if (!tableName || CFEqual(tableName, CFSTR(""))) tableName = _CFBundleDefaultStringTableName;
2284 stringTable = (CFDictionaryRef)CFDictionaryGetValue(__CFBundleGetResourceData(bundle)->_stringTableCache, tableName);
2291 CFURLRef tableURL = CFBundleCopyResourceURL(bundle, tableName, _CFBundleStringTableType, NULL);
2320 if (!CFStringHasSuffix(tableName, CFSTR(".nocache")) || !_CFExecutableLinkedOnOrAfter(CFSystemVersionLeopard)) {
2323 CFDictionarySetValue(__CFBundleGetResourceData(bundle)->_stringTableCache, tableName, stringTable);
2340 CFLog(__kCFLogBundle, CFSTR("Localizable string \"%@\" not found in strings table \"%@\" of bundle %@."), key, tableName, bundle);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DSimpleFontDataMac.mm229 static CFDataRef copyFontTableForTag(FontPlatformData& platformData, FourCharCode tableName)
231 return CGFontCopyTableForTag(platformData.cgFont(), tableName);
/macosx-10.9.5/Security-55471.14.18/libsecurity_authorization/lib/
H A DAuthorization.c558 CFStringRef tableName)
623 CFURLRef locURL = CFBundleCopyResourceURLForLocalization(clientBundle, tableName ? tableName : CFSTR("Localizable"), CFSTR("strings"), NULL /*subDirName*/, oneLocalization);
553 AuthorizationRightSet(AuthorizationRef authRef, const char *rightName, CFTypeRef rightDefinition, CFStringRef descriptionKey, CFBundleRef bundle, CFStringRef tableName) argument

Completed in 149 milliseconds