Home
last modified time | relevance | path

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

/aosp12/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntry.java99 public enum EntryLabel { enum in VCardEntry
118 public EntryLabel getEntryLabel(); in getEntryLabel()
272 return EntryLabel.NAME; in getEntryLabel()
388 return EntryLabel.PHONE; in getEntryLabel()
478 return EntryLabel.EMAIL; in getEntryLabel()
958 return EntryLabel.IM; in getEntryLabel()
1063 return EntryLabel.PHOTO; in getEntryLabel()
1124 return EntryLabel.NICKNAME; in getEntryLabel()
1179 return EntryLabel.NOTE; in getEntryLabel()
1237 return EntryLabel.WEBSITE; in getEntryLabel()
[all …]
/aosp12/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
H A 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()