HomeSort by relevance Sort by last modified time
    Searched refs:getString (Results 301 - 325 of 1127) sorted by null

<<11121314151617181920>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CommonNicknameCache.java 78 String normalizedName = cursor.getString(NicknameLookupPreloadQuery.NAME);
143 clusters[i] = cursor.getString(NicknameLookupQuery.CLUSTER);
  /frameworks/base/core/java/android/provider/
Settings.java 614 public String getString(ContentResolver cr, String name) {
672 String value = c.moveToNext() ? c.getString(0) : null;
745 public synchronized static String getString(ContentResolver resolver, String name) {
749 return Secure.getString(resolver, name);
755 return sNameValueCache.getString(resolver, name);
804 String v = getString(cr, name);
832 String v = getString(cr, name);
872 String valString = getString(cr, name);
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppNotification.java 235 String fileName = cursor.getString(dataIndex);
237 fileName = cursor.getString(filenameHintIndex);
240 fileName = mContext.getString(R.string.unknown_file);
254 item.description = mContext.getString(R.string.notification_sending, fileName);
257 .getString(R.string.notification_receiving, fileName);
372 title = mContext.getString(R.string.outbound_noti_title);
373 caption = mContext.getString(R.string.noti_caption, outboundSuccNumber,
419 title = mContext.getString(R.string.inbound_noti_title);
420 caption = mContext.getString(R.string.noti_caption, inboundSuccNumber,
448 String title = mContext.getString(R.string.incoming_file_confirm_Notification_title)
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
ContentResolverTest.java 155 assertEquals(KEY3, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
160 assertEquals(KEY2, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
172 assertEquals(KEY1, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
184 assertEquals(KEY3, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
371 assertEquals(key4, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
387 assertEquals(key5, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
433 assertEquals(key5, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
438 assertEquals(key4, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
493 assertEquals(KEY1, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)));
498 assertEquals(KEY3, mCursor.getString(mCursor.getColumnIndexOrThrow(COLUMN_KEY_NAME)))
    [all...]
  /packages/apps/Music/src/com/android/music/
AlbumBrowserActivity.java 92 mCurrentAlbumId = icicle.getString("selectedalbum");
93 mArtistId = icicle.getString("artist");
259 fancyName = mAlbumCursor.getString(
280 mCurrentAlbumId = mAlbumCursor.getString(mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Albums._ID));
281 mCurrentAlbumName = mAlbumCursor.getString(mAlbumCursor.getColumnIndexOrThrow(MediaStore.Audio.Albums.ALBUM));
282 mCurrentArtistNameForAlbum = mAlbumCursor.getString(
289 menu.setHeaderTitle(getString(R.string.unknown_album_name));
331 f = getString(R.string.delete_album_desc);
333 f = getString(R.string.delete_album_desc_nosdcard);
375 title = getString(R.string.mediasearch, title)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoActivity.java 355 mCalendarOwnerAccount = mCalendarsCursor.getString(CALENDARS_INDEX_OWNER_ACCOUNT);
358 String displayName = mCalendarsCursor.getString(CALENDARS_INDEX_DISPLAY_NAME);
361 String eventOrganizer = mEventCursor.getString(EVENT_INDEX_ORGANIZER);
397 prefs.getString(CalendarPreferenceActivity.KEY_DEFAULT_REMINDER, "0");
461 setTitle(res.getString(R.string.event_info_title_invite));
463 setTitle(res.getString(R.string.event_info_title));
491 String rRule = mEventCursor.getString(EVENT_INDEX_RRULE);
521 String name = mAttendeesCursor.getString(ATTENDEES_INDEX_NAME);
522 String email = mAttendeesCursor.getString(ATTENDEES_INDEX_EMAIL);
784 String title = cursor.getString(EVENT_INDEX_TITLE)
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 343 return c.getString(COMMON_PROJECTION_COLUMN_TEXT);
377 mHtmlContent = c.getString(CONTENT_HTML_CONTENT_COLUMN);
378 mTextContent = c.getString(CONTENT_TEXT_CONTENT_COLUMN);
379 mHtmlReply = c.getString(CONTENT_HTML_REPLY_COLUMN);
380 mTextReply = c.getString(CONTENT_TEXT_REPLY_COLUMN);
382 mIntroText = c.getString(CONTENT_INTRO_TEXT_COLUMN);
657 mDisplayName = c.getString(CONTENT_DISPLAY_NAME_COLUMN);
659 mSubject = c.getString(CONTENT_SUBJECT_COLUMN);
665 mServerId = c.getString(CONTENT_SERVER_ID_COLUMN);
667 mClientId = c.getString(CONTENT_CLIENT_ID_COLUMN)
    [all...]
  /cts/tests/tests/net/src/android/net/http/cts/
SslCertificateTest.java 230 assertNotNull(saved.getString("issued-to"));
231 assertNotNull(saved.getString("issued-by"));
232 assertNotNull(saved.getString("valid-not-before"));
233 assertNotNull(saved.getString("valid-not-after"));
  /cts/tests/tests/provider/src/android/provider/cts/
Settings_SecureTest.java 83 method = "getString",
117 assertEquals("cts", Secure.getString(cr, "StringField"));
143 String name = c.getString(c.getColumnIndexOrThrow(Secure.NAME));
144 String store = Secure.getString(cr, name);
149 assertEquals("1", Secure.getString(cr, name));
  /dalvik/dx/src/com/android/dx/rop/cst/
CstBaseMethodRef.java 49 String descriptor = getNat().getDescriptor().getString();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LauncherShortcuts.java 132 intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.shortcut_name));
PersistentState.java 100 String restoredText = prefs.getString("text", null);
RedirectGetter.java 58 mTextPref = preferences.getString("text", null);
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ResourcesSample.java 35 * the Context class (an Activity is a Context) has a getString convenience
36 * method getString() that looks up a string resource.
38 * @see StyledText for more depth about using styled text, both with getString()
55 // ====== Using the Context.getString() convenience method ===========
57 // Using the getString() conevenience method, retrieve a string
66 str = getString(R.string.styled_text);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
RatingBar1.java 56 getString(R.string.ratingbar_rating) + " " + rating + "/" + numStars);
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 48 getString(R.string.live_folder_name));
TitleEditor.java 94 mText.setText(mCursor.getString(COLUMN_INDEX_TITLE));
  /development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionService.java 52 String resultType = prefs.getString(
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ServerParser.java 85 tok = this.lexer.getString('/');
  /external/proguard/src/proguard/classfile/
Clazz.java 71 public String getString(int constantIndex);
  /external/proguard/src/proguard/classfile/attribute/
Attribute.java 68 return clazz.getString(u2attributeNameIndex);
  /external/proguard/src/proguard/classfile/attribute/annotation/
Annotation.java 79 return clazz.getString(u2typeIndex);
  /external/skia/src/animator/
SkOperand.h 51 SkString* getString() { SkASSERT(fType == SkType_String); return fOperand.fString; }
  /external/svox/pico/src/com/svox/pico/providers/
SettingsProvider.java 54 public String getString(int column){
  /external/webkit/JavaScriptCore/runtime/
NativeErrorConstructor.cpp 36 : InternalFunction(&exec->globalData(), structure, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name).getString(exec)))

Completed in 924 milliseconds

<<11121314151617181920>>