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

1 2 3 4 5 6 78 91011>>

  /development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DataFragment.java 55 public void appendItem(String title, String text) {
60 mDataItemListAdapter.add(new Event(title, text));
87 holder.text1.setText(event.title);
101 String title; field in class:DataFragment.Event
104 public Event(String title, String text) {
105 this.title = title;
  /external/parameter-framework/upstream/test/functional-tests/
FloatingPoint.cpp 66 GIVEN ("intentional error: " + vec.title) {
90 GIVEN ("Invalid value " + vec.title) {
99 GIVEN ("A valid value " + vec.title) {
123 GIVEN ("Invalid value " + vec.title) {
138 GIVEN ("A valid value " + vec.title) {
161 GIVEN ("A valid value " + vec.title) {
171 GIVEN ("An invalid value " + vec.title) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestMenu.java 27 public MenuItem add(CharSequence title) {
28 return add(0, 0, 0, title);
37 public MenuItem add(int groupId, int itemId, int order, CharSequence title) {
41 menuItem.setTitle(title);
51 public SubMenu addSubMenu(CharSequence title) {
55 menuItem.setTitle(title);
71 public SubMenu addSubMenu(int groupId, int itemId, int order, CharSequence title) {
76 menuItem.setTitle(title);
173 public TestMenuItem findMenuItem(CharSequence title) {
176 if (menuItem.getTitle().equals(title)) {
    [all...]
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 51 Placeholder(String title, Uri uri, long timestamp) {
52 outputTitle = title;
65 * @param title the title of the item
71 public Placeholder insertEmptyPlaceholder(String title, Size size, long timestamp) {
73 return new Placeholder(title, uri, timestamp);
79 * @param title the title of the item
85 public Placeholder insertPlaceholder(String title, Bitmap placeholder, long timestamp) {
86 if (title == null || placeholder == null)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
DropdownBreadcrumb.java 125 final TextView title = (TextView) convertView.findViewById(android.R.id.title); local
130 title.setText(root.title);
132 title.setText(doc.displayName);
145 final TextView title = (TextView) convertView.findViewById(android.R.id.title); local
150 title.setText(root.title);
152 title.setText(doc.displayName)
    [all...]
  /packages/apps/Settings/src/com/android/settings/password/
ConfirmDeviceCredentialActivity.java 42 public static Intent createIntent(CharSequence title, CharSequence details) {
46 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
51 public static Intent createIntent(CharSequence title, CharSequence details, long challenge) {
55 intent.putExtra(KeyguardManager.EXTRA_TITLE, title);
67 String title = intent.getStringExtra(KeyguardManager.EXTRA_TITLE); local
82 // if the client app did not hand in a title and we are about to show the work challenge,
83 // check whether there is a policy setting the organization name and use that as title
84 if ((title == null) && isManagedProfile) {
85 title = getTitleFromOrganizationName(userId);
94 launched = helper.launchFrpConfirmationActivity(0, title, details, alternateButton)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
IpSettingsState.java 106 CharSequence title; local
108 title = mAdvancedOptionsFlowInfo.get(AdvancedOptionsFlowInfo.IP_SETTINGS);
111 title = getString(R.string.wifi_action_static);
113 title = getString(R.string.wifi_action_dhcp);
115 moveToPosition(title);
118 private void moveToPosition(CharSequence title) {
119 if (title == null) return;
121 if (TextUtils.equals(getActions().get(i).getTitle(), title)) {
133 .title(getString(R.string.wifi_action_dhcp))
137 .title(getString(R.string.wifi_action_static)
    [all...]
  /cts/tests/leanbackjank/app/src/android/leanbackjank/app/data/
VideoProvider.java 47 String title = new String(); local
54 title = String.format("Video %d-%d", i, j);
56 Movie movie = buildMovieInfo(category_name, title, description, studio);
66 String title,
72 movie.setTitle(title);
  /developers/build/prebuilts/gradle/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/
NavigationDrawerActivity.kt 71 val drawerTitle = title
72 newTitle = title
101 actionBar.title = newTitle
106 actionBar.title = drawerTitle
144 putExtra(SearchManager.QUERY, actionBar.title)
163 override fun setTitle(title: CharSequence) {
164 newTitle = title
165 actionBar.title = title
190 title = planetTitles[position
    [all...]
  /developers/samples/android/ui/transition/FragmentTransition/Application/src/main/java/com/example/android/fragmenttransition/
MeatAdapter.java 60 holder.title = (TextView) view.findViewById(R.id.title);
73 holder.title.setText(meat.title);
78 public TextView title; field in class:MeatAdapter.ViewHolder
  /developers/samples/android/ui/views/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/
NavigationDrawerActivity.kt 71 val drawerTitle = title
72 newTitle = title
101 actionBar.title = newTitle
106 actionBar.title = drawerTitle
144 putExtra(SearchManager.QUERY, actionBar.title)
163 override fun setTitle(title: CharSequence) {
164 newTitle = title
165 actionBar.title = title
190 title = planetTitles[position
    [all...]
  /external/toolchain-utils/crosperf/
column_chart.py 8 def __init__(self, title, width, height):
9 self.title = title
10 self.chart_div = filter(str.isalnum, title)
48 chart_%s.draw(data, {width: %s, height: %s, title: '%s', legend: 'none',
55 self.title, series_javascript)
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/inputmethod/
InputMethodSubtypePreference.java 53 final CharSequence title,
59 setTitle(title);
89 final CharSequence title = getTitle(); local
91 final boolean emptyTitle = TextUtils.isEmpty(title);
94 return collator.compare(title.toString(), rhsTitle.toString());
  /packages/apps/Settings/src/com/android/settings/widget/
RadioButtonPreference.java 85 TextView title = (TextView) view.findViewById(android.R.id.title); local
86 if (title != null) {
87 title.setSingleLine(false);
88 title.setMaxLines(3);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/inputmethod/
InputMethodAndSubtypeEnablerFragment.java 58 final String title = getStringExtraFromIntentOrArguments(Intent.EXTRA_TITLE); local
62 root.setTitle(title);
80 final String title = getStringExtraFromIntentOrArguments(Intent.EXTRA_TITLE); local
81 if (!TextUtils.isEmpty(title)) {
82 getActivity().setTitle(title);
  /build/make/tools/droiddoc/templates-pdk/
docpage.cs 13 <a href="<?cs var:parent.link ?>"><?cs var:parent.title ?></a>:
17 <h1 itemprop="name"><?cs var:page.title ?></h1>
32 <span class="training-nav-button-title"><?cs var:next.title ?></span>
42 <span class="training-nav-button-title"><?cs var:next.title ?></span>
54 <span class="training-nav-button-title"><?cs var:previous.title ?></span>
75 <br/><span class="training-nav-button-title"><?cs var:next.title ?></span
    [all...]
  /development/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
71 public final String title; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null; local
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summary, link)
111 String title = readText(parser); local
    [all...]
  /external/clang/www/
make_cxx_dr_status 17 def __init__(self, section, issue, url, status, title):
18 self.section, self.issue, self.url, self.status, self.title = \
19 section, issue, url, status, title
21 return '%s (%s): %s' % (self.issue, self.status, self.title)
24 section, issue_link, status, title = [
31 title = title.replace('<issue_title>', '').replace('</issue_title>', '').strip()
32 return DR(section, issue, url, status, title)
58 <title>Clang - C++ Defect Report Status</title>
    [all...]
  /external/curl/docs/examples/
htmltitle.cpp 23 * Get a web page, extract the title with libxml.
59 std::string title; member in struct:Context
141 if(COMPARE((char *)name, "TITLE")) {
142 context->title = "";
157 if(COMPARE((char *)name, "TITLE"))
170 context->title.append((char *)chars, length);
235 // Parse given (assumed to be) HTML text and return the title
239 std::string &title)
252 title = context.title;
259 std::string title; local
    [all...]
  /external/python/cpython2/Lib/idlelib/
textView.py 12 def __init__(self, parent, title, text, modal=True, _htest=False):
32 self.title(title)
68 def view_text(parent, title, text, modal=True):
69 return TextViewer(parent, title, text, modal)
71 def view_file(parent, title, filename, encoding=None, modal=True):
79 tkMessageBox.showerror(title='File Load Error',
83 showerror(title='Unicode Decode Error',
87 return view_text(parent, title, textFile.read(), modal)
  /external/python/cpython3/Lib/idlelib/
textview.py 12 def __init__(self, parent, title, text, modal=True, _htest=False):
32 self.title(title)
68 def view_text(parent, title, text, modal=True):
69 return TextViewer(parent, title, text, modal)
71 def view_file(parent, title, filename, encoding=None, modal=True):
76 showerror(title='File Load Error',
80 showerror(title='Unicode Decode Error',
84 return view_text(parent, title, contents, modal)
  /frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
StackOverflowXmlParser.java 69 // It includes the data members "title," "link," and "summary."
71 public final String title; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) {
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null; local
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summary, link)
111 String title = readText(parser); local
    [all...]
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsImpl.java 108 public void setInputMethodSettingsCategoryTitle(CharSequence title) {
110 mInputMethodSettingsCategoryTitle = title;
127 public void setSubtypeEnablerTitle(CharSequence title) {
129 mSubtypeEnablerTitle = title;
158 final CharSequence title; local
160 title = context.getString(mSubtypeEnablerTitleRes);
162 title = mSubtypeEnablerTitle;
164 pref.setTitle(title);
167 intent.putExtra(Intent.EXTRA_TITLE, title);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
textView.py 12 def __init__(self, parent, title, text, modal=True):
26 self.title(title)
62 def view_text(parent, title, text, modal=True):
63 return TextViewer(parent, title, text, modal)
65 def view_file(parent, title, filename, encoding=None, modal=True):
74 tkMessageBox.showerror(title='File Load Error',
78 return view_text(parent, title, textFile.read(), modal)
84 root.title('textView test')
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
textView.py 12 def __init__(self, parent, title, text, modal=True):
26 self.title(title)
62 def view_text(parent, title, text, modal=True):
63 return TextViewer(parent, title, text, modal)
65 def view_file(parent, title, filename, encoding=None, modal=True):
74 tkMessageBox.showerror(title='File Load Error',
78 return view_text(parent, title, textFile.read(), modal)
84 root.title('textView test')

Completed in 1145 milliseconds

1 2 3 4 5 6 78 91011>>