Home | History | Annotate | Download | only in vcard

Lines Matching defs:is

11  * distributed under the License is distributed on an "AS IS" BASIS,
81 * an Account and posssibly a file if there's no Uri is given from its caller Activity.
83 * Note that this Activity assumes that the instance is a "one-shot Activity", which will be
85 * any Dialog in the instance. So this code is careless about the management around managed
86 * dialogs stuffs (like how onCreateDialog() is used).
213 * We need to cache given files into local storage. One of reasons is that some data (as Uri)
241 Log.w(LOG_TAG, "WakeLock is being held.");
251 + "after a service connection is established");
257 Log.i(LOG_TAG, "vCard cache operation is canceled.");
263 // it is not from local storage (e.g. "file:///...") but from some special
276 Log.e(LOG_TAG, "Maybe the file is in wrong format", e);
300 Log.i(LOG_TAG, "vCard cache operation is canceled.");
304 Log.w(LOG_TAG, "destUri is null");
339 Log.e(LOG_TAG, "Maybe the file is in wrong format", e);
348 Log.i(LOG_TAG, "vCard cache operation is canceled.");
445 InputStream is;
447 is = new ByteArrayInputStream(data);
449 is = resolver.openInputStream(localDataUri);
457 mVCardParser.parse(is);
460 is.close();
466 is = new ByteArrayInputStream(data);
468 is = resolver.openInputStream(localDataUri);
476 mVCardParser.parse(is);
481 if (is != null) {
483 is.close();
491 Log.w(LOG_TAG, "Nested Exception is found (it may be false-positive).");
580 // Some file is selected.
604 * a vCard file is shown. After the choice, VCardReadThread starts running.
808 // The value set to RelativeSizeSpan is arbitrary. You can change it to any other
963 Log.e(LOG_TAG, "Error message is null while it must not.");
994 Log.i(LOG_TAG, "Cache thread is still running. Show progress dialog again.");
1001 * - When there's no SDCard available, an error dialog is shown.