HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentValue (Results 1 - 4 of 4) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAbstractTextAttributeNode.java 41 private String mCurrentValue = DEFAULT_VALUE;
51 return mCurrentValue;
56 mCurrentValue = value;
80 mCurrentValue = DEFAULT_VALUE;
82 mCurrentValue = xml_attribute_node.getNodeValue();
85 if (isValid() && !getTextWidgetValue().equals(mCurrentValue)) {
88 setTextWidgetValue(mCurrentValue);
106 mCurrentValue = value;
  /sdk/layoutlib_utils/src/com/android/layoutlib/utils/
ValueResourceParser.java 49 private ResourceValue mCurrentValue = null;
60 if (mCurrentValue != null) {
61 mCurrentValue.setValue(trimXmlWhitespaces(mCurrentValue.getValue()));
67 mCurrentValue = null;
70 mCurrentValue = null;
107 mCurrentValue = new ResourceValue(type, name, mIsFramework);
108 mRepository.addResourceValue(type, mCurrentValue);
122 mCurrentValue = new ResourceValue(null, name, mIsFramework);
123 mCurrentStyle.addItem(mCurrentValue);
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
InstrumentationResultParser.java 136 private StringBuilder mCurrentValue = null;
233 if (mCurrentValue != null) {
235 mCurrentValue.append("\r\n");
236 mCurrentValue.append(line);
247 if (mCurrentKey != null && mCurrentValue != null) {
249 String statusValue = mCurrentValue.toString();
270 mCurrentValue = null;
308 mCurrentValue = new StringBuilder();
309 mCurrentValue.append(line.substring(valueStartPos));
  /sdk/sdkmanager/app/src/com/android/sdkmanager/
CommandLineProcessor.java 675 private Object mCurrentValue;
708 mCurrentValue = ((String[])defaultValue)[0];
710 mCurrentValue = mDefaultValue;
751 return mCurrentValue;
756 mCurrentValue = currentValue;

Completed in 54 milliseconds