Home
last modified time | relevance | path

Searched defs:defaultValue (Results 1 – 25 of 141) sorted by relevance

123456

/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
DTestAttributeSet.java54 …public boolean getAttributeBooleanValue(String namespace, String attribute, boolean defaultValue) { in getAttributeBooleanValue()
65 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) { in getAttributeIntValue()
101 …int getAttributeListValue(String namespace, String attribute, String[] options, int defaultValue) { in getAttributeListValue()
106 public int getAttributeUnsignedIntValue(String namespace, String attribute, int defaultValue) { in getAttributeUnsignedIntValue()
111 public float getAttributeFloatValue(String namespace, String attribute, float defaultValue) { in getAttributeFloatValue()
122 public int getAttributeListValue(int index, String[] options, int defaultValue) { in getAttributeListValue()
127 public boolean getAttributeBooleanValue(int resourceId, boolean defaultValue) { in getAttributeBooleanValue()
132 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) { in getAttributeResourceValue()
142 public int getAttributeResourceValue(int resourceId, int defaultValue) { in getAttributeResourceValue()
149 public int getAttributeIntValue(int index, int defaultValue) { in getAttributeIntValue()
[all …]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
DSettings.java132 int getUploadBandwidth(int defaultValue) { in getUploadBandwidth()
144 int getDownloadBandwidth(int defaultValue) { in getDownloadBandwidth()
151 boolean getEnablePush(boolean defaultValue) { in getEnablePush()
157 int getRoundTripTime(int defaultValue) { in getRoundTripTime()
163 int getMaxConcurrentStreams(int defaultValue) { in getMaxConcurrentStreams()
169 int getCurrentCwnd(int defaultValue) { in getCurrentCwnd()
175 int getDownloadRetransRate(int defaultValue) { in getDownloadRetransRate()
180 int getInitialWindowSize(int defaultValue) { in getInitialWindowSize()
186 int getClientCertificateVectorSize(int defaultValue) { in getClientCertificateVectorSize()
/external/chromium_org/third_party/skia/tools/flags/
DSkCommandLineFlags.h181 #define DEFINE_bool(name, defaultValue, helpString) \ argument
191 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \ argument
201 #define DEFINE_string(name, defaultValue, helpString) \ argument
211 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ argument
221 #define DEFINE_int32(name, defaultValue, helpString) \ argument
230 #define DEFINE_double(name, defaultValue, helpString) \ argument
264 bool defaultValue, const char* helpString) { in CreateBoolFlag()
285 int32_t defaultValue, const char* helpString) { in CreateIntFlag()
296 double defaultValue, const char* helpString) { in CreateDoubleFlag()
368 SkString defaultValue() const { in defaultValue() function
/external/skia/tools/flags/
DSkCommandLineFlags.h177 #define DEFINE_bool(name, defaultValue, helpString) \ argument
187 #define DEFINE_bool2(name, shortName, defaultValue, helpString) \ argument
197 #define DEFINE_string(name, defaultValue, helpString) \ argument
207 #define DEFINE_string2(name, shortName, defaultValue, helpString) \ argument
217 #define DEFINE_int32(name, defaultValue, helpString) \ argument
226 #define DEFINE_double(name, defaultValue, helpString) \ argument
260 bool defaultValue, const char* helpString) { in CreateBoolFlag()
281 int32_t defaultValue, const char* helpString) { in CreateIntFlag()
292 double defaultValue, const char* helpString) { in CreateDoubleFlag()
364 SkString defaultValue() const { in defaultValue() function
/external/apache-http/src/org/apache/http/params/
DAbstractHttpParams.java61 public long getLongParameter(final String name, long defaultValue) { in getLongParameter()
74 public int getIntParameter(final String name, int defaultValue) { in getIntParameter()
87 public double getDoubleParameter(final String name, double defaultValue) { in getDoubleParameter()
100 public boolean getBooleanParameter(final String name, boolean defaultValue) { in getBooleanParameter()
DHttpParams.java98 long getLongParameter(String name, long defaultValue); in getLongParameter()
119 int getIntParameter(String name, int defaultValue); in getIntParameter()
140 double getDoubleParameter(String name, double defaultValue); in getDoubleParameter()
161 boolean getBooleanParameter(String name, boolean defaultValue); in getBooleanParameter()
/external/proguard/src/proguard/classfile/attribute/annotation/
DAnnotationDefaultAttribute.java35 public ElementValue defaultValue; field in AnnotationDefaultAttribute
50 ElementValue defaultValue) in AnnotationDefaultAttribute()
/external/chromium_org/third_party/WebKit/public/web/
DWebPermissionClient.h95 virtual bool allowReadFromClipboard(bool defaultValue) { return defaultValue; } in allowReadFromClipboard()
98 virtual bool allowWriteToClipboard(bool defaultValue) { return defaultValue; } in allowWriteToClipboard()
101 virtual bool allowWebComponents(bool defaultValue) { return defaultValue; } in allowWebComponents()
106 virtual bool allowMutationEvents(bool defaultValue) { return defaultValue; } in allowMutationEvents()
/external/chromium_org/third_party/WebKit/Source/web/
DContextFeaturesClientImpl.cpp64 void set(bool value, bool defaultValue) in set()
123 …uresClientImpl::isEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue) in isEnabled()
138 …lientImpl::askIfIsEnabled(Document* document, ContextFeatures::FeatureType type, bool defaultValue) in askIfIsEnabled()
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
DAudioParam.h51 static AudioParam* create(AudioContext* context, double defaultValue) in create()
67 float defaultValue() const { return static_cast<float>(m_defaultValue); } in defaultValue() function
118 AudioParam(AudioContext* context, double defaultValue) in AudioParam()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DContextFeatures.h84 …virtual bool isEnabled(Document*, ContextFeatures::FeatureType, bool defaultValue) { return defaul… in isEnabled()
96 inline bool ContextFeatures::isEnabled(Document* document, FeatureType type, bool defaultValue) con… in isEnabled()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowBundle.java55 public String getString(String key, String defaultValue) { in getString()
74 public long getLong(String key, long defaultValue) { in getLong()
90 public int getInt(String key, int defaultValue) { in getInt()
106 public double getDouble(String key, double defaultValue) { in getDouble()
122 public Byte getByte(String key, byte defaultValue) { in getByte()
138 public boolean getBoolean(String key, boolean defaultValue) { in getBoolean()
154 public char getChar(String key, char defaultValue) { in getChar()
181 public short getShort(String key, short defaultValue) { in getShort()
197 public float getFloat(String key, float defaultValue) { in getFloat()
/external/chromium-trace/trace-viewer/src/ui/
Ddom_helpers.js45 settingsKey, defaultValue, argument
108 settingsKey, defaultValue, argument
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DAbstractData.java51 public String getValue(String path, String defaultValue) { in getValue()
67 public int getIntValue(String path, int defaultValue) { in getIntValue()
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
DStepRange.h65 Decimal defaultValue() const in defaultValue() function
85 Decimal defaultValue() const in defaultValue() function
DResetInputType.cpp67 String ResetInputType::defaultValue() const in defaultValue() function in blink::ResetInputType
DSubmitInputType.cpp84 String SubmitInputType::defaultValue() const in defaultValue() function in blink::SubmitInputType
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
Doptions.js5 function setRadio(name, defaultValue) { argument
/external/chromium_org/third_party/skia/include/utils/
DSkRTConf.h54 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static SkRTConf<con… argument
63 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static confType var… argument
108 SkRTConf<T>::SkRTConf(const char *name, const T &defaultValue, const char *description) in SkRTConf()
/external/skia/include/utils/
DSkRTConf.h54 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static SkRTConf<con… argument
63 #define SK_CONF_DECLARE(confType, varName, confName, defaultValue, description) static confType var… argument
109 SkRTConf<T>::SkRTConf(const char *name, const T &defaultValue, const char *description) in SkRTConf()
/external/qemu/android/utils/
Dini.c368 iniFile_getString( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getString()
382 iniFile_getInteger( IniFile* f, const char* key, int defaultValue ) in iniFile_getInteger()
397 iniFile_getDouble( IniFile* f, const char* key, double defaultValue ) in iniFile_getDouble()
412 iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getBoolean()
432 iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue ) in iniFile_getDiskSize()
455 iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue ) in iniFile_getInt64()
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
DJSONArray.java450 public boolean optBoolean(int index, boolean defaultValue) { in optBoolean()
481 public double optDouble(int index, double defaultValue) { in optDouble()
511 public int optInt(int index, int defaultValue) { in optInt()
567 public long optLong(int index, long defaultValue) { in optLong()
597 public String optString(int index, String defaultValue) { in optString()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/execution/
DExecutionUtils.java269 public static <T> T runObjectIgnore(RunnableObjectEx<T> runnable, T defaultValue) { in runObjectIgnore()
283 public static <T> T runObjectLog(RunnableObjectEx<T> runnable, T defaultValue) { in runObjectLog()
/external/chromium_org/third_party/WebKit/Source/core/page/
DWindowFeatures.cpp214 … WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue) in boolFeature()
223 …ature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue) in floatFeature()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DSettings.js106 createSetting: function(key, defaultValue) argument
119 createRegExpSetting: function(key, defaultValue, regexFlags) argument
135 WebInspector.Setting = function(name, defaultValue, eventSupport, storage) argument
245 WebInspector.RegExpSetting = function(name, defaultValue, eventSupport, storage, regexFlags) argument

123456