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

1 23 4 5 6 7 8 91011>>

  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/
IAndroidTarget.java 214 * @param defaultValue the default value to return.
218 Integer getProperty(String name, Integer defaultValue);
226 * @param defaultValue the default value to return.
231 Boolean getProperty(String name, Boolean defaultValue);
  /external/qemu/android/utils/
ini.c 329 iniFile_getString( IniFile* f, const char* key, const char* defaultValue )
334 if (!defaultValue)
336 val= defaultValue;
343 iniFile_getInteger( IniFile* f, const char* key, int defaultValue )
346 int value = defaultValue;
358 iniFile_getDouble( IniFile* f, const char* key, double defaultValue )
361 double value = defaultValue;
373 iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue )
378 value = defaultValue;
393 iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue )
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SliderPreference.java 105 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
106 mValue = defaultValue != null ? (Integer)defaultValue : INITIAL_VALUE;
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 54 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.h 39 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
  /external/webkit/Source/WebCore/html/
NumberInputType.cpp 179 double NumberInputType::parseToDouble(const String& src, double defaultValue) const
183 return defaultValue;
188 double NumberInputType::parseToDoubleWithDecimalPlaces(const String& src, double defaultValue, unsigned *decimalPlaces) const
192 return defaultValue;
SubmitInputType.cpp 83 String SubmitInputType::defaultValue()
MonthInputType.cpp 119 double MonthInputType::parseToDouble(const String& src, double defaultValue) const
123 return defaultValue;
InputType.h 121 virtual String defaultValue(); // Checked after even fallbackValue, only when the valueWithDefault function is called.
223 // succeeds; Returns defaultValue otherwise. This function can
224 // return NaN or Infinity only if defaultValue is NaN or Infinity.
225 virtual double parseToDouble(const String&, double defaultValue) const;
230 virtual double parseToDoubleWithDecimalPlaces(const String&, double defaultValue, unsigned* decimalPlaces) const;
HTMLTextAreaElement.cpp 98 if (currentValue == defaultValue())
112 setNonDirtyValue(defaultValue());
193 setNonDirtyValue(defaultValue());
341 String HTMLTextAreaElement::defaultValue() const
354 void HTMLTextAreaElement::setDefaultValue(const String& defaultValue)
369 String value = defaultValue;
  /external/easymock/src/org/easymock/internal/
EasyMockProperties.java 91 * @param defaultValue
95 public String getProperty(String key, String defaultValue) {
96 return properties.getProperty(key, defaultValue);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
Data.java 211 String getValue(String path, String defaultValue);
217 int getIntValue(String path, int defaultValue);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.h 88 virtual bool canCopyCut(bool defaultValue) const;
89 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 85 virtual bool canCopyCut(bool defaultValue) const;
86 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 82 virtual bool canCopyCut(bool defaultValue) const;
83 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 82 virtual bool canCopyCut(bool defaultValue) const;
83 virtual bool canPaste(bool defaultValue) const;
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.h 84 virtual bool canCopyCut(bool defaultValue) const;
85 virtual bool canPaste(bool defaultValue) const;
  /libcore/luni/src/main/java/java/lang/
Long.java 238 * @param defaultValue
244 public static Long getLong(String string, long defaultValue) {
246 return valueOf(defaultValue);
250 return valueOf(defaultValue);
255 return valueOf(defaultValue);
267 * @param defaultValue
273 public static Long getLong(String string, Long defaultValue) {
275 return defaultValue;
279 return defaultValue;
284 return defaultValue;
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 330 private boolean getBooleanProperty(String key, boolean defaultValue) {
333 return defaultValue;
335 boolean result = defaultValue;
345 private String getStringProperty(String key, String defaultValue) {
347 return property == null ? defaultValue : property;
351 private int getIntProperty(String key, int defaultValue) {
353 int result = defaultValue;
  /external/webkit/Source/WebCore/page/
WindowFeatures.cpp 210 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue)
214 return defaultValue;
219 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue)
223 return defaultValue;
229 return defaultValue;
  /frameworks/base/core/java/android/preference/
RingtonePreference.java 203 String defaultValue = (String) defaultValueObj;
217 if (!TextUtils.isEmpty(defaultValue)) {
218 onSaveRingtone(Uri.parse(defaultValue));
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLInputElement01.js 78 The defaultValue attribute represents the HTML value of the attribute
81 Retrieve the defaultValue attribute of the 1st INPUT element and examine
104 vdefaultvalue = testNode.defaultValue;
HTMLTextAreaElement01.js 78 The defaultValue attribute represents the HTML value of the attribute
81 Retrieve the defaultValue attribute of the 2nd TEXTAREA element and examine
104 vdefaultvalue = testNode.defaultValue;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLInputElement01.js 78 The defaultValue attribute represents the HTML value of the attribute
81 Retrieve the defaultValue attribute of the 1st INPUT element and examine
104 vdefaultvalue = testNode.defaultValue;
HTMLTextAreaElement01.js 78 The defaultValue attribute represents the HTML value of the attribute
81 Retrieve the defaultValue attribute of the 2nd TEXTAREA element and examine
104 vdefaultvalue = testNode.defaultValue;

Completed in 231 milliseconds

1 23 4 5 6 7 8 91011>>