Searched defs:title (Results 1 - 25 of 200) sorted by relevance

12345678

/packages/apps/Camera2/src/com/android/camera/session/
H A DSessionStorageManager.java52 * @param title the title of this session. Will be used to create a unique
59 public File createTemporaryOutputPath(String subDirectory, String title) throws IOException; argument
H A DCaptureSessionFactory.java28 * @param title the title of the new session.
34 SessionNotifier sessionNotifier, String title,
33 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartMillis, Location location) argument
H A DStackSaver.java32 * @param title the title of this image, without the file extension
41 public Uri saveStackedImage(File inputImagePath, String title, int width, int height, argument
H A DTemporarySessionFile.java41 sessionDirectory, String title) {
44 mTitle = title;
40 TemporarySessionFile(SessionStorageManager sessionStorageManager, String sessionDirectory, String title) argument
H A DCaptureSessionFactoryImpl.java42 SessionNotifier sessionNotifier, String title, long sessionStartTime,
45 mSessionStorageManager, TEMP_SESSIONS, title);
46 return new CaptureSessionImpl(title, sessionStartTime, location, temporarySessionFile,
48 mStackSaverFactory.create(title, location));
41 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartTime, Location location) argument
H A DSessionStorageManagerImpl.java85 public File createTemporaryOutputPath(String subDirectory, String title) throws IOException { argument
89 getSessionDirectory(subDirectory), title);
97 File tempFile = new File(tempDirectory, title + ".jpg");
/packages/apps/Launcher3/src/com/android/launcher3/widget/
H A DWidgetsRowViewHolder.java27 public final BubbleTextView title; field in class:WidgetsRowViewHolder
33 title = (BubbleTextView) v.findViewById(R.id.section);
/packages/apps/TV/src/com/android/tv/ui/sidepanel/
H A DSimpleItem.java20 * A simple item which shows title and description.
23 public SimpleItem(String title) { argument
24 super(title);
27 public SimpleItem(String title, String description) { argument
28 super(title, description);
H A DActionItem.java30 public ActionItem(String title) { argument
31 this(title, null, 0);
34 public ActionItem(String title, String description) { argument
35 this(title, description, 0);
38 public ActionItem(String title, int iconId) { argument
39 this(title, null, iconId);
42 public ActionItem(String title, String description, int iconId) { argument
43 mTitle = title;
56 TextView titleView = (TextView) view.findViewById(R.id.title);
H A DCheckBoxItem.java31 public CheckBoxItem(String title) { argument
32 this(title, null);
35 public CheckBoxItem(String title, String description) { argument
36 this(title, description, false);
39 public CheckBoxItem(String title, String description, boolean layoutForLargeDescription) { argument
40 super(title, description);
H A DDividerItem.java30 public DividerItem(String title) { argument
31 mTitle = title;
42 mTitleView = (TextView) view.findViewById(R.id.title);
H A DRadioButtonItem.java22 public RadioButtonItem(String title) { argument
23 super(title, null);
26 public RadioButtonItem(String title, String description) { argument
27 super(title, description);
H A DSubMenuItem.java23 public SubMenuItem(String title, SideFragmentManager fragmentManager) { argument
24 this(title, null, 0, fragmentManager);
27 public SubMenuItem(String title, String description, SideFragmentManager fragmentManager) { argument
28 this(title, description, 0, fragmentManager);
31 public SubMenuItem(String title, int iconId, SideFragmentManager fragmentManager) { argument
32 this(title, null, iconId, fragmentManager);
35 public SubMenuItem(String title, String description, int iconId, argument
37 super(title, description, iconId);
H A DSwitchItem.java22 public SwitchItem(String title) { argument
23 this(title, null, null);
/packages/apps/Camera2/src/com/android/camera/captureintent/
H A DCaptureIntentSessionFactory.java32 SessionNotifier sessionNotifier, String title, long sessionStartTime,
34 return new CaptureIntentSession(title, location, sessionManager, sessionNotifier);
31 createNewSession(CaptureSessionManager sessionManager, SessionNotifier sessionNotifier, String title, long sessionStartTime, Location location) argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactListPinnedHeaderView.java73 * Sets section header or makes it invisible if the title is null.
75 public void setSectionHeaderTitle(String title) { argument
76 if (!TextUtils.isEmpty(title)) {
77 setText(title);
/packages/apps/Launcher3/tests/src/com/android/launcher3/allapps/
H A DDefaultAppSearchAlgorithmTest.java76 private AppInfo getInfo(String title) { argument
78 info.title = title;
79 info.componentName = new ComponentName("Test", title);
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DDialogActivity.java47 public void setHeading(CharSequence title) { argument
48 mTitleView.setText(title);
/packages/apps/Settings/src/com/android/settings/
H A DConfirmDeviceCredentialActivity.java41 public static Intent createIntent(CharSequence title, CharSequence details) { argument
45 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
50 public static Intent createIntent(CharSequence title, CharSequence details, long challenge) { argument
54 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
66 String title = intent.getStringExtra(KeyguardManager.EXTRA_TITLE);
77 // if the client app did not hand in a title and we are about to show the work challenge,
78 // check whether there is a policy setting the organization name and use that as title
79 if ((title == null) && isManagedProfile) {
80 title = getTitleFromOrganizationName(userId);
93 0 /* request code */, null /* title */, titl
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DShortcutPreference.java30 int title) {
34 mTitle = title;
29 ShortcutPreference(Context context, Class target, String prefKey, int prefTitle, int title) argument
/packages/apps/Settings/src/com/android/settings/notification/
H A DZenRuleInfo.java18 if (title != null ? !title.equals(that.title) : that.title != null) return false;
33 public String title; field in class:ZenRuleInfo
/packages/apps/Settings/src/com/android/settings/search/
H A DSearchIndexableRaw.java34 public String title; field in class:SearchIndexableRaw
57 * Fragment's or Activity's title associated with the raw data.
/packages/apps/TV/tests/common/src/com/android/tv/testing/uihelper/
H A DSidePanelHelper.java50 String title = mTargetResources.getString(resId);
51 return assertNavigateToItem(title);
54 public UiObject2 assertNavigateToItem(String title) { argument
60 .assertNavigateTo(mUiDevice, sidePanelList, By.hasDescendant(By.text(title)),
/packages/services/Car/car-support-lib/src/android/support/car/ui/
H A DCarListItemViewHolder.java32 public final TextView title; field in class:CarListItemViewHolder
43 title = (TextView) v.findViewById(R.id.title);
/packages/apps/Camera2/src/com/android/camera/data/
H A DVideoItemData.java31 public VideoItemData(long contentId, String title, String mimeType, Date creationDate, argument
35 super(contentId, title, mimeType, creationDate, lastModifiedDate, filePath, uri, dimensions,

Completed in 274 milliseconds

12345678