Home
last modified time | relevance | path

Searched refs:transformationMethod (Results 1 – 3 of 3) sorted by relevance

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
DPasswordTransformationMethodTest.java15 private ShadowPasswordTransformationMethod transformationMethod; field in PasswordTransformationMethodTest
19 transformationMethod = new ShadowPasswordTransformationMethod(); in setUp()
24 CharSequence output = transformationMethod.getTransformation("foobar", null); in shouldMaskInputCharacters()
30 CharSequence output = transformationMethod.getTransformation(" baz ", null); in shouldTransformSpacesWithText()
36 CharSequence output = transformationMethod.getTransformation(" ", null); in shouldTransformSpacesWithoutText()
42 CharSequence output = transformationMethod.getTransformation("", null); in shouldNotTransformBlank()
48 CharSequence output = transformationMethod.getTransformation(null, null); in shouldNotTransformNull()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowPasswordTransformationMethod.java13 private static ShadowPasswordTransformationMethod transformationMethod; field in ShadowPasswordTransformationMethod
25 if(transformationMethod == null){ in getInstance()
26 transformationMethod = new ShadowPasswordTransformationMethod(); in getInstance()
28 return transformationMethod; in getInstance()
DShadowTextView.java47 private TransformationMethod transformationMethod; field in ShadowTextView
459 public void setTransformationMethod(TransformationMethod transformationMethod) { in setTransformationMethod() argument
460 this.transformationMethod = transformationMethod; in setTransformationMethod()
465 return transformationMethod; in getTransformationMethod()