HomeSort by relevance Sort by last modified time
    Searched full:defaultvalue (Results 276 - 300 of 1002) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/android/webkit/
JsDialogHelper.java 57 public JsDialogHelper(JsPromptResult result, int type, String defaultValue, String message,
60 mDefaultValue = defaultValue;
  /frameworks/base/docs/html/training/basics/data-storage/
shared-preferences.jd 118 int defaultValue = getResources().getInteger(R.string.saved_high_score_default);
119 long highScore = sharedPref.getInt(getString(R.string.saved_high_score), defaultValue);
  /frameworks/native/services/inputflinger/
InputWindow.h 174 inline nsecs_t getDispatchingTimeout(nsecs_t defaultValue) const {
175 return mInfo ? mInfo->dispatchingTimeout : defaultValue;
  /packages/services/Telephony/res/xml/
call_feature_setting.xml 39 android:defaultValue=""
89 android:defaultValue="true" />
  /external/chromium_org/base/android/java/src/org/chromium/base/
CommandLine.java 44 * Return the value associated with the given switch, or {@code defaultValue} if the switch
47 * @param defaultValue The default value to return if the switch isn't set.
48 * @return Switch value, or {@code defaultValue} if the switch is not set or set to empty.
50 public String getSwitchValue(String switchString, String defaultValue) {
52 return TextUtils.isEmpty(value) ? defaultValue : value;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp 125 setNonDirtyValue(defaultValue());
221 setNonDirtyValue(defaultValue());
409 String HTMLTextAreaElement::defaultValue() const
422 void HTMLTextAreaElement::setDefaultValue(const String& defaultValue)
437 String value = defaultValue;
HTMLInputElement.idl 60 [Reflect=value, CustomElementCallbacks] attribute DOMString defaultValue;
HTMLOutputElement.cpp 114 String HTMLOutputElement::defaultValue() const
HTMLTextAreaElement.h 47 String defaultValue() const;
  /frameworks/base/services/core/java/com/android/server/
LockSettingsStorage.java 97 public String readKeyValue(String key, String defaultValue, int userId) {
101 return mCache.peekKeyValue(key, defaultValue, userId);
119 return result == DEFAULT ? defaultValue : (String) result;
393 String peekKeyValue(String key, String defaultValue, int userId) {
395 return cached == DEFAULT ? defaultValue : (String) cached;
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java     [all...]
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONObject.java 801 * It returns the defaultValue if there is no such key, or if it is not
805 * @param defaultValue The default.
808 public boolean optBoolean(String key, boolean defaultValue) {
812 return defaultValue;
847 * defaultValue if there is no such key or if its value is not a number.
852 * @param defaultValue The default.
855 public double optDouble(String key, double defaultValue) {
861 return defaultValue;
887 * @param defaultValue The default.
890 public int optInt(String key, int defaultValue) {
    [all...]
  /frameworks/base/telephony/java/android/telephony/
TelephonyManager.java 355 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
378 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
401 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
415 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
429 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
476 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
505 * {@link android.content.Intent#getIntExtra(String name, int defaultValue)}.
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
FileHandler.java 332 private boolean getBooleanProperty(String key, boolean defaultValue) {
335 return defaultValue;
337 boolean result = defaultValue;
347 private String getStringProperty(String key, String defaultValue) {
349 return property == null ? defaultValue : property;
353 private int getIntProperty(String key, int defaultValue) {
355 int result = defaultValue;
  /prebuilts/tools/common/m2/repository/org/codehaus/gmaven/feature/gmaven-feature-api/1.5/
gmaven-feature-api-1.5.jar 
  /external/chromium_org/third_party/jsoncpp/overrides/include/json/
value.h 342 /// otherwise returns defaultValue.
344 const Value &defaultValue ) const;
378 /// Return the member named key if it exist, defaultValue otherwise.
380 const Value &defaultValue ) const;
381 /// Return the member named key if it exist, defaultValue otherwise.
383 const Value &defaultValue ) const;
385 /// Return the member named key if it exist, defaultValue otherwise.
387 const Value &defaultValue ) const;
555 const Value &defaultValue ) const;
    [all...]
  /external/jsoncpp/chromium-overrides/include/json/
value.h 342 /// otherwise returns defaultValue.
344 const Value &defaultValue ) const;
378 /// Return the member named key if it exist, defaultValue otherwise.
380 const Value &defaultValue ) const;
381 /// Return the member named key if it exist, defaultValue otherwise.
383 const Value &defaultValue ) const;
385 /// Return the member named key if it exist, defaultValue otherwise.
387 const Value &defaultValue ) const;
555 const Value &defaultValue ) const;
    [all...]
  /external/jsoncpp/include/json/
value.h 342 /// otherwise returns defaultValue.
344 const Value &defaultValue ) const;
378 /// Return the member named key if it exist, defaultValue otherwise.
380 const Value &defaultValue ) const;
381 /// Return the member named key if it exist, defaultValue otherwise.
383 const Value &defaultValue ) const;
385 /// Return the member named key if it exist, defaultValue otherwise.
387 const Value &defaultValue ) const;
555 const Value &defaultValue ) const;
    [all...]
  /frameworks/base/docs/html/reference/com/google/android/gms/wearable/
DataMap.html 1219 <span class="sympad"><a href="/reference/com/google/android/gms/wearable/DataMap.html#getBoolean(java.lang.String, boolean)">getBoolean</a></span>(String key, boolean defaultValue)</nobr>
1222 Returns the value associated with the given key, or defaultValue if
    [all...]
  /libcore/luni/src/main/java/java/net/
URLConnection.java 507 * 1, 1970 GMT. Returns the {@code defaultValue} if no such header field
512 * @param defaultValue
518 public long getHeaderFieldDate(String field, long defaultValue) {
521 return defaultValue;
526 return defaultValue;
532 * defaultValue} if no such header field could be found or the value could
537 * @param defaultValue
541 public int getHeaderFieldInt(String field, int defaultValue) {
545 return defaultValue;
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
MoreKeySpec.java 263 final int defaultValue) {
265 return defaultValue;
269 int value = defaultValue;
  /developers/samples/android/admin/AppRestrictionSchema/
template-params.xml 81 android:defaultValue="false"
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/jsdoc-template/
class.tmpl 217 <if test="member.defaultValue">
221 {+resolveLinks(member.defaultValue)+}
262 <if test="item.isOptional"><i>Optional<if test="item.defaultValue">, Default: {+item.defaultValue+}</if></i></if>
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.h 107 bool runJavaScriptPrompt(LocalFrame*, const String& message, const String& defaultValue, String& result);
  /external/chromium_org/third_party/libxml/src/include/libxml/
SAX.h 80 const xmlChar *defaultValue,

Completed in 839 milliseconds

<<11121314151617181920>>