/packages/apps/Launcher3/src/com/android/launcher3/model/ |
LoaderCursor.java | 110 titleIndex = getColumnIndexOrThrow(LauncherSettings.Favorites.TITLE); 154 info.title = getTitle(); 198 * Returns the title or empty string 201 String title = getString(titleIndex); local 202 return TextUtils.isEmpty(title) ? "" : Utilities.trim(title); 220 String title = getTitle(); local 221 if (!TextUtils.isEmpty(title)) { 222 info.title = Utilities.trim(title); [all...] |
/packages/apps/Settings/tests/robotests/src/com/android/settings/slices/ |
SliceBroadcastReceiverTest.java | 62 private final String fakeTitle = "title"; 364 values.put(SlicesDatabaseHelper.IndexColumns.TITLE, fakeTitle);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
GroupsTest.java | 210 values.put(Groups.TITLE, "title2");
|
LegacyContactsProviderTest.java | 351 values.put(Organizations.TITLE, "Member"); 384 values.put(Organizations.TITLE, "Member"); 394 values.put(Organizations.TITLE, "Chair"); [all...] |
SearchIndexManagerTest.java | 202 values.put(Organization.TITLE, "Director");
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaDocumentsProvider.java | 690 AudioColumns.TITLE + " LIKE ?", queryArgs, [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintListDialog.java | 81 super.setShellStyle(newShellStyle | SWT.TITLE | SWT.MODELESS | SWT.RESIZE);
|
/external/curl/packages/vms/ |
generate_vax_transfer.com | 235 .TITLE libcurl_xfer - Transfer vector for libcurl
|
/frameworks/base/core/java/android/provider/ |
CalendarContract.java | 58 * as event title, location, start time, end time, etc. The event can occur [all...] |
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 182 * Given to the ringtone picker as a {@link CharSequence}. The title to 186 public static final String EXTRA_RINGTONE_TITLE = "android.intent.extra.ringtone.TITLE"; 215 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 221 MediaStore.Audio.Media._ID, MediaStore.Audio.Media.TITLE, 234 * title. [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
AutoInstallsLayout.java | 127 private static final String ATTR_TITLE = "title"; 291 protected long addShortcut(String title, Intent intent, int type) { 294 mValues.put(Favorites.TITLE, title); 408 * Parses a web shortcut. Required attributes url, icon, title 548 final String title; local 551 title = mSourceRes.getString(titleResId); 553 title = mContext.getResources().getString(R.string.folder_name); 556 mValues.put(Favorites.TITLE, title); [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
FallbackSource.java | 350 kind.actionBody = new SimpleInflater(Organization.TITLE); 364 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,
|
ExchangeSource.java | 260 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title,
|
/prebuilts/go/darwin-x86/src/net/http/ |
sniff.go | 66 htmlSig("<TITLE"),
|
/prebuilts/go/linux-x86/src/net/http/ |
sniff.go | 66 htmlSig("<TITLE"),
|
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/ |
CalendarProvider2Test.java | 184 * specified by its name (or "title"). All of the event fields (the 408 int titleColumn = cursor.getColumnIndex(Events.TITLE); 411 String title = cursor.getString(titleColumn); local 423 title, date); 516 public EventInfo(String title, String startDate, String endDate, 518 init(title, startDate, endDate, allDay, DEFAULT_TIMEZONE); 522 public EventInfo(String title, String startDate, String endDate, 524 init(title, startDate, endDate, allDay, timezone); 527 public void init(String title, String startDate, String endDate, 529 mTitle = title; 1393 String title = "colorTest"; local [all...] |
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
CalendarDatabaseHelper.java | 85 Events.TITLE + "," + 529 CalendarContract.Events.TITLE + " TEXT," + 597 + "title TEXT," 666 "title TEXT," + [all...] |
/packages/apps/Calendar/src/com/android/calendar/ |
Event.java | 50 * 3) the title (unnecessary, but nice) 57 "begin ASC, end DESC, title ASC"; 59 "startDay ASC, endDay DESC, title ASC"; 67 Instances.TITLE, // 0 122 public CharSequence title; field in class:Event 161 e.title = title; 182 dest.title = title; 203 e.title = null [all...] |
/packages/apps/Calendar/src/com/android/calendar/month/ |
MonthByWeekFragment.java | 72 + Instances.START_MINUTE + "," + Instances.TITLE;
|
/packages/apps/Calendar/src/com/android/calendar/widget/ |
CalendarAppWidgetService.java | 73 Instances.TITLE, 263 updateTextView(views, R.id.title, eventInfo.visibTitle, eventInfo.title); 272 views.setInt(R.id.title, "setTextColor", displayColor); 276 views.setInt(R.id.title, "setTextColor", mAllDayColor); 286 views.setInt(R.id.title, "setTextColor", mDeclinedColor); 297 views.setInt(R.id.title, "setTextColor", mStandardColor);
|
/packages/apps/Contacts/src/com/android/contacts/ |
ContactSaveService.java | [all...] |
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
BaseAccountType.java | 371 kind.fieldList.add(new EditField(Organization.TITLE, R.string.ghostData_title, 637 final CharSequence titleValue = values.containsKey(Organization.TITLE) ? 638 values.getAsString(Organization.TITLE) : null; [all...] |
/packages/apps/DeskClock/src/com/android/deskclock/ringtone/ |
RingtonePickerActivity.java | 81 /** Key to an extra that defines resource id to the title of this activity. */ 111 /** The title of the default ringtone. */ 530 * This task locates a displayable string in the background that is fit for use as the title of 531 * the audio content. It adds a custom ringtone using the uri and title on the main thread. 552 // If the file was a media file, return its title. 553 final int titleIndex = cursor.getColumnIndex(MediaStore.Audio.Media.TITLE); 561 String title = cursor.getString(displayNameIndex); local 562 final int dotIndex = title.lastIndexOf("."); 564 title = title.substring(0, dotIndex) [all...] |
/packages/apps/Dialer/java/com/android/contacts/common/model/account/ |
BaseAccountType.java | 64 values.containsKey(Organization.TITLE) 65 ? values.getAsString(Organization.TITLE) 443 new EditField(Organization.TITLE, R.string.ghostData_title, FLAGS_GENERIC_NAME)); [all...] |
ExchangeAccountType.java | 296 new EditField(Organization.TITLE, R.string.ghostData_title, FLAGS_GENERIC_NAME));
|