/external/toybox/kconfig/lxdialog/ |
dialog.h | 108 struct dialog_color title; member in struct:dialog_info 197 void print_title(WINDOW *dialog, const char *title, int width); 203 int dialog_yesno(const char *title, const char *prompt, int height, int width); 204 int dialog_msgbox(const char *title, const char *prompt, int height, 206 int dialog_textbox(const char *title, const char *file, int height, int width); 207 int dialog_menu(const char *title, const char *prompt, 209 int dialog_checklist(const char *title, const char *prompt, int height, 212 int dialog_inputbox(const char *title, const char *prompt, int height,
|
/external/wpa_supplicant_8/hs20/server/www/ |
signup.php | 3 <title>Hotspot 2.0 signup</title>
|
/external/wpa_supplicant_8/src/utils/ |
wpa_debug.h | 78 * @title: title of for the message 86 void wpa_hexdump(int level, const char *title, const void *buf, size_t len); 88 static inline void wpa_hexdump_buf(int level, const char *title, 91 wpa_hexdump(level, title, buf ? wpabuf_head(buf) : NULL, 98 * @title: title of for the message 108 void wpa_hexdump_key(int level, const char *title, const void *buf, size_t len); 110 static inline void wpa_hexdump_buf_key(int level, const char *title, 113 wpa_hexdump_key(level, title, buf ? wpabuf_head(buf) : NULL [all...] |
/frameworks/base/core/java/com/android/internal/view/menu/ |
ActionMenuItem.java | 60 CharSequence title) { 66 mTitle = title; 191 public MenuItem setTitle(CharSequence title) { 192 mTitle = title; 196 public MenuItem setTitle(int title) { 197 mTitle = mContext.getResources().getString(title); 201 public MenuItem setTitleCondensed(CharSequence title) { 202 mTitleCondensed = title;
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/internal/view/menu/ |
BridgeMenuItemImpl.java | 41 CharSequence title, int showAsAction) { 42 super(menu, group, id, categoryOrder, ordering, title, showAsAction);
|
/frameworks/support/design/src/android/support/design/internal/ |
NavigationMenu.java | 38 public SubMenu addSubMenu(int group, int id, int categoryOrder, CharSequence title) { 39 final MenuItemImpl item = (MenuItemImpl) addInternal(group, id, categoryOrder, title);
|
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/ |
MenuWrapperICS.java | 39 public MenuItem add(CharSequence title) { 40 return getMenuItemWrapper(mWrappedObject.add(title)); 49 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { 50 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, title)); 59 public SubMenu addSubMenu(CharSequence title) { 60 return getSubMenuWrapper(mWrappedObject.addSubMenu(title)); 69 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) { 70 return getSubMenuWrapper(mWrappedObject.addSubMenu(groupId, itemId, order, title));
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupListItem.java | 32 String title, boolean isFirstGroupInAccount, int memberCount) { 37 mTitle = title;
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
GroupMetaData.java | 32 String title, boolean defaultGroup, boolean favorites) { 37 this.mTitle = title;
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
ShortcutInfo.java | 67 title = info.title.toString(); 81 title = info.title.toString(); 125 String titleStr = title != null ? title.toString() : null; 126 values.put(LauncherSettings.BaseLauncherColumns.TITLE, titleStr); 152 return "ShortcutInfo(title=" + title.toString() + "intent=" + intent + "id=" + this.id 162 Log.d(tag, " title=\"" + info.title + " icon=" + info.mIco [all...] |
/packages/apps/Nfc/src/com/android/nfc/ |
TechListChooserActivity.java | 43 CharSequence title = getResources().getText(com.android.internal.R.string.chooseActivity); local 44 super.onCreate(savedInstanceState, target, title, null, rList, false);
|
/packages/apps/Settings/src/com/android/settings/applications/ |
ShortcutPreference.java | 30 int title) { 34 mTitle = title;
|
/packages/apps/TV/src/com/android/tv/customization/ |
CustomAction.java | 35 public CustomAction(int positionPriority, String title, Drawable iconDrawable, Intent intent) { 37 mTitle = title; 58 * Returns title.
|
/packages/apps/TV/src/com/android/tv/menu/ |
ItemListRow.java | 38 public ItemListRow(Context context, Menu menu, String title, int itemHeightResId, 40 super(context, menu, title, itemHeightResId);
|
MenuRow.java | 23 * It contains the data such as title to represent a row. 38 public MenuRow(Context context, Menu menu, String title, int heightResId) { 40 mTitle = title; 60 * Returns the title of this row. 114 * Returns whether to hide the title when the row is selected.
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/ |
FormPage.java | 59 * @param title the title of this form page. Should be unique for this 63 public static FormPage createPasswordInputForm(String title) { 64 return new FormPage(title, Type.PASSWORD_INPUT, null, null); 70 * @param title the title of this form page. Should be unique for this 74 public static FormPage createTextInputForm(String title) { 75 return new FormPage(title, Type.TEXT_INPUT, null, null); 81 * @param title the title of this form page. Should be unique for thi [all...] |
/packages/experimental/MultiPackageApk/src/foo/bar/multi/ |
MyActivity.java | 45 TextView title = (TextView) findViewById(foo.bar.multi.parent.R.id.text); local 46 title.setText("Process: " + processName);
|
/prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/ |
SDL_messagebox.h | 90 * \brief MessageBox structure containing title, text, window, etc. 96 const char *title; /**< UTF-8 title */ member in struct:__anon44892 108 * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc. 125 * \param title UTF-8 title text 133 extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
|
/prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/ |
SDL_messagebox.h | 90 * \brief MessageBox structure containing title, text, window, etc. 96 const char *title; /**< UTF-8 title */ member in struct:__anon45001 108 * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc. 125 * \param title UTF-8 title text 133 extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
|
/prebuilts/misc/windows/sdl2/include/ |
SDL_messagebox.h | 90 * \brief MessageBox structure containing title, text, window, etc. 96 const char *title; /**< UTF-8 title */ member in struct:__anon45080 108 * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc. 125 * \param title UTF-8 title text 133 extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
|
/prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/ |
SDL_messagebox.h | 90 * \brief MessageBox structure containing title, text, window, etc. 96 const char *title; /**< UTF-8 title */ member in struct:__anon45174 108 * \param messageboxdata The SDL_MessageBoxData structure with title, text, etc. 125 * \param title UTF-8 title text 133 extern DECLSPEC int SDLCALL SDL_ShowSimpleMessageBox(Uint32 flags, const char *title, const char *message, SDL_Window *window);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
SelectThemeAction.java | 33 public SelectThemeAction(ConfigurationChooser configuration, String title, String theme, 35 super(title, IAction.AS_RADIO_BUTTON);
|
/art/tools/ahat/src/ |
RootedHandler.java | 33 doc.title("Rooted");
|
/cts/tests/tests/preference2/src/android/preference2/cts/ |
DialogPreferenceTest.java | 44 String title = (String) mDialogPreference.getTitle(); local 46 assertEquals(titleExp, title); 50 String title = (String) mDialogPreference.getDialogTitle(); local 53 assertEquals(titleExp, title);
|
/developers/build/prebuilts/gradle/FindMyPhone/Wearable/src/main/java/com/example/android/wearable/findphone/ |
FindPhoneActivity.java | 51 // Use a spannable string for the notification title to resize it. 52 SpannableString title = new SpannableString(getString(R.string.app_name)); local 53 title.setSpan(new RelativeSizeSpan(0.85f), 0, title.length(), Spannable.SPAN_POINT_MARK); 55 .setContentTitle(title)
|