OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VCardException
(Results
1 - 18
of
18
) sorted by null
/frameworks/opt/vcard/java/com/android/vcard/exception/
VCardException.java
18
public class
VCardException
extends java.lang.Exception {
20
* Constructs a
VCardException
object
22
public
VCardException
() {
27
* Constructs a
VCardException
object
31
public
VCardException
(String message) {
VCardInvalidLineException.java
23
public class VCardInvalidLineException extends
VCardException
{
VCardNotSupportedException.java
26
public class VCardNotSupportedException extends
VCardException
{
VCardVersionException.java
19
*
VCardException
used only when the version of the vCard is different.
21
public class VCardVersionException extends
VCardException
{
/frameworks/opt/vcard/java/com/android/vcard/
VCardParser.java
18
import com.android.vcard.exception.
VCardException
;
41
* @throws IOException,
VCardException
43
public abstract void parse(InputStream is) throws IOException,
VCardException
;
72
* @throws IOException,
VCardException
74
public abstract void parseOne(InputStream is) throws IOException,
VCardException
;
82
throws IOException,
VCardException
{
VCardParserImpl_V21.java
23
import com.android.vcard.exception.
VCardException
;
192
* @throws
VCardException
when the stream reached end of line
194
protected String getNonEmptyLine() throws IOException,
VCardException
{
199
throw new
VCardException
("Reached end of buffer.");
214
private boolean parseOneVCard() throws IOException,
VCardException
{
236
* @throws
VCardException
238
protected boolean readBeginVCard(boolean allowGarbage) throws IOException,
VCardException
{
261
throw new
VCardException
("Expected String \"BEGIN:VCARD\" did not come "
266
throw new
VCardException
("Reached where must not be reached.");
278
protected void parseItems() throws IOException,
VCardException
{
[
all
...]
VCardParser_V21.java
18
import com.android.vcard.exception.
VCardException
;
107
public void parse(InputStream is) throws IOException,
VCardException
{
112
public void parseOne(InputStream is) throws IOException,
VCardException
{
VCardParser_V30.java
18
import com.android.vcard.exception.
VCardException
;
86
public void parse(InputStream is) throws IOException,
VCardException
{
91
public void parseOne(InputStream is) throws IOException,
VCardException
{
VCardParser_V40.java
18
import com.android.vcard.exception.
VCardException
;
74
public void parse(InputStream is) throws IOException,
VCardException
{
79
public void parseOne(InputStream is) throws IOException,
VCardException
{
VCardParserImpl_V30.java
20
import com.android.vcard.exception.
VCardException
;
78
protected String getNonEmptyLine() throws IOException,
VCardException
{
91
throw new
VCardException
("Reached end of buffer.");
124
throw new
VCardException
("Space exists at the beginning of the line");
148
protected boolean readBeginVCard(boolean allowGarbage) throws IOException,
VCardException
{
158
throws
VCardException
{
161
} catch (
VCardException
e) {
168
throw new
VCardException
(
321
throws IOException,
VCardException
{
328
throw new
VCardException
("File ended during parsing BASE64 binary")
[
all
...]
VCardUtils.java
25
import com.android.vcard.exception.
VCardException
;
820
throws
VCardException
{
828
throw new
VCardException
("Version is not specified");
[
all
...]
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
PropertyNodesVerifier.java
22
import com.android.vcard.exception.
VCardException
;
46
public void verify(int resId, int vcardType) throws IOException,
VCardException
{
51
throws IOException,
VCardException
{
56
public void verify(InputStream is, int vcardType) throws IOException,
VCardException
{
62
throws IOException,
VCardException
{
VCardVerifier.java
32
import com.android.vcard.exception.
VCardException
;
257
} catch (
VCardException
e) {
261
Log.e(LOG_TAG, "
VCardException
", e);
262
AndroidTestCase.fail("Unexpected
VCardException
: " + e.getMessage());
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java
22
import com.android.vcard.exception.
VCardException
;
92
public void testSimple() throws IOException,
VCardException
{
110
public void testNest() throws IOException,
VCardException
{
143
public void testParseOne() throws IOException,
VCardException
{
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportProcessor.java
31
import com.android.vcard.exception.
VCardException
;
265
} catch (
VCardException
e) {
NfcImportVCardActivity.java
43
import com.android.vcard.exception.
VCardException
;
127
} catch (
VCardException
e) {
ImportVCardActivity.java
57
import com.android.vcard.exception.
VCardException
;
275
} catch (
VCardException
e) {
338
} catch (
VCardException
e) {
438
throws IOException,
VCardException
{
478
throw new
VCardException
("vCard with unspported version.");
[
all
...]
/packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java
27
import com.android.vcard.exception.
VCardException
;
117
private ArrayList<VCardEntry> getVCardEntries() throws IOException,
VCardException
{
Completed in 366 milliseconds