HomeSort by relevance Sort by last modified time
    Searched full:vcard (Results 51 - 75 of 220) sorted by null

1 23 4 5 6 7 8 9

  /packages/apps/Tag/
Android.mk 6 LOCAL_STATIC_JAVA_LIBRARIES := guava com.android.vcard
  /frameworks/opt/vcard/java/com/android/vcard/
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.
VCardParserImpl_V21.java 16 package com.android.vcard;
22 import com.android.vcard.exception.VCardAgentNotSupportedException;
23 import com.android.vcard.exception.VCardException;
24 import com.android.vcard.exception.VCardInvalidCommentLineException;
25 import com.android.vcard.exception.VCardInvalidLineException;
26 import com.android.vcard.exception.VCardVersionException;
41 * Basic implementation achieving vCard parsing. Based on vCard 2.1.
113 * "Encoding" in vCard is different from "Charset". It is mainly used for
135 * Set for storing unkonwn TYPE attributes, which is not acceptable in 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_V30.java 16 package com.android.vcard;
20 import com.android.vcard.exception.VCardException;
27 * Basic implementation achieving vCard 3.0 parsing.
30 * This class inherits vCard 2.1 implementation since technically they are similar,
74 * vCard 3.0 requires that the line with space at the beginning of the line
142 * vcard = [group "."] "BEGIN" ":" "VCARD" 1 * CRLF
144 * ;A vCard object MUST include the VERSION, FN and N types.
145 * [group "."] "END" ":" "VCARD" 1 * CRLF
149 // TODO: vCard 3.0 supports group
    [all...]
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
VCardEntryConstructor.java 16 package com.android.vcard;
30 * to easily handle each vCard entry.
33 * This class understand details inside vCard and translates it to {@link VCardEntry}.
39 * If you want to know the detail inside vCard, it would be better to implement
48 * Represents current stack of VCardEntry. Used to support nested vCard (vCard 2.1).
VCardProperty.java 16 package com.android.vcard;
29 * Represents vCard's property, or logical "one line" of each vCard entry.
32 * Given a vCard below, objects for <code>N:name</code>, <code>TEL:1111111111</code> are
36 * BEGIN:VCARD
39 * END:VCARD
42 * vCard's property has three elements: name, parameter (or param), and value. Name is the name
52 * which are same as "TYPE=WORK" and "TYPE=VOICE". In vCard 3.0, we can even express them as
58 * separable or not is specified by vCard specs.
  /packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java 20 import com.android.vcard.VCardConfig;
21 import com.android.vcard.VCardEntry;
22 import com.android.vcard.VCardEntryConstructor;
23 import com.android.vcard.VCardEntryHandler;
24 import com.android.vcard.VCardParser;
25 import com.android.vcard.VCardParser_V21;
26 import com.android.vcard.VCardParser_V30;
27 import com.android.vcard.exception.VCardException;
28 import com.android.vcard.exception.VCardVersionException;
70 * VCard Ndef Record objec
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java 16 package com.android.vcard.tests;
18 import com.android.vcard.VCardInterpreter;
19 import com.android.vcard.VCardParser;
20 import com.android.vcard.VCardParser_V21;
21 import com.android.vcard.VCardProperty;
22 import com.android.vcard.exception.VCardException;
119 .addExpectedOrder(Order.START_ENTRY) // First nested vCard begins
122 .addExpectedOrder(Order.END_ENTRY) // First nested vCard ends
123 .addExpectedOrder(Order.START_ENTRY) // Second nested vCard begins
126 .addExpectedOrder(Order.END_ENTRY) // Second nested vCard end
    [all...]
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;
  /frameworks/opt/vcard/java/com/android/vcard/exception/
VCardNestedException.java 17 package com.android.vcard.exception;
20 * VCardException thrown when VCard is nested without VCardParser's being notified.
VCardVersionException.java 16 package com.android.vcard.exception;
19 * VCardException used only when the version of the vCard is different.
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
  /frameworks/opt/vcard/tests/res/raw/
v21_japanese_2.vcf 1 BEGIN:VCARD
10 END:VCARD
  /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)
NfcImportVCardActivity.java 17 package com.android.contacts.common.vcard;
37 import com.android.vcard.VCardEntry;
38 import com.android.vcard.VCardEntryCounter;
39 import com.android.vcard.VCardParser;
40 import com.android.vcard.VCardParser_V21;
41 import com.android.vcard.VCardParser_V30;
42 import com.android.vcard.VCardSourceDetector;
43 import com.android.vcard.exception.VCardException;
44 import com.android.vcard.exception.VCardNestedException;
45 import com.android.vcard.exception.VCardVersionException
    [all...]
  /packages/apps/Bluetooth/
Android.mk 14 LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
  /packages/providers/ContactsProvider/
proguard.flags 5 -keep class com.android.vcard.VCardComposer {
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
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);
VCardVerifier.java 16 package com.android.vcard.tests.testutils;
27 import com.android.vcard.VCardComposer;
28 import com.android.vcard.VCardConfig;
29 import com.android.vcard.VCardEntryConstructor;
30 import com.android.vcard.VCardParser;
31 import com.android.vcard.VCardUtils;
32 import com.android.vcard.exception.VCardException;
43 * The class lets users checks that given expected vCard data are same as given actual vCard data.
44 * Able to verify both vCard importer/exporter
364 final String vcard = composer.createOneEntry(mockGetEntityIteratorMethod); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapUtils.java 26 import com.android.vcard.VCardComposer;
27 import com.android.vcard.VCardConfig;
42 import com.android.vcard.VCardComposer;
43 import com.android.vcard.VCardConfig;
60 // For vcard 2.0: VERSION,N,TEL is mandatory
61 // For vcard 3.0, VERSION,N,FN,TEL is mandatory
155 String vcard = null; local
163 vcard = composer.createOneEntry();
166 "Unable to create profile vcard. Error initializing composer: "
170 Log.e(TAG, "Unable to create profile vcard.", t)
    [all...]
  /packages/apps/ContactsCommon/res/values/
strings.xml 424 <!-- Message shown in a Dialog confirming a user's cancel request toward existing vCard import.
425 The argument is file name for the vCard import the user wants to cancel.
429 <!-- Message shown in a Dialog confirming a user's cancel request toward existing vCard export.
430 The argument is file name for the vCard export the user wants to cancel.
434 <!-- Title shown in a Dialog telling users cancel vCard import/export operation is failed. [CHAR LIMIT=40] -->
435 <string name="cancel_vcard_import_or_export_failed">Couldn\'t cancel vCard import/export</string>
440 <!-- The failed reason shown when vCard importer/exporter could not open the file
462 <!-- The failed reason shown when vCard exporter could not create a file for the vCard since
463 there are too many files relevant to vCard. [CHAR LIMIT=NONE] --
    [all...]

Completed in 265 milliseconds

1 23 4 5 6 7 8 9