HomeSort by relevance Sort by last modified time
    Searched refs:defaultValue (Results 201 - 225 of 342) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebKit2/UIProcess/
WebUIClient.cpp 127 String WebUIClient::runJavaScriptPrompt(WebPageProxy* page, const String& message, const String& defaultValue, WebFrameProxy* frame)
132 WebString* string = toImpl(m_client.runJavaScriptPrompt(toAPI(page), toAPI(message.impl()), toAPI(defaultValue.impl()), toAPI(frame), m_client.clientInfo));
  /libcore/luni/src/main/java/java/util/
Properties.java 172 * @param defaultValue
176 public String getProperty(String name, String defaultValue) {
183 return defaultValue;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/voice/
VoiceInput.java 391 String gservicesKey, String intentExtraKey, String defaultValue) {
393 String s = SettingsUtil.getSettingsString(cr, gservicesKey, defaultValue);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
SocialProvider.java 225 * {@code defaultValue}.
227 private long getThreadPublished(SQLiteDatabase db, String rawId, long defaultValue) {
229 long threadPublished = defaultValue;
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultDataContext.java 364 public String getValue(String path, String defaultValue) {
  /external/webkit/Source/WebCore/page/
ChromeClient.h 130 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) = 0;
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 101 const WTF::String& defaultValue, WTF::String& result);
ChromeClientImpl.cpp 465 const String& defaultValue,
473 defaultValue,
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 239 bool ChromeClientHaiku::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 88 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
WebEditorClient.mm 575 bool WebEditorClient::canCopyCut(bool defaultValue) const
577 return defaultValue;
580 bool WebEditorClient::canPaste(bool defaultValue) const
582 return defaultValue;
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 401 exist, \a defaultValue is returned.
405 QString QWebElement::attribute(const QString &name, const QString &defaultValue) const
412 return defaultValue;
417 attribute does not exist, \a defaultValue is returned.
421 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const
428 return defaultValue;
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
DOMHTML.idl 601 - (NSString *)defaultValue;
603 HRESULT defaultValue([out, retval] BSTR* result);
606 - (void)setDefaultValue:(NSString *)defaultValue;
823 - (NSString *)defaultValue;
825 HRESULT defaultValue([out, retval] BSTR* result);
828 - (void)setDefaultValue:(NSString *)defaultValue;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 104 virtual bool runJavaScriptPrompt(WebCore::Frame*, const String& message, const String& defaultValue, String& result);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 259 public boolean onJsPrompt(WebView view, String url, String message, String defaultValue,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 347 private String getValue(String valueId, String defaultValue) {
349 if (defaultValue == null) {
350 defaultValue = "";
354 defaultValue, null);
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jst/
util.js 90 * @param {Object} defaultValue The default if the value is not set.
94 function getDefaultObject(value, defaultValue) {
98 return defaultValue;
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/jstemplate/
util.js 90 * @param {Object} defaultValue The default if the value is not set.
94 function getDefaultObject(value, defaultValue) {
98 return defaultValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/
GridModel.java     [all...]
  /external/guava/src/com/google/common/collect/
Iterators.java 290 * defaultValue} if the iterator is empty.
296 Iterator<T> iterator, @Nullable T defaultValue) {
297 return iterator.hasNext() ? getOnlyElement(iterator) : defaultValue;
    [all...]
  /external/libxml2/
legacy.c 989 * @defaultValue: the attribute default value
997 int type, int def, const xmlChar * defaultValue,
1001 xmlSAX2AttributeDecl(ctx, elem, fullname, type, def, defaultValue,
    [all...]
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.mm 265 JSValue ObjcFallbackObjectImp::defaultValue(ExecState* exec, PreferredPrimitiveType) const
  /external/webkit/Source/WebCore/css/
CSSStyleApplyProperty.cpp 119 ApplyPropertyColorBase(const Color& (RenderStyle::*getter)() const, const Color& (RenderStyle::*defaultValue)() const, void (RenderStyle::*setter)(const Color&))
121 , m_defaultValue(defaultValue)
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 282 bool ChromeClientAndroid::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result)
285 return android::WebViewCore::getWebViewCore(frame->view())->jsPrompt(url, message, defaultValue, result);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.cpp 336 bool ChromeClient::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result)
340 g_signal_emit_by_name(m_webView, "script-prompt", kit(frame), message.utf8().data(), defaultValue.utf8().data(), &value, &retval);

Completed in 634 milliseconds

1 2 3 4 5 6 7 891011>>