Home
last modified time | relevance | path

Searched refs:mDefaultValue (Results 1 – 8 of 8) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DGLStringProperty.java20 private final String mDefaultValue; field in GLStringProperty
26 mDefaultValue = mCurrentValue = defaultValue; in GLStringProperty()
31 return mDefaultValue.equalsIgnoreCase(mCurrentValue); in isDefault()
DGLBooleanProperty.java22 private final Boolean mDefaultValue; field in GLBooleanProperty
28 mDefaultValue = mCurrentValue = defaultValue; in GLBooleanProperty()
33 return mDefaultValue == mCurrentValue; in isDefault()
DGLFloatProperty.java21 private final Float mDefaultValue; field in GLFloatProperty
27 mDefaultValue = mCurrentValue = defaultValue; in GLFloatProperty()
32 return Math.abs(mCurrentValue - mDefaultValue) < 0.000000001; in isDefault()
DGLEnumProperty.java24 private final GLEnum mDefaultValue; field in GLEnumProperty
29 mCurrentValue = mDefaultValue = defaultValue; in GLEnumProperty()
34 return mDefaultValue == mCurrentValue; in isDefault()
DGLObjectProperty.java24 private final Object mDefaultValue; field in GLObjectProperty
32 mDefaultValue = mCurrentValue = defaultValue; in GLObjectProperty()
37 return mDefaultValue == mCurrentValue; in isDefault()
DGLIntegerProperty.java23 private final Integer mDefaultValue; field in GLIntegerProperty
30 mDefaultValue = mCurrentValue = defaultValue; in GLIntegerProperty()
40 return mCurrentValue == mDefaultValue; in isDefault()
DGLSparseArrayProperty.java27 private final IGLProperty mDefaultValue; field in GLSparseArrayProperty
45 mDefaultValue = defaultValue; in GLSparseArrayProperty()
53 mDefaultValue = defaultValue; in GLSparseArrayProperty()
88 IGLProperty prop = mDefaultValue.clone(); in add()
131 return new GLSparseArrayProperty(mType, mDefaultValue, mCreateOnAccess, copy); in clone()
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
DCommandLineParser.java791 private final Object mDefaultValue; field in CommandLineParser.Arg
829 mDefaultValue = defaultValue; in Arg()
834 mCurrentValue = mDefaultValue; in Arg()
870 return mDefaultValue; in getDefaultValue()