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

1 2 3 4

  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
VCardCommonArguments.java 17 package com.android.contacts.common.vcard;
25 // The value should be a string class name (e.g. com.android.contacts.vcard.VCardCommonArgs)
CancelRequest.java 16 package com.android.contacts.common.vcard;
19 * Class representing one request for canceling vCard import/export.
VCardImportExportListener.java 17 package com.android.contacts.common.vcard;
21 import com.android.vcard.VCardEntry;
ExportRequest.java 16 package com.android.contacts.common.vcard;
ImportProcessor.java 16 package com.android.contacts.common.vcard;
23 import com.android.vcard.VCardEntry;
24 import com.android.vcard.VCardEntryCommitter;
25 import com.android.vcard.VCardEntryConstructor;
26 import com.android.vcard.VCardEntryHandler;
27 import com.android.vcard.VCardInterpreter;
28 import com.android.vcard.VCardParser;
29 import com.android.vcard.VCardParser_V21;
30 import com.android.vcard.VCardParser_V30;
31 import com.android.vcard.exception.VCardException
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
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
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...]
VCardPhoneNumberTranslationCallback.java 16 package com.android.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...]
VCardEntryCounter.java 16 package com.android.vcard;
19 * The class which just counts the number of vCard entries in the specified input.
  /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...]
  /frameworks/opt/vcard/java/com/android/vcard/exception/
VCardAgentNotSupportedException.java 16 package com.android.vcard.exception;
VCardException.java 16 package com.android.vcard.exception;
VCardInvalidCommentLineException.java 17 package com.android.vcard.exception;
20 * Thrown when the vCard has some line starting with '#'. In the specification,
21 * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit
VCardInvalidLineException.java 16 package com.android.vcard.exception;
19 * Thrown when the vCard has some line starting with '#'. In the specification,
20 * both vCard 2.1 and vCard 3.0 does not allow such line, but some actual exporter emit
VCardNestedException.java 17 package com.android.vcard.exception;
20 * VCardException thrown when VCard is nested without VCardParser's being notified.
VCardNotSupportedException.java 16 package com.android.vcard.exception;
19 * The exception which tells that the input VCard is probably valid from the view of
23 * It may be good to ask users to send a report with the VCard example
VCardVersionException.java 16 package com.android.vcard.exception;
19 * VCardException used only when the version of the vCard is different.
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VNode.java 16 package com.android.vcard.tests.testutils;
21 * Previously used in main vCard handling code but now exists only for testing.
ContentValuesVerifierElem.java 16 package com.android.vcard.tests.testutils;
22 import com.android.vcard.VCardEntry;
23 import com.android.vcard.VCardEntryCommitter;
24 import com.android.vcard.VCardEntryHandler;
ContentValuesVerifier.java 16 package com.android.vcard.tests.testutils;
20 import com.android.vcard.VCardEntry;
21 import com.android.vcard.VCardEntryHandler;
LineVerifier.java 16 package com.android.vcard.tests.testutils;
42 public void verify(String vcard) {
48 lineVerifier.verify(vcard);
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardImporterNestTests.java 16 package com.android.vcard.tests;
18 import com.android.vcard.tests.testutils.VCardTestsBase;
21 * Test cases specific for nested vCard.
VCardBuilderTest.java 17 package com.android.vcard.tests;
22 import com.android.vcard.VCardBuilder;
23 import com.android.vcard.VCardConfig;
VCardEntryTests.java 16 package com.android.vcard.tests;
18 import com.android.vcard.VCardConfig;
19 import com.android.vcard.VCardConstants;
20 import com.android.vcard.VCardEntry;
21 import com.android.vcard.VCardEntry.AndroidCustomData;
22 import com.android.vcard.VCardEntry.AnniversaryData;
23 import com.android.vcard.VCardEntry.BirthdayData;
24 import com.android.vcard.VCardEntry.EmailData;
25 import com.android.vcard.VCardEntry.EntryElement;
26 import com.android.vcard.VCardEntry.EntryLabel
    [all...]

Completed in 220 milliseconds

1 2 3 4