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

1 2 3 4 56 7 8 91011>>

  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 163 bool EditorClientEfl::canCopyCut(bool defaultValue) const
165 return defaultValue;
168 bool EditorClientEfl::canPaste(bool defaultValue) const
170 return defaultValue;
ChromeClientEfl.h 91 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 162 bool EditorClientWinCE::canCopyCut(bool defaultValue) const
164 return defaultValue;
167 bool EditorClientWinCE::canPaste(bool defaultValue) const
169 return defaultValue;
  /external/webkit/Source/WebKit/wince/
WebView.h 76 bool runJavaScriptPrompt(const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 316 bool EditorClientWx::canCopyCut(bool defaultValue) const
318 return defaultValue;
321 bool EditorClientWx::canPaste(bool defaultValue) const
323 return defaultValue;
ChromeClientWx.h 97 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
  /libcore/luni/src/main/java/java/lang/
System.java 206 private static String getenv(String name, String defaultValue) {
211 return (value != null) ? value : defaultValue;
411 * defaultValue} will be returned if no such property has been found.
415 * @param defaultValue
419 * defaultValue} if the property does not exist.
421 public static String getProperty(String prop, String defaultValue) {
425 return getProperties().getProperty(prop, defaultValue);
  /external/icu4c/tools/makeconv/
gencnvex.c 405 * then defaultValue=compute the mapping result for this whole sequence
406 * else defaultValue=0
413 uint32_t defaultValue) {
468 *section++=((uint32_t)count<<UCNV_EXT_TO_U_BYTE_SHIFT)|defaultValue;
510 defaultValue=0;
524 defaultValue=getToUnicodeValue(extData, table, m);
529 section[j]|=defaultValue;
535 if(!generateToUTable(extData, table, subStart, subLimit, unitIndex+1, defaultValue)) {
710 uint32_t defaultValue) {
752 *sectionValues++=defaultValue;
    [all...]
  /external/webkit/Source/WebCore/html/
RangeInputType.cpp 229 double RangeInputType::parseToDouble(const String& src, double defaultValue) const
233 return defaultValue;
271 return serializeForNumberType(StepRange(element()).defaultValue());
  /packages/apps/Browser/tests/src/com/android/browser/
JNIBindingsTestApp.java 191 String defaultValue, JsPromptResult result) {
193 "Giving default value '%s'", message, url, defaultValue);
195 result.confirm(defaultValue);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 309 if (!TextUtils.isEmpty(column.defaultValue)) {
311 sql.append(column.defaultValue);
497 info.fullText(), info.defaultValue(), field, index));
508 public final String defaultValue;
513 boolean fullText, String defaultValue, Field field, int projectionIndex) {
518 this.defaultValue = defaultValue;
  /frameworks/base/core/java/android/content/
Intent.java     [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 656 * least 1 row. Otherwise returns {@code defaultValue}.
660 int column, T defaultValue, CursorGetter<T> getter) {
674 return defaultValue;
691 Long defaultValue) {
693 sortOrder, column, defaultValue, LONG_GETTER);
710 Integer defaultValue) {
712 sortOrder, column, defaultValue, INT_GETTER);
729 String defaultValue) {
731 sortOrder, column, defaultValue, STRING_GETTER);
739 byte[] defaultValue) {
    [all...]
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
CommandLineProcessor.java 744 * @param defaultValue The default value (or values), which depends on the selected {@link Mode}.
753 Object defaultValue) {
761 mDefaultValue = defaultValue;
763 if (defaultValue instanceof String[]) {
764 mCurrentValue = ((String[])defaultValue)[0];
    [all...]
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 107 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const = 0;
  /external/webkit/Source/WebCore/bridge/objc/
objc_runtime.h 118 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
  /external/webkit/Source/WebCore/loader/
EmptyClients.h 476 virtual bool canCopyCut(bool defaultValue) const { return defaultValue; }
477 virtual bool canPaste(bool defaultValue) const { return defaultValue; }
  /external/webkit/Source/WebCore/page/
Chrome.h 133 bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
  /external/webkit/Source/WebKit/chromium/public/
WebViewClient.h 200 // defaultValue. Returns true if the user selects 'OK' or false
204 WebFrame*, const WebString& message, const WebString& defaultValue,
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.h 100 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result);
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
ProxyInstance.h 75 virtual JSC::JSValue defaultValue(JSC::ExecState*, JSC::PreferredPrimitiveType) const;
  /external/webkit/Source/WebKit/qt/Api/
qwebsettings.cpp 553 int defaultValue = 0;
556 defaultValue = global->fontSizes.value(type);
558 return d->fontSizes.value(type, defaultValue);
    [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.cpp 262 bool EditorClientQt::canCopyCut(bool defaultValue) const
264 return defaultValue;
267 bool EditorClientQt::canPaste(bool defaultValue) const
269 return defaultValue;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.cpp 246 bool WebEditorClient::canCopyCut(bool defaultValue) const
248 return defaultValue;
251 bool WebEditorClient::canPaste(bool defaultValue) const
253 return defaultValue;
  /external/webkit/Tools/MiniBrowser/win/
BrowserView.cpp 68 static WKStringRef runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef frame, const void* clientInfo)

Completed in 200 milliseconds

1 2 3 4 56 7 8 91011>>