Home
last modified time | relevance | path

Searched refs:mValue (Results 1 – 7 of 7) sorted by relevance

/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
DEditableItem.java64 private Object mValue; field in EditableItem
112 return mValue != null; in hasValue()
116 if (mValue == value) in setValue()
118 mValue = value; in setValue()
126 PICTURE.setVisible(STYLE_BIG_PICTURE.equals(mValue)); in applyStyle()
127 BIG_TEXT.setVisible(STYLE_BIG_TEXT.equals(mValue)); in applyStyle()
128 LINES.setVisible(STYLE_INBOX.equals(mValue)); in applyStyle()
129 BIG_CONTENT_TITLE.setVisible(!STYLE_NONE.equals(mValue)); in applyStyle()
130 SUMMARY_TEXT.setVisible(!STYLE_NONE.equals(mValue)); in applyStyle()
138 if (PRESET_BASIC.equals(mValue)) { in applyPreset()
[all …]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DTestAttribute.java29 private String mValue; field in TestAttribute
31 public TestAttribute(String mUri, String mName, String mValue) { in TestAttribute() argument
35 this.mValue = mValue; in TestAttribute()
50 return mValue; in getValue()
55 return "TestAttribute [name=" + mName + ", uri=" + mUri + ", value=" + mValue + "]"; in toString()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleAttribute.java38 private final String mValue; field in SimpleAttribute
54 mValue = value == null ? "" : value; in SimpleAttribute()
75 return mValue; in getValue()
85 mValue); in toString()
107 mValue.equals(sa.mValue); in equals()
117 c = 31*c + mValue.hashCode(); in hashCode()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DPropertySettingNodeHandler.java29 private final String mValue; field in PropertySettingNodeHandler
35 mValue = value; in PropertySettingNodeHandler()
40 node.setAttribute(mNamespaceUri, mAttribute, mValue); in handle()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DXmlnsAttributeDescriptor.java39 private String mValue; field in XmlnsAttributeDescriptor
43 mValue = value; in XmlnsAttributeDescriptor()
51 return mValue; in getValue()
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/handlers/
DSensorChannel.java348 private String mValue = null; field in SensorChannel.MonitoredSensor
461 if (mValue == null) { in getValue()
463 mValue = String.format(mTextFmt, values[0], values[1], values[2]); in getValue()
465 return mValue == null ? "??" : mValue; in getValue()
548 mValue = null; in enableSensor()
563 mValue = "Disabled by emulator"; in disableSensor()
640 mValue = null; in onSensorChanged()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
DResourceChooser.java840 private String mValue; field in ResourceChooser.NameValueDialog
887 mValue = mValueText.getText().trim(); in computeResult()
895 return mValue; in getValue()
908 } else if (mValue.length() == 0) { in validate()