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.java99 public enum EntryLabel { enum in VCardEntry
118 public EntryLabel getEntryLabel(); in getEntryLabel()
271 public final EntryLabel getEntryLabel() { in getEntryLabel()
272 return EntryLabel.NAME; in getEntryLabel()
387 public final EntryLabel getEntryLabel() { in getEntryLabel()
388 return EntryLabel.PHONE; in getEntryLabel()
477 public final EntryLabel getEntryLabel() { in getEntryLabel()
478 return EntryLabel.EMAIL; in getEntryLabel()
698 public final EntryLabel getEntryLabel() { in getEntryLabel()
699 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()