Home
last modified time | relevance | path

Searched refs:currentState (Results 1 – 6 of 6) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
DSparseArrayElementRemoveTransform.java33 public void apply(IGLProperty currentState) { in apply() argument
35 mAddTransform.revert(currentState); in apply()
39 public void revert(IGLProperty currentState) { in revert() argument
41 mAddTransform.apply(currentState); in revert()
45 public IGLProperty getChangedProperty(IGLProperty currentState) { in getChangedProperty() argument
46 return mAddTransform.getChangedProperty(currentState); in getChangedProperty()
DListElementAddTransform.java36 public void apply(IGLProperty currentState) { in apply() argument
37 GLListProperty list = getList(currentState); in apply()
44 public void revert(IGLProperty currentState) { in revert() argument
45 GLListProperty list = getList(currentState); in revert()
52 public IGLProperty getChangedProperty(IGLProperty currentState) { in getChangedProperty() argument
53 return getList(currentState); in getChangedProperty()
DSparseArrayElementAddTransform.java37 public void apply(IGLProperty currentState) { in apply() argument
38 GLSparseArrayProperty propertyArray = getArray(currentState); in apply()
49 public void revert(IGLProperty currentState) { in revert() argument
50 GLSparseArrayProperty propertyArray = getArray(currentState); in revert()
60 public IGLProperty getChangedProperty(IGLProperty currentState) { in getChangedProperty() argument
61 return getArray(currentState); in getChangedProperty()
DIStateTransform.java27 void apply(IGLProperty currentState); in apply() argument
30 void revert(IGLProperty currentState); in revert() argument
33 IGLProperty getChangedProperty(IGLProperty currentState); in getChangedProperty() argument
DTexImageTransform.java80 public void apply(IGLProperty currentState) { in apply() argument
83 IGLProperty property = mAccessor.getProperty(currentState); in apply()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DRenderPreviewManager.java791 State currentState = parent.getDeviceState(); in createStateVariation() local
792 State nextState = parent.getNextDeviceState(currentState); in createStateVariation()
793 if (nextState != currentState) { in createStateVariation()
978 State currentState = configuration.getDeviceState(); in addScreenSizePreviews() local
979 String currentStateName = currentState != null ? currentState.getName() : ""; in addScreenSizePreviews()