/packages/apps/TV/src/com/android/tv/ui/sidepanel/ |
SimpleItem.java | 20 * A simple item which shows title and description. 23 public SimpleItem(String title) { 24 super(title); 27 public SimpleItem(String title, String description) { 28 super(title, description);
|
SubMenuItem.java | 23 public SubMenuItem(String title, SideFragmentManager fragmentManager) { 24 this(title, null, 0, fragmentManager); 27 public SubMenuItem(String title, String description, SideFragmentManager fragmentManager) { 28 this(title, description, 0, fragmentManager); 31 public SubMenuItem(String title, int iconId, SideFragmentManager fragmentManager) { 32 this(title, null, iconId, fragmentManager); 35 public SubMenuItem(String title, String description, int iconId, 37 super(title, description, iconId);
|
RadioButtonItem.java | 22 public RadioButtonItem(String title) { 23 super(title, null); 26 public RadioButtonItem(String title, String description) { 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 | 18 void GDIGUISupport::postErrorMessage(const char *message, const char *title) 20 MessageBoxA(NULL, message, title, MB_ICONERROR);
|
GUISupport.h | 23 virtual void postErrorMessage(const char *message, const char *title) = 0;
|
gsupport.h | 12 void gs_postErrorMessage(gs_guiSupport *guiSupport, const char *message, const char *title);
|
GDIGUISupport.h | 25 virtual void postErrorMessage(const char *message, const char *title);
|
GnomeGUISupport.h | 25 virtual void postErrorMessage(const char *message, const char *title);
|
GnomeGUISupport.cpp | 22 void GnomeGUISupport::postErrorMessage(const char *message, const char *title) 28 s = g_strconcat(title, ":\n", message, NULL); 33 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...] |
/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...] |
/prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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...] |
/external/webrtc/webrtc/base/ |
windowpicker.h | 24 WindowDescription(const WindowId& id, const std::string& title) 25 : id_(id), title_(title) { 29 const std::string& title() const { return title_; } function in class:rtc::WindowDescription 30 void set_title(const std::string& title) { title_ = title; } 40 DesktopDescription(const DesktopId& id, const std::string& title) 41 : id_(id), title_(title), primary_(false) { 45 const std::string& title() const { return title_; } function in class:rtc::DesktopDescription 46 void set_title(const std::string& title) { title_ = title; } [all...] |
/developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
BasicNotificationDisplayActivity.java | 27 public static final String EXTRA_TITLE = "title"; 34 String title = getIntent().getStringExtra(EXTRA_TITLE); local 36 ((TextView) findViewById(R.id.title)).setText(title);
|
/developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/ |
BasicNotificationDisplayActivity.java | 27 public static final String EXTRA_TITLE = "title"; 34 String title = getIntent().getStringExtra(EXTRA_TITLE); local 36 ((TextView) findViewById(R.id.title)).setText(title);
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
BasicNotificationDisplayActivity.java | 27 public static final String EXTRA_TITLE = "title"; 34 String title = getIntent().getStringExtra(EXTRA_TITLE); local 36 ((TextView) findViewById(R.id.title)).setText(title);
|