HomeSort by relevance Sort by last modified time
    Searched full:vcard (Results 1 - 25 of 290) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/opt/vcard/tests/res/raw/
v21_simple_1.vcf 1 BEGIN:VCARD
3 END:VCARD
v21_simple_2.vcf 1 BEGIN:VCARD
3 END:VCARD
v21_nest.vcf 1 BEGIN:VCARD
4 BEGIN:VCARD
7 END:VCARD
8 BEGIN:VCARD
11 END:VCARD
13 END:VCARD
v21_simple_3.vcf 1 BEGIN:VCARD
4 END:VCARD
v30_multibyte_param.vcf 1 BEGIN:VCARD
5 END:VCARD
v30_pause_wait.vcf 1 BEGIN:VCARD
6 END:VCARD
v21_backslash.vcf 1 BEGIN:VCARD
5 END:VCARD
v21_invalid_multiple_line.vcf 1 BEGIN:VCARD
7 END:VCARD
v21_malformed_photo.vcf 1 BEGIN:VCARD
7 END:VCARD
v21_org_before_title.vcf 1 BEGIN:VCARD
6 END:VCARD
v21_sip.vcf 1 BEGIN:VCARD
6 END:VCARD
v21_title_before_org.vcf 1 BEGIN:VCARD
6 END:VCARD
v30_pager.vcf 1 BEGIN:VCARD
5 END:VCARD
v30_sip.vcf 1 BEGIN:VCARD
5 END:VCARD
v40_sort_as.vcf 1 BEGIN:VCARD
6 END:VCARD
v21_im.vcf 1 BEGIN:VCARD
5 END:VCARD
v21_japanese_1.vcf 1 BEGIN:VCARD
6 END:VCARD
v30_comma_separated.vcf 1 BEGIN:VCARD
5 END:VCARD
v40_sip.vcf 1 BEGIN:VCARD
7 END:VCARD
v21_adr_multiple_line.vcf 1 BEGIN:VCARD
10 END:VCARD
  /packages/apps/Contacts/tests/assets/
v21_simple.vcf 1 BEGIN:VCARD
3 END:VCARD
  /frameworks/opt/vcard/java/com/android/vcard/
VCardInterpreter.java 16 package com.android.vcard;
23 * vCard entry minutely.
26 * Here, there are several terms specific to vCard (and this library).
29 * The term "entry" is one vCard representation in the input, which should start with "BEGIN:VCARD"
30 * and end with "END:VCARD".
33 * The term "property" is one line in vCard entry, which consists of "group", "property name",
42 * Called when vCard interpretation started.
47 * Called when vCard interpretation finished.
52 * Called when parsing one vCard entry started
    [all...]
VCardEntryHandler.java 16 package com.android.vcard;
23 * This class is useful when you don't want to know vCard data in detail. If you want to know
34 * The method called when one vCard entry is created. Children come before their parent in
35 * nested vCard files.
38 * In the following vCard, the entry for "entry2" comes before one for "entry1".
40 * BEGIN:VCARD
42 * BEGIN:VCARD
44 * END:VCARD
45 * END:VCARD
VCardParser.java 16 package com.android.vcard;
18 import com.android.vcard.exception.VCardException;
27 * vCard parsing.
34 * <p>Parses a whole InputStream as a vCard file and lets registered {@link VCardInterpreter}
37 * <p>This method reads a whole InputStream. If you just want to parse one vCard entry inside
38 * a vCard file with multiple entries, try {@link #parseOne(InputStream)}.</p>
46 * <p>Parses the first vCard entry in InputStream and lets registered {@link VCardInterpreter}
55 * <p>This happens when the first entry contains nested vCards, which is allowed in vCard 2.1.
59 * BEGIN:VCARD
61 * BEGIN:VCARD
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VCardTest.java 23 import com.android.vcard.VCardComposer;
24 import com.android.vcard.VCardConfig;
27 * Tests (or integration tests) verifying if vCard library works well with {@link ContentResolver}.
29 * Unit tests for vCard itself should be availabel in vCard library.
38 * a vCard string.
47 String vcard = composer.createOneEntry(); local
48 assertNotNull(vcard);
50 // Check vCard very roughly.
51 assertTrue(vcard.contains("John"))
    [all...]

Completed in 120 milliseconds

1 2 3 4 5 6 7 8 91011>>