HomeSort by relevance Sort by last modified time
    Searched refs:title (Results 1 - 25 of 3656) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/TV/src/com/android/tv/ui/sidepanel/
SimpleActionItem.java 19 /** A simple item which shows title and description. */
21 public SimpleActionItem(String title) {
22 super(title);
25 public SimpleActionItem(String title, String description) {
26 super(title, description);
RadioButtonItem.java 22 public RadioButtonItem(String title) {
23 super(title, null);
26 public RadioButtonItem(String title, String description) {
27 super(title, description);
SubMenuItem.java 22 public SubMenuItem(String title, SideFragmentManager fragmentManager) {
23 this(title, null, fragmentManager);
26 public SubMenuItem(String title, String description, SideFragmentManager fragmentManager) {
27 super(title, description);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/pie/
Segment.java 23 private String title; field in class:Segment
27 public Segment(String title, Number value) {
28 this.title = title;
34 return title;
37 public void setTitle(String title) {
38 this.title = title;
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssItem.java 24 public String title; field in class:RssItem
29 public RssItem(String url, String title){
31 this.title = title;
35 return title;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue55/
Post.java 19 private String title; field in class:Post
30 public Post(String title, String text) {
31 this.title = title;
36 return title;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/device/
Window.java 22 private String title; field in class:Window
25 public Window(String title, int hashCode) {
26 this.title = title;
31 return title;
44 return title;
  /external/icu/icu4c/source/samples/layout/
GDIGUISupport.cpp 24 void GDIGUISupport::postErrorMessage(const char *message, const char *title)
26 MessageBoxA(NULL, message, title, MB_ICONERROR);
GUISupport.h 29 virtual void postErrorMessage(const char *message, const char *title) = 0;
gsupport.h 15 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
GDIGUISupport.h 31 virtual void postErrorMessage(const char *message, const char *title);
GnomeGUISupport.h 31 virtual void postErrorMessage(const char *message, const char *title);
GnomeGUISupport.cpp 28 void GnomeGUISupport::postErrorMessage(const char *message, const char *title)
34 s = g_strconcat(title, ":\n", message, NULL);
39 fprintf(stderr, "%s: %s\n", title, message);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue73/
Post.java 20 private String title; field in class:Post
26 public Post(String title, String text) {
28 this.title = title;
33 return title;
41 return title.compareTo(o.title);
60 return "Post " + title + " " + text;
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue97/
Post.java 20 private String title; field in class:Post
24 return title;
32 return title.compareTo(o.title);
  /external/proguard/src/proguard/gui/
MessageDialogRunnable.java 36 private final String title; field in class:MessageDialogRunnable
46 String title,
53 title,
69 String title,
74 this.title = title;
86 title,
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Container.java 19 private String title; field in class:Container
24 this("no title");
27 public Container(String title) {
28 this.title = title;
41 return title.equals(c.title);
49 return title.hashCode();
54 return "Container=" + title;
74 return title;
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/voicemail/listui/error/
VoicemailTosMessage.java 22 public VoicemailTosMessage(CharSequence title, CharSequence description, Action... actions) {
23 super(title, description, actions);
  /platform_testing/libraries/app-helpers/interfaces/handheld/src/android/platform/helpers/
IGoogleDocsHelper.java 34 * @param title The title (case sensitive) of the document as is displayed in the app.
36 public void openDoc(String title);
  /packages/apps/Bluetooth/src/com/android/bluetooth/newavrcp/helpers/
Folder.java 22 public String title; field in class:Folder
27 title = t;
32 return new Folder(mediaId, isPlayable, title);
  /external/trappy/trappy/
pid_controller.py 35 def plot_controller(self, title="", width=None, height=None, ax=None):
41 :param title: The title of the plot
42 :type title: str
52 title = trappy.plot_utils.normalize_title("PID", title)
58 trappy.plot_utils.post_plot_setup(ax, title=title)
  /external/python/cpython2/Lib/lib-tk/
tkMessageBox.py 20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, message, WARNING, OK, **options
    [all...]
  /external/python/cpython3/Lib/tkinter/
messagebox.py 20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, message, WARNING, OK, **options
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkMessageBox.py 20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, message, WARNING, OK, **options
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkMessageBox.py 20 # - title: dialog title
67 def _show(title=None, message=None, _icon=None, _type=None, **options):
70 if title: options["title"] = title
81 def showinfo(title=None, message=None, **options):
83 return _show(title, message, INFO, OK, **options)
85 def showwarning(title=None, message=None, **options):
87 return _show(title, message, WARNING, OK, **options
    [all...]

Completed in 1371 milliseconds

1 2 3 4 5 6 7 8 91011>>