Searched refs:mDefaultValue (Results 1 – 8 of 8) sorted by relevance
20 private final String mDefaultValue; field in GLStringProperty26 mDefaultValue = mCurrentValue = defaultValue; in GLStringProperty()31 return mDefaultValue.equalsIgnoreCase(mCurrentValue); in isDefault()
22 private final Boolean mDefaultValue; field in GLBooleanProperty28 mDefaultValue = mCurrentValue = defaultValue; in GLBooleanProperty()33 return mDefaultValue == mCurrentValue; in isDefault()
21 private final Float mDefaultValue; field in GLFloatProperty27 mDefaultValue = mCurrentValue = defaultValue; in GLFloatProperty()32 return Math.abs(mCurrentValue - mDefaultValue) < 0.000000001; in isDefault()
24 private final GLEnum mDefaultValue; field in GLEnumProperty29 mCurrentValue = mDefaultValue = defaultValue; in GLEnumProperty()34 return mDefaultValue == mCurrentValue; in isDefault()
24 private final Object mDefaultValue; field in GLObjectProperty32 mDefaultValue = mCurrentValue = defaultValue; in GLObjectProperty()37 return mDefaultValue == mCurrentValue; in isDefault()
23 private final Integer mDefaultValue; field in GLIntegerProperty30 mDefaultValue = mCurrentValue = defaultValue; in GLIntegerProperty()40 return mCurrentValue == mDefaultValue; in isDefault()
27 private final IGLProperty mDefaultValue; field in GLSparseArrayProperty45 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()
791 private final Object mDefaultValue; field in CommandLineParser.Arg829 mDefaultValue = defaultValue; in Arg()834 mCurrentValue = mDefaultValue; in Arg()870 return mDefaultValue; in getDefaultValue()