Home
last modified time | relevance | path

Searched refs:newValue (Results 1 – 20 of 20) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
DPropertyChangeTransform.java36 PropertyChangeTransform(IGLPropertyAccessor accessor, Object newValue) { in PropertyChangeTransform() argument
37 this(accessor, newValue, null); in PropertyChangeTransform()
45 public PropertyChangeTransform(IGLPropertyAccessor accessor, Object newValue, in PropertyChangeTransform() argument
48 mNewValue = newValue; in PropertyChangeTransform()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DPropertyCallback.java60 final @Nullable String valueId, final @Nullable Boolean newValue) { in action() argument
75 assert newValue != null; in action()
76 targetNode.setAttribute(mUri, mAttribute, Boolean.toString(newValue)); in action()
DTableLayoutRule.java85 @Nullable Boolean newValue) { in addContextMenuActions()
115 final @Nullable Boolean newValue) { in addTableLayoutActions()
DEditTextRule.java76 @Nullable Boolean newValue) { in addContextMenuActions()
DBaseViewRule.java160 final @Nullable String valueId, final @Nullable Boolean newValue) { in addContextMenuActions()
247 value = newValue ? "true" : ""; //$NON-NLS-1$ //$NON-NLS-2$ in addContextMenuActions()
249 value = newValue ? "false" : "";//$NON-NLS-1$ //$NON-NLS-2$ in addContextMenuActions()
262 if (newValue) { in addContextMenuActions()
287 value = newValue ? valueId : ""; //$NON-NLS-1$ in addContextMenuActions()
DBaseLayoutRule.java122 final @Nullable Boolean newValue) { in createMarginAction()
205 final @Nullable Boolean newValue) { in addLayoutActions()
221 if (newValue) { in addLayoutActions()
DRelativeLayoutRule.java323 final @Nullable Boolean newValue) { in addLayoutActions()
DGridLayoutRule.java187 final @Nullable Boolean newValue) { in addLayoutActions()
DLinearLayoutRule.java177 final @Nullable Boolean newValue) { in addLayoutActions()
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
DGLBooleanProperty.java36 public void setValue(Boolean newValue) { in setValue() argument
37 mCurrentValue = newValue; in setValue()
DGLFloatProperty.java35 public void setValue(Float newValue) { in setValue() argument
36 mCurrentValue = newValue; in setValue()
DGLEnumProperty.java37 public void setValue(GLEnum newValue) { in setValue() argument
38 mCurrentValue = newValue; in setValue()
DGLObjectProperty.java41 public void setValue(Object newValue) { in setValue() argument
42 mCurrentValue = newValue; in setValue()
DGLIntegerProperty.java41 public void setValue(Integer newValue) { in setValue() argument
42 mCurrentValue = newValue; in setValue()
DGLLongProperty.java41 public void setValue(Long newValue) { in setValue() argument
42 mCurrentValue = newValue; in setValue()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DDropDownEditor.java72 Object newValue = adapter.getItem(position); in bindEditor()
73 if (newValue.equals(oldValue)) in bindEditor()
75 item.setValue(newValue); in bindEditor()
/sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
DLayoutView.java66 boolean newValue = !mLayoutViewer.getOnBlack();
67 mLayoutViewer.setOnBlack(newValue);
68 if (newValue) {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
DConvertToDpFix.java74 String newValue = String.format(VALUE_N_DP, dp); in apply() local
75 attribute.setNodeValue(newValue); in apply()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java1557 public boolean commitAttributeToXml(UiAttributeNode uiAttr, String newValue) { in commitAttributeToXml() argument
1565 if (newValue == null || newValue.length() == 0) { in commitAttributeToXml()
1590 attr.setValue(newValue); in commitAttributeToXml()
2011 final String newValue = (String)value; in setPropertyValue() local
2013 if (oldValue.equals(newValue)) { in setPropertyValue()
2022 commitAttributeToXml(fAttribute, newValue); in setPropertyValue()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
DProjectState.java624 private IStatus replaceLibraryProperty(String oldValue, String newValue) { in replaceLibraryProperty() argument
638 workingCopy.setProperty(propName, newValue); in replaceLibraryProperty()