Searched refs:DrawableRecipientChip (Results 1 – 5 of 5) sorted by relevance
/frameworks/opt/chips/src/com/android/ex/chips/ |
D | RecipientEditTextView.java | 97 import com.android.ex.chips.recipientchip.DrawableRecipientChip; 183 private DrawableRecipientChip mSelectedChip; 201 ArrayList<DrawableRecipientChip> mTemporaryRecipients; 203 private ArrayList<DrawableRecipientChip> mHiddenSpans; 495 /*package*/ DrawableRecipientChip getLastChip() { in getLastChip() 496 DrawableRecipientChip last = null; in getLastChip() 497 DrawableRecipientChip[] chips = getSortedRecipients(); in getLastChip() 508 DrawableRecipientChip[] chips = in getSelectedRecipients() 509 getText().getSpans(0, getText().length(), DrawableRecipientChip.class); in getSelectedRecipients() 515 for (DrawableRecipientChip c : chips) { in getSelectedRecipients() [all …]
|
/frameworks/opt/chips/tests/src/com/android/ex/chips/ |
D | ChipsTest.java | 33 import com.android.ex.chips.recipientchip.DrawableRecipientChip; 41 private DrawableRecipientChip[] mMockRecips; 58 public DrawableRecipientChip[] getSortedRecipients() { in getSortedRecipients() 87 public DrawableRecipientChip[] getSortedRecipients() { in getSortedRecipients() 649 DrawableRecipientChip[] spans = in testReplaceChip() 650 mEditable.getSpans(0, mEditable.length(), DrawableRecipientChip.class); in testReplaceChip() 653 .getSpans(0, mEditable.toString().indexOf(second) - 1, DrawableRecipientChip.class); in testReplaceChip() 683 spans = mEditable.getSpans(0, mEditable.length(), DrawableRecipientChip.class); in testReplaceChip() 686 DrawableRecipientChip.class); in testReplaceChip() 713 spans = mEditable.getSpans(0, mEditable.length(), DrawableRecipientChip.class); in testReplaceChip() [all …]
|
/frameworks/opt/chips/src/com/android/ex/chips/recipientchip/ |
D | DrawableRecipientChip.java | 26 public interface DrawableRecipientChip extends BaseRecipientChip { interface
|
D | VisibleRecipientChip.java | 29 public class VisibleRecipientChip extends ReplacementDrawableSpan implements DrawableRecipientChip {
|
D | InvisibleRecipientChip.java | 30 public class InvisibleRecipientChip extends ReplacementSpan implements DrawableRecipientChip {
|