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

1 2

  /frameworks/base/core/java/android/pim/vcard/
JapaneseUtils.java 17 package android.pim.vcard;
VCardEntryHandler.java 16 package android.pim.vcard;
29 * The method called when one VCard entry is successfully created
VCardParser.java 16 package android.pim.vcard;
18 import android.pim.vcard.exception.VCardException;
37 * Parses the given stream and send the VCard data into VCardBuilderBase object.
40 * Note that vCard 2.1 specification allows "CHARSET" parameter, and some career sets
42 * formally allowed in VCard 2.1, but not recommended in VCard 3.0. In VCard 2.1,
43 * In some exreme case, some VCard may have different charsets in one VCard (though
56 * VCard comes from and explicitly specify a charset using the result
    [all...]
VCardInterpreter.java 16 package android.pim.vcard;
23 * vCard entry more minutely than {@link VCardEntry} class analysis.
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...]
VCardEntryCommitter.java 16 package android.pim.vcard;
30 * Each vCard may contain big photo images encoded by BASE64,
31 * If we store all vCard entries in memory, OutOfMemoryError may be thrown.
32 * Thus, this class push each VCard entry into ContentResolver immediately.
VCardEntryCounter.java 16 package android.pim.vcard;
21 * The class which just counts the number of vCard entries in the specified input.
VCardSourceDetector.java 16 package android.pim.vcard;
24 * Class which tries to detects the source of the vCard from its properties.
VCardInterpreterCollection.java 16 package android.pim.vcard;
  /frameworks/base/core/java/android/pim/vcard/exception/
VCardAgentNotSupportedException.java 16 package android.pim.vcard.exception;
VCardException.java 16 package android.pim.vcard.exception;
VCardInvalidCommentLineException.java 17 package android.pim.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 17 package android.pim.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
VCardNestedException.java 17 package android.pim.vcard.exception;
20 * VCardException thrown when VCard is nested without VCardParser's being notified.
VCardNotSupportedException.java 16 package android.pim.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 17 package android.pim.vcard.exception;
20 * VCardException used only when the version of the vCard is different.
  /frameworks/base/core/tests/coretests/src/android/pim/vcard/
VNode.java 16 package android.pim.vcard;
21 * Previously used in main vCard handling code but now exists only for testing.
ContentValuesBuilder.java 17 package android.pim.vcard;
LineVerifier.java 16 package android.pim.vcard;
19 import android.pim.vcard.VCardComposer;
43 public void verify(String vcard) {
49 lineVerifier.verify(vcard);
54 public boolean onEntryCreated(String vcard) {
55 verify(vcard);
LineVerifierElem.java 16 package android.pim.vcard;
18 import android.pim.vcard.VCardConfig;
43 public void verify(final String vcard) {
44 final String[] lineArray = vcard.split("\\r?\\n");
56 if ("BEGIN:VCARD".equalsIgnoreCase(line)) {
58 mTestCase.fail("Multiple \"BEGIN:VCARD\" line found");
63 } else if ("END:VCARD".equalsIgnoreCase(line)) {
65 mTestCase.fail("Multiple \"END:VCARD\" line found");
VCardUtilsTests.java 17 package android.pim.vcard;
19 import android.pim.vcard.VCardUtils;
PropertyNode.java 16 package android.pim.vcard;
19 import android.pim.vcard.VCardEntry;
29 * Previously used in main vCard handling code but now exists only for testing.
33 * interpretation of the content of each vCard. We cannot know whether vCard parser or
48 * defined in vCard 3.0 (See also RFC 2426). multiple-values are stored as
57 /** Store group values. Used only in VCard. */
108 // vCard may contain more than one same line in one entry, while HashSet or any other
PropertyNodesVerifier.java 16 package android.pim.vcard;
19 import android.pim.vcard.VCardConfig;
20 import android.pim.vcard.VCardParser;
21 import android.pim.vcard.VCardParser_V21;
22 import android.pim.vcard.VCardParser_V30;
23 import android.pim.vcard.exception.VCardException;
ContentValuesVerifier.java 16 package android.pim.vcard;
18 import android.pim.vcard.VCardConfig;
19 import android.pim.vcard.VCardEntry;
20 import android.pim.vcard.VCardEntryConstructor;
21 import android.pim.vcard.VCardEntryHandler;
22 import android.pim.vcard.VCardParser;
23 import android.pim.vcard.VCardParser_V21;
24 import android.pim.vcard.VCardParser_V30;
25 import android.pim.vcard.exception.VCardException;
ContentValuesVerifierElem.java 16 package android.pim.vcard;
19 import android.pim.vcard.VCardConfig;
20 import android.pim.vcard.VCardEntry;
21 import android.pim.vcard.VCardEntryCommitter;
22 import android.pim.vcard.VCardEntryConstructor;
23 import android.pim.vcard.VCardEntryHandler;
24 import android.pim.vcard.VCardParser;
25 import android.pim.vcard.VCardParser_V21;
26 import android.pim.vcard.VCardParser_V30;
27 import android.pim.vcard.exception.VCardException
    [all...]
VCardImporterTests.java 16 package android.pim.vcard;
19 import android.pim.vcard.VCardConfig;
32 import android.pim.vcard.PropertyNodesVerifierElem.TypeSet;
    [all...]

Completed in 2778 milliseconds

1 2