Home
last modified time | relevance | path

Searched refs:EntryLabel (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/vcard/java/com/android/vcard/
DVCardEntry.java87 public enum EntryLabel { enum in VCardEntry
106 public EntryLabel getEntryLabel(); in getEntryLabel()
259 public final EntryLabel getEntryLabel() { in getEntryLabel()
260 return EntryLabel.NAME; in getEntryLabel()
375 public final EntryLabel getEntryLabel() { in getEntryLabel()
376 return EntryLabel.PHONE; in getEntryLabel()
465 public final EntryLabel getEntryLabel() { in getEntryLabel()
466 return EntryLabel.EMAIL; in getEntryLabel()
686 public final EntryLabel getEntryLabel() { in getEntryLabel()
687 return EntryLabel.POSTAL_ADDRESS; in getEntryLabel()
[all …]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
DVCardEntryTests.java26 import com.android.vcard.VCardEntry.EntryLabel;
147 private EntryLabel mLabel;
148 private final Map<EntryLabel, EntryElement> mExpectedElements =
149 new HashMap<EntryLabel, EntryElement>();
174 public void onElementGroupStarted(EntryLabel label) { in onElementGroupStarted()
327 assertTrue(result.contains(VCardEntry.EntryLabel.NAME.toString())); in testToString()