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

1 2 3

  /frameworks/opt/vcard/java/com/android/vcard/
VCardPhoneNumberTranslationCallback.java 16 package com.android.vcard;
JapaneseUtils.java 17 package 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...]
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.
VCardParserImpl_V40.java 16 package com.android.vcard;
23 * Basic implementation parsing vCard 4.0.
26 * vCard 4.0 is not published yet. Also this implementation is premature.
60 // TODO: more strictly, vCard 4.0 requires different type of unescaping rule
VCardParser_V21.java 16 package com.android.vcard;
18 import com.android.vcard.exception.VCardException;
29 * vCard parser for vCard 2.1. See the specification for more detail about the spec itself.
32 * The spec is written in 1996, and currently various types of "vCard 2.1" exist.
33 * To handle real the world vCard formats appropriately and effectively, this class does not
34 * obey with strict vCard 2.1.
35 * In stead, not only vCard spec but also real world vCard is considered.
37 * e.g. A lot of devices and softwares let vCard importer/exporter to us
    [all...]
VCardParser_V30.java 16 package com.android.vcard;
18 import com.android.vcard.exception.VCardException;
29 * vCard parser for vCard 3.0. See RFC 2426 for more detail.
32 * This parser allows vCard format which is not allowed in the RFC, since
33 * we have seen several vCard 3.0 files which don't comply with it.
36 * e.g. vCard 3.0 does not allow "CHARSET" attribute, but some actual files
53 * A unmodifiable Set storing the values for the type "ENCODING", available in the vCard 3.0.
56 * Though vCard 2.1 specification does not allow "7BIT" or "BASE64", we allow them for safety.
59 * "QUOTED-PRINTABLE" is not allowed in vCard 3.0 and not in this parser either
    [all...]
VCardParser_V40.java 16 package com.android.vcard;
18 import com.android.vcard.exception.VCardException;
29 * vCard parser for vCard 4.0. DO NOT USE IN PRODUCTION.
32 * Currently this parser is based on vCard 4.0 specification rev 15 (partly).
33 * Note that some of current implementation lack basic capability required in vCard 4.0.
50 * A unmodifiable Set storing the values for the type "ENCODING", available in vCard 4.0.
  /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.
  /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.
ExportRequest.java 16 package com.android.contacts.common.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.
VCardTestRunner.java 16 package com.android.vcard.tests;
24 * Usage: adb shell am instrument -w com.android.vcard.tests/.VCardTestRunnerTestRunner
VCardBuilderTest.java 17 package com.android.vcard.tests;
22 import com.android.vcard.VCardBuilder;
23 import com.android.vcard.VCardConfig;
VCardTestUtilsTests.java 16 package com.android.vcard.tests;
21 import com.android.vcard.VCardConfig;
22 import com.android.vcard.tests.testutils.VCardVerifier;
30 * Tests confirming utilities for vCard tests work fine.
32 * Now that the foundation classes for vCard test cases became too complicated to

Completed in 139 milliseconds

1 2 3