HomeSort by relevance Sort by last modified time
    Searched refs:composer (Results 1 - 19 of 19) sorted by null

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VCardTest.java 41 final VCardComposer composer = new VCardComposer( local
43 assertTrue(composer.init());
44 int total = composer.getCount();
46 String vcard = composer.createOneEntry();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 57 * Searches for words in the dictionary that match the characters in the composer. Matched
59 * @param composer the key sequence to match
65 abstract public void getWords(final WordComposer composer,
72 * @param composer the key sequence to match
76 public void getBigrams(final WordComposer composer, final CharSequence previousWord,
DictionaryCollection.java 53 public void getWords(final WordComposer composer, final CharSequence prevWordForBigrams,
56 dict.getWords(composer, prevWordForBigrams, callback, proximityInfo);
60 public void getBigrams(final WordComposer composer, final CharSequence previousWord,
63 dict.getBigrams(composer, previousWord, callback);
  /frameworks/native/services/surfaceflinger/tests/screencap/
screencap.cpp 39 sp<ISurfaceComposer> composer; local
40 getService(name, &composer);
45 status_t err = composer->captureScreen(0, &heap, &w, &h, &f, 0, 0);
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ExportProcessor.java 98 VCardComposer composer = null; local
130 composer = new VCardComposer(mService, vcardType, true);
135 // composer = new VCardComposer(ExportVCardActivity.this, vcardType, true);
142 if (!composer.init(Contacts.CONTENT_URI, new String[] {Contacts._ID},
145 final String errorReason = composer.getErrorReason();
146 Log.e(LOG_TAG, "initialization of vCard composer failed: " + errorReason);
156 final int total = composer.getCount();
165 while (!composer.isAfterLast()) {
171 writer.write(composer.createOneEntry());
173 final String errorReason = composer.getErrorReason()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 108 BluetoothPbapCallLogComposer composer = new BluetoothPbapCallLogComposer(mContext); local
111 String vcard = composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number,
436 VCardComposer composer = null; local
448 composer = new VCardComposer(mContext, vcardType, true);
451 composer.setPhoneNumberTranslationCallback(
465 if (!composer.init(Contacts.CONTENT_URI, selection, null, Contacts._ID) ||
470 while (!composer.isAfterLast()) {
476 String vcard = composer.createOneEntry();
479 + composer.getErrorReason());
488 if (composer != null)
496 BluetoothPbapCallLogComposer composer = null; local
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
VCardVerifier.java 336 final VCardComposer composer = new VCardComposer(context, mVCardType, mCharset); local
339 if (!composer.init(cursor)) {
340 AndroidTestCase.fail("init() failed. Reason: " + composer.getErrorReason());
342 AndroidTestCase.assertFalse(composer.isAfterLast());
344 while (!composer.isAfterLast()) {
352 final String vcard = composer.createOneEntry(mockGetEntityIteratorMethod);
360 composer.terminate();
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 828 CodeAttributeComposer composer = new CodeAttributeComposer(); local
830 composer.beginCodeFragment(4);
831 composer.appendInstruction(0, new SimpleInstruction(InstructionConstants.OP_ICONST_0));
832 composer.appendInstruction(1, new VariableInstruction(InstructionConstants.OP_ISTORE, 0));
833 composer.appendInstruction(2, new BranchInstruction(InstructionConstants.OP_GOTO, 1));
835 composer.beginCodeFragment(4);
836 composer.appendInstruction(0, new VariableInstruction(InstructionConstants.OP_IINC, 0, 1));
837 composer.appendInstruction(1, new VariableInstruction(InstructionConstants.OP_ILOAD, 0));
838 composer.appendInstruction(2, new SimpleInstruction(InstructionConstants.OP_ICONST_5));
839 composer.appendInstruction(3, new BranchInstruction(InstructionConstants.OP_IFICMPLT, -3))
    [all...]
  /external/libmtp/examples/
tracks.c 35 if (track->composer != NULL)
36 printf(" Composer: %s\n", track->composer);
albums.c 32 printf(" Composer: %s\n", album->composer);
sendtr.c 58 fprintf(stderr, "-t <title> -a <artist> -A <Album artist> -w <writer or composer>\n");
106 album->composer != NULL &&
108 !strcmp(album->composer, albuminfo->composer))) {
167 char artist[80], albumartist[80], title[80], genre[80], album[80], composer[80]; local
223 pcomposer = prompt("Writer or Composer", composer, 80, 0);
290 printf("Writer or Composer: %s\n", pcomposer);
291 trackmeta->composer = strdup(pcomposer);
292 albuminfo->composer = strdup(pcomposer)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 760 final WordComposer composer = new WordComposer(); local
    [all...]
  /external/libmtp/src/
libmtp.c 157 char const * const composer,
169 char const * const composer,
545 register_property("Composer", LIBMTP_PROPERTY_Composer, PTP_OPC_Composer);
    [all...]
libmtp.h 630 char *composer; /**< Name of recording composer */ member in struct:LIBMTP_track_struct
672 char *composer; /**< Name of recording composer */ member in struct:LIBMTP_album_struct
    [all...]
libmtp.h.in 629 char *composer; /**< Name of recording composer */
671 char *composer; /**< Name of recording composer */
  /frameworks/native/libs/gui/
SurfaceTextureClient.cpp 273 sp<ISurfaceComposer> composer(
275 if (composer->authenticateSurfaceTexture(mSurfaceTexture)) {
BufferQueue.cpp 108 sp<ISurfaceComposer> composer(ComposerService::getComposerService());
109 mGraphicBufferAlloc = composer->createGraphicBufferAlloc();
    [all...]
  /frameworks/av/media/libstagefright/
SurfaceMediaSource.cpp 61 sp<ISurfaceComposer> composer(ComposerService::getComposerService());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 7502 final VCardComposer composer = local
    [all...]

Completed in 720 milliseconds