HomeSort by relevance Sort by last modified time
    Searched defs:mTitle (Results 1 - 25 of 163) sorted by null

1 2 3 4 5 6 7

  /cts/tests/tests/preference2/src/android/preference2/cts/
CustomCheckBoxPreference.java 28 private String mTitle;
33 this.setTitle(mTitle);
44 this.setTitle(mTitle);
49 mTitle = a.getString(R.styleable.CustPref_title);
CustomDialogPreference.java 28 private String mTitle;
33 this.setTitle(mTitle);
40 this.setTitle(mTitle);
45 mTitle = a.getString(R.styleable.CustPref_title);
CustomEditTextPreference.java 28 private String mTitle;
33 this.setTitle(mTitle);
44 this.setTitle(mTitle);
49 mTitle =a.getString(R.styleable.CustPref_title);
CustomSwitchPreference.java 29 private String mTitle;
34 this.setTitle(mTitle);
45 this.setTitle(mTitle);
50 mTitle =a.getString(R.styleable.CustPref_title);
  /packages/apps/Browser/src/com/android/browser/
NavTabView.java 35 private TextView mTitle;
60 mTitle = (TextView) findViewById(R.id.title);
80 mTitle.setText(mTab.getUrl());
86 mTitle.setText(txt);
99 mTitle.setPadding(mTitle.getCompoundDrawablePadding(), 0, 0, 0);
101 mTitle.setPadding(0, 0, 0, 0);
103 mTitle.setCompoundDrawablesWithIntrinsicBounds(id, 0, 0, 0);
  /development/samples/RSSReader/src/com/example/android/rssreader/
RssItem.java 24 private CharSequence mTitle;
29 mTitle = "";
35 mTitle = title;
57 return mTitle;
61 mTitle = title;
67 // parcel.writeString(mTitle.toString());
  /development/samples/SupportLeanbackDemos/src/com/example/android/leanback/
PhotoItem.java 21 private String mTitle;
25 mTitle = title;
34 return mTitle;
39 return mTitle;
49 dest.writeString(mTitle);
67 mTitle = in.readString();
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
ListItemObject.java 25 private String mTitle;
31 mTitle = title;
37 return mTitle;
  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebHistoryItemChromium.java 31 private final String mTitle;
37 mTitle = entry.getTitle();
71 return mTitle;
87 mTitle = title;
96 return new WebHistoryItemChromium(mUrl, mOriginalUrl, mTitle, mFavicon);
  /packages/apps/Camera/src/com/android/camera/ui/
AbstractSettingPopup.java 29 protected TextView mTitle;
39 mTitle = (TextView) findViewById(R.id.title);
InLineSettingItem.java 44 protected TextView mTitle;
55 mTitle = ((TextView) findViewById(R.id.title));
56 mTitle.setText(preference.getTitle());
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
AbstractSettingPopup.java 30 protected TextView mTitle;
40 mTitle = (TextView) findViewById(R.id.title);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
NavigationEntry.java 18 private final String mTitle;
30 mTitle = title;
79 return mTitle;
  /packages/apps/Camera/src/com/android/camera/
CameraPreference.java 30 private final String mTitle;
45 mTitle = a.getString(R.styleable.CameraPreference_title);
50 return mTitle;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupListItem.java 27 private final String mTitle;
37 mTitle = title;
59 return mTitle;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/
GroupMetaData.java 27 private String mTitle;
37 this.mTitle = title;
59 return mTitle;
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraPreference.java 32 private final String mTitle;
46 mTitle = a.getString(R.styleable.CameraPreference_title);
51 return mTitle;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List4.java 126 mTitle = new TextView(context);
127 mTitle.setText(title);
128 addView(mTitle, new LinearLayout.LayoutParams(
141 mTitle.setText(title);
151 private TextView mTitle;
List6.java 375 mTitle = new TextView(context);
376 mTitle.setText(title);
377 addView(mTitle, new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
390 mTitle.setText(title);
407 private TextView mTitle;
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandableListItem.java 27 private String mTitle;
35 mTitle = title;
52 return mTitle;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
FrozenNativePage.java 19 private final String mTitle;
34 mTitle = nativePage.getTitle();
46 return mTitle;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/banners/
AppData.java 19 private String mTitle;
60 return mTitle;
124 mTitle = title;
  /packages/apps/Mms/src/com/android/mms/ui/
IconListAdapter.java 95 private final String mTitle;
100 mTitle = title;
104 return mTitle;
  /packages/apps/TvSettings/QuickSettings/src/com/android/tv/quicksettings/
DialogAdapter.java 79 holder.mTitle.setText(s.getTitle());
93 private final TextView mTitle;
98 mTitle = (TextView) itemView.findViewById(R.id.setting_title);
Setting.java 30 private String mTitle;
42 mTitle = title;
68 return mTitle;
72 mTitle = title;
119 setting.mTitle = source.readString();
141 dest.writeString(mTitle);

Completed in 495 milliseconds

1 2 3 4 5 6 7