Home | History | Annotate | Download | only in vcard

Lines Matching defs:composer

101         VCardComposer composer = null;
133 composer = new VCardComposer(mService, vcardType, true);
138 // composer = new VCardComposer(ExportVCardActivity.this, vcardType, true);
145 if (!composer.init(Contacts.CONTENT_URI, new String[] {Contacts._ID},
148 final String errorReason = composer.getErrorReason();
149 Log.e(LOG_TAG, "initialization of vCard composer failed: " + errorReason);
159 final int total = composer.getCount();
168 while (!composer.isAfterLast()) {
174 writer.write(composer.createOneEntry());
176 final String errorReason = composer.getErrorReason();
207 if (composer != null) {
208 composer.terminate();