/external/webkit/Source/WebKit/android/WebCoreSupport/ |
ChromeClientAndroid.h | 108 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
|
/external/webkit/Source/WebKit/chromium/src/ |
EditorClientImpl.cpp | 323 bool EditorClientImpl::canCopyCut(bool defaultValue) const 325 return defaultValue; 328 bool EditorClientImpl::canPaste(bool defaultValue) const 330 return defaultValue; [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
ChromeClientGtk.h | 91 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
|
EditorClientGtk.cpp | 504 bool EditorClient::canCopyCut(bool defaultValue) const 506 return defaultValue; 509 bool EditorClient::canPaste(bool defaultValue) const 511 return defaultValue; [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
ChromeClientQt.h | 108 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
|
/external/webkit/Source/WebKit/win/WebCoreSupport/ |
WebChromeClient.h | 92 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
|
WebEditorClient.cpp | 567 bool WebEditorClient::canCopyCut(bool defaultValue) const 569 return defaultValue; 572 bool WebEditorClient::canPaste(bool defaultValue) const 574 return defaultValue;
|
/external/webkit/Source/WebKit/wince/WebCoreSupport/ |
ChromeClientWinCE.h | 89 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
DumpRenderTreeQt.h | 194 bool javaScriptPrompt(QWebFrame *frame, const QString& msg, const QString& defaultValue, QString* result);
|
/external/webkit/LayoutTests/dom/html/level2/html/ |
HTMLInputElement02.js | 81 Retrieve the defaultValue attribute of the 4th INPUT element and
|
/external/webkit/LayoutTests/dom/xhtml/level2/html/ |
HTMLInputElement02.js | 81 Retrieve the defaultValue attribute of the 4th INPUT element and
|
/external/webkit/Source/WebCore/bridge/ |
runtime_object.cpp | 234 JSValue RuntimeObject::defaultValue(ExecState* exec, PreferredPrimitiveType hint) const 242 JSValue result = instance->defaultValue(exec, hint);
|
/external/webkit/Source/WebKit/qt/Api/ |
qwebelement.h | 84 QString attribute(const QString& name, const QString& defaultValue = QString()) const; 85 QString attributeNS(const QString& namespaceUri, const QString& name, const QString& defaultValue = QString()) const;
|
/external/webkit/Source/WebKit/wx/WebKitSupport/ |
ChromeClientWx.cpp | 303 bool ChromeClientWx::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result) 308 wkEvent.SetResponse(defaultValue);
|
/packages/apps/Camera/src/com/android/camera/panorama/ |
MosaicRendererSurfaceView.java | 204 EGLConfig config, int attribute, int defaultValue) { 209 return defaultValue;
|
/packages/apps/Phone/src/com/android/phone/ |
EditPhoneNumberPreference.java | 389 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) { 391 : (String) defaultValue);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
BaseBuilder.java | 276 * @param defaultValue The default value to return if the property was not found. 279 protected boolean loadProjectBooleanProperty(String propertyName, boolean defaultValue) { 281 return ProjectHelper.loadBooleanProperty(project, propertyName, defaultValue); 329 int severity = marker.getAttribute(IMarker.SEVERITY, -1 /*defaultValue*/);
|
/packages/apps/Calendar/src/com/android/calendar/ |
Utils.java | 202 public static String getSharedPreference(Context context, String key, String defaultValue) { 204 return prefs.getString(key, defaultValue); 207 public static int getSharedPreference(Context context, String key, int defaultValue) { 209 return prefs.getInt(key, defaultValue); 212 public static boolean getSharedPreference(Context context, String key, boolean defaultValue) { 214 return prefs.getBoolean(key, defaultValue); [all...] |
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
WebChromeClient.cpp | 312 bool WebChromeClient::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result) 317 m_page->injectedBundleUIClient().willRunJavaScriptPrompt(m_page, message, defaultValue, webFrame); 319 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::RunJavaScriptPrompt(webFrame->frameID(), message, defaultValue), Messages::WebPageProxy::RunJavaScriptPrompt::Reply(result), m_page->pageID()))
|
/frameworks/base/core/java/android/preference/ |
Preference.java | [all...] |
/cts/tests/tests/webkit/src/android/webkit/cts/ |
WebChromeClientTest.java | 432 String defaultValue, JsPromptResult result) { 433 super.onJsPrompt(view, url, message, defaultValue, result);
|
/external/guava/src/com/google/common/collect/ |
Iterables.java | 217 * defaultValue} if the iterable is empty. 223 Iterable<T> iterable, @Nullable T defaultValue) { 224 return Iterators.getOnlyElement(iterable.iterator(), defaultValue);
|
/external/icu4c/i18n/unicode/ |
calendar.h | [all...] |
/external/webkit/Source/WebCore/page/ |
Chrome.cpp | 313 bool Chrome::runJavaScriptPrompt(Frame* frame, const String& prompt, const String& defaultValue, String& result) 322 bool ok = m_client->runJavaScriptPrompt(frame, frame->displayStringModifiedByEncoding(prompt), frame->displayStringModifiedByEncoding(defaultValue), result);
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
ChromeClientEfl.cpp | 286 bool ChromeClientEfl::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result) 289 ewk_view_run_javascript_prompt(m_view, kit(frame), message.utf8().data(), defaultValue.utf8().data(), &value);
|