Searched defs:displayName (Results 1 - 25 of 44) sorted by relevance

12

/external/icu4c/common/
H A Ducnvdisp.c36 UChar *displayName, int32_t displayNameCapacity,
48 if(cnv==NULL || displayNameCapacity<0 || (displayNameCapacity>0 && displayName==NULL)) {
68 u_memcpy(displayName, name, uprv_min(length, displayNameCapacity)*U_SIZEOF_UCHAR);
72 u_charsToUChars(cnv->sharedData->staticData->name, displayName, uprv_min(length, displayNameCapacity));
74 return u_terminateUChars(displayName, displayNameCapacity, length, pErrorCode);
34 ucnv_getDisplayName(const UConverter *cnv, const char *displayLocale, UChar *displayName, int32_t displayNameCapacity, UErrorCode *pErrorCode) argument
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressFactoryImpl.java68 * @param displayName - the new string value of the display name of the
72 * unexpectedly while parsing the displayName value.
75 String displayName,
80 if (displayName != null)
81 addressImpl.setDisplayName(displayName);
74 createAddress( String displayName, javax.sip.address.URI uri) argument
H A DAddressImpl.java67 /** displayName field
69 protected String displayName; field in class:AddressImpl
89 else if (that.displayName != null && this.displayName == null)
91 else if (that.displayName == null)
94 return displayName.equalsIgnoreCase(that.displayName)
172 if (displayName != null) {
174 .append(displayName)
179 if (addressType == NAME_ADDR || displayName !
228 setDisplayName(String displayName) argument
[all...]
/external/nist-sip/java/javax/sip/address/
H A DAddressFactory.java9 Address createAddress(String displayName, URI uri) argument
H A DAddress.java8 void setDisplayName(String displayName) throws ParseException; argument
/external/webkit/Source/JavaScriptCore/runtime/
H A DInternalFunction.cpp56 const UString InternalFunction::displayName(ExecState* exec) function in class:JSC::InternalFunction
58 JSValue displayName = getDirect(exec->globalData(), exec->globalData().propertyNames->displayName); local
60 if (displayName && isJSString(&exec->globalData(), displayName))
61 return asString(displayName)->tryGetValue();
68 const UString explicitName = displayName(exec);
H A DJSFunction.cpp116 const UString JSFunction::displayName(ExecState* exec) function in class:JSC::JSFunction
118 JSValue displayName = getDirect(exec->globalData(), exec->globalData().propertyNames->displayName); local
120 if (displayName && isJSString(&exec->globalData(), displayName))
121 return asString(displayName)->tryGetValue();
128 const UString explicitName = displayName(exec);
/external/webkit/Source/WebCore/storage/
H A DDatabaseDetails.h49 DatabaseDetails(const String& databaseName, const String& displayName, unsigned long long expectedUsage, unsigned long long currentUsage) argument
51 , m_displayName(displayName)
61 const String& displayName() const { return m_displayName; } function in class:WebCore::DatabaseDetails
H A DDatabaseSync.cpp49 PassRefPtr<DatabaseSync> DatabaseSync::openDatabaseSync(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, argument
54 if (!DatabaseTracker::tracker().canEstablishDatabase(context, name, displayName, estimatedSize)) {
59 RefPtr<DatabaseSync> database = adoptRef(new DatabaseSync(context, name, expectedVersion, displayName, estimatedSize));
67 DatabaseTracker::tracker().setDatabaseDetails(context->securityOrigin(), name, displayName, estimatedSize);
79 const String& displayName, unsigned long estimatedSize)
80 : AbstractDatabase(context, name, expectedVersion, displayName, estimatedSize)
78 DatabaseSync(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize) argument
H A DDatabase.cpp89 const String& expectedVersion, const String& displayName,
93 if (!DatabaseTracker::tracker().canEstablishDatabase(context, name, displayName, estimatedSize)) {
98 RefPtr<Database> database = adoptRef(new Database(context, name, expectedVersion, displayName, estimatedSize));
106 DatabaseTracker::tracker().setDatabaseDetails(context->securityOrigin(), name, displayName, estimatedSize);
125 Database::Database(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize) argument
126 : AbstractDatabase(context, name, expectedVersion, displayName, estimatedSize)
88 openDatabase(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& e) argument
H A DAbstractDatabase.cpp175 const String& displayName, unsigned long estimatedSize)
179 , m_displayName(displayName.crossThreadString())
343 String AbstractDatabase::displayName() const function in class:WebCore::AbstractDatabase
174 AbstractDatabase(ScriptExecutionContext* context, const String& name, const String& expectedVersion, const String& displayName, unsigned long estimatedSize) argument
H A DDatabaseTracker.cpp132 if (!m_database.executeCommand("CREATE TABLE Databases (guid INTEGER PRIMARY KEY AUTOINCREMENT, origin TEXT, name TEXT, displayName TEXT, estimatedSize INTEGER, path TEXT);")) {
139 bool DatabaseTracker::canEstablishDatabase(ScriptExecutionContext* context, const String& name, const String& displayName, unsigned long estimatedSize) argument
174 details = ProposedDatabase(origin->threadsafeCopy(), DatabaseDetails(name.threadsafeCopy(), displayName.threadsafeCopy(), estimatedSize, 0));
413 String displayName; local
428 SQLiteStatement statement(m_database, "SELECT displayName, estimatedSize FROM Databases WHERE origin=? AND name=?");
443 displayName = statement.getColumnText(0);
447 return DatabaseDetails(name, displayName, expectedUsage, usageForDatabase(name, origin));
450 void DatabaseTracker::setDatabaseDetails(SecurityOrigin* origin, const String& name, const String& displayName, unsigned long estimatedSize) argument
485 SQLiteStatement updateStatement(m_database, "UPDATE Databases SET displayName=?, estimatedSize=? WHERE guid=?");
489 updateStatement.bindText(1, displayName);
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DDatabaseObserver.cpp52 bool DatabaseObserver::canEstablishDatabase(ScriptExecutionContext* scriptExecutionContext, const String& name, const String& displayName, unsigned long estimatedSize) argument
59 return webFrame->client()->allowDatabase(webFrame, name, displayName, estimatedSize);
64 return webWorker->allowDatabase(0, name, displayName, estimatedSize);
H A DWebWorkerClientImpl.h97 virtual bool allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) argument
H A DWebDatabase.cpp48 String displayName() const { return String(); } function in class:WebCore::AbstractDatabase
67 WebString WebDatabase::displayName() const function in class:WebKit::WebDatabase
70 return m_database->displayName();
H A DWebWorkerBase.cpp70 static PassRefPtr<AllowDatabaseMainThreadBridge> create(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
72 return adoptRef(new AllowDatabaseMainThreadBridge(worker, mode, commonClient, frame, name, displayName, estimatedSize));
96 AllowDatabaseMainThreadBridge(WebWorkerBase* worker, const WTF::String& mode, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String& name, const WTF::String& displayName, unsigned long estimatedSize) argument
100 worker->dispatchTaskToMainThread(createCallbackTask(&allowDatabaseTask, commonClient, frame, String(name), String(displayName), estimatedSize, this));
103 static void allowDatabaseTask(WebCore::ScriptExecutionContext* context, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String name, const WTF::String displayName, unsigned long estimatedSize, PassRefPtr<AllowDatabaseMainThreadBridge> bridge) argument
108 bridge->signalCompleted(commonClient->allowDatabase(frame, name, displayName, estimatedSize));
218 bool WebWorkerBase::allowDatabase(WebFrame*, const WebString& name, const WebString& displayName, unsigned long estimatedSize) argument
228 RefPtr<AllowDatabaseMainThreadBridge> bridge = AllowDatabaseMainThreadBridge::create(this, mode, commonClient(), m_webView->mainFrame(), String(name), String(displayName), estimatedSize);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebdatabase.cpp44 as well as a user-friendly name, provided by displayName(). These names are specified when
87 QString QWebDatabase::displayName() const function in class:QWebDatabase
91 return details.displayName();
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_editor_base_controller.h51 @property(nonatomic, copy) NSString* displayName; variable
/external/junit/src/org/junit/runner/
H A DDescription.java94 private Description(final String displayName, Annotation... annotations) { argument
95 fDisplayName= displayName;
/external/webkit/Source/WebCore/storage/chromium/
H A DDatabaseTrackerChromium.cpp59 bool DatabaseTracker::canEstablishDatabase(ScriptExecutionContext* scriptExecutionContext, const String& name, const String& displayName, unsigned long estimatedSize) argument
61 return DatabaseObserver::canEstablishDatabase(scriptExecutionContext, name, displayName, estimatedSize);
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebdatabase.cpp73 gchar* displayName; member in struct:_WebKitWebDatabasePrivate
90 g_free(priv->displayName);
331 WTF::String displayName = details.displayName(); local
333 if (displayName.isEmpty())
336 g_free(priv->displayName);
337 priv->displayName = g_strdup(displayName.utf8().data());
338 return priv->displayName;
/external/webkit/Source/WebKit2/Shared/
H A DWebCoreArgumentCoders.h416 encoder->encode(CoreIPC::In(details.name(), details.displayName(), details.expectedUsage(), details.currentUsage()));
422 String displayName; local
425 if (!decoder->decode(CoreIPC::Out(name, displayName, expectedUsage, currentUsage)))
428 details = WebCore::DatabaseDetails(name, displayName, expectedUsage, currentUsage);
/external/icu4c/test/intltest/
H A Dsvccoll.cpp153 UnicodeString displayName; local
154 Collator::getDisplayName(fu_FU, displayName);
159 if (displayName != "fu (FU)" &&
160 ((defaultLocale == Locale::getKorean() && defaultLocale == Locale::getJapanese()) && displayName == "fu(FU)") &&
161 ((defaultLocale == Locale::getChinese()) && displayName != zh_fuFU)) {
162 errln(UnicodeString("found ") + displayName + " for fu_FU");
165 Collator::getDisplayName(fu_FU, fu_FU, displayName);
166 if (displayName != "fu (FU)" &&
167 ((defaultLocale == Locale::getKorean() && defaultLocale == Locale::getJapanese()) && displayName == "fu(FU)") &&
168 ((defaultLocale == Locale::getChinese()) && displayName !
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A Dutilities.js352 Node.prototype.displayName = nodeDisplayName;
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.cpp293 PassRefPtr<Database> WorkerContext::openDatabase(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
300 return Database::openDatabase(this, name, version, displayName, estimatedSize, creationCallback, ec);
312 PassRefPtr<DatabaseSync> WorkerContext::openDatabaseSync(const String& name, const String& version, const String& displayName, unsigned long estimatedSize, PassRefPtr<DatabaseCallback> creationCallback, ExceptionCode& ec) argument
319 return DatabaseSync::openDatabaseSync(this, name, version, displayName, estimatedSize, creationCallback, ec);

Completed in 5106 milliseconds

12