HomeSort by relevance Sort by last modified time
    Searched defs:title (Results 201 - 225 of 909) sorted by null

1 2 3 4 5 6 7 891011>>

  /packages/apps/Settings/src/com/android/settings/accessibility/
ColorPreference.java 68 final CharSequence title = super.getTitleAt(index); local
69 if (title != null) {
70 return title;
73 // If no title was supplied, format title using RGB values.
131 final CharSequence title = getTitleAt(index); local
132 if (title != null) {
134 summary.setText(title);
EdgeTypePreference.java 66 final CharSequence title = getTitleAt(index); local
67 if (title != null) {
69 summary.setText(title);
  /packages/apps/Settings/src/com/android/settings/location/
InjectedSetting.java 48 public final String title; field in class:InjectedSetting
62 String title, int iconId, String settingsActivity) {
65 this.title = Preconditions.checkNotNull(title, "title");
74 String title, int iconId, String settingsActivity) {
76 TextUtils.isEmpty(title) || TextUtils.isEmpty(settingsActivity)) {
80 + ", title=" + title + ", settingsActivity=" + settingsActivity);
84 return new InjectedSetting(packageName, className, title, iconId, settingsActivity)
    [all...]
  /packages/providers/PartnerBookmarksProvider/tests/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProviderTest.java 56 String title = cursor.getString( local
57 cursor.getColumnIndexOrThrow(PartnerBookmarksContract.Bookmarks.TITLE));
60 assertFalse("title should never be empty", title.isEmpty());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesapp.h 48 static int rinit(NCursesWindow& w); // Internal Init function for title
54 static NCursesWindow* titleWindow; // The Title Window (if any)
63 // The number of lines for the title window. Default is no title window
69 // This method is called to put something into the title window initially
71 virtual void title() { function in class:NCursesApplication
169 // Attributes to use for the title window
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
cursesapp.h 48 static int rinit(NCursesWindow& w); // Internal Init function for title
54 static NCursesWindow* titleWindow; // The Title Window (if any)
63 // The number of lines for the title window. Default is no title window
69 // This method is called to put something into the title window initially
71 virtual void title() { function in class:NCursesApplication
169 // Attributes to use for the title window
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
cursesapp.h 48 static int rinit(NCursesWindow& w); // Internal Init function for title
54 static NCursesWindow* titleWindow; // The Title Window (if any)
63 // The number of lines for the title window. Default is no title window
69 // This method is called to put something into the title window initially
71 virtual void title() { function in class:NCursesApplication
169 // Attributes to use for the title window
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
FileDialog.py 44 title = "File Selection Dialog" variable in class:FileDialog
46 def __init__(self, master, title=None):
47 if title is None: title = self.title
52 self.top.title(title)
53 self.top.iconname(title)
224 title = "Load File Selection Dialog" variable in class:LoadFileDialog
238 title = "Save File Selection Dialog variable in class:SaveFileDialog
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
FileDialog.py 44 title = "File Selection Dialog" variable in class:FileDialog
46 def __init__(self, master, title=None):
47 if title is None: title = self.title
52 self.top.title(title)
53 self.top.iconname(title)
224 title = "Load File Selection Dialog" variable in class:LoadFileDialog
238 title = "Save File Selection Dialog variable in class:SaveFileDialog
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ShowWithinMenu.java 40 String title = reference.getDisplayName(); local
41 IAction action = new ShowWithinAction(title, reference);
60 public ShowWithinAction(String title, Reference reference) {
61 super(title, IAction.AS_RADIO_BUTTON);
  /packages/apps/Contacts/src/com/android/contacts/datepicker/
DatePickerDialog.java 180 /* Sometimes the full month is displayed causing the title
184 TextView title = (TextView) findViewById(com.android.internal.R.id.alertTitle); local
185 title.setSingleLine();
186 title.setEllipsize(TruncateAt.END);
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperListAdapter.java 104 holder.title = (TextView) convertView.findViewById(R.id.title);
116 if (holder.title != null && wallpaperInfo.info != null) {
117 holder.title.setText(wallpaperInfo.info.loadLabel(mPackageManager));
119 holder.title.setCompoundDrawablesWithIntrinsicBounds(null, wallpaperInfo.thumbnail,
134 TextView title; field in class:LiveWallpaperListAdapter.ViewHolder
210 String title = info.loadLabel(packageManager).toString(); local
216 canvas.drawText(title, (int) (thumbWidth * 0.5),
  /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);
SwitchPreferenceTest.java 46 String title = (String) mSwitchPref.getTitle(); local
48 assertEquals(titleExp, title);
  /cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java 93 String methodBody, constraint, title; field in class:BuildDalvikSuite.MethodData
578 // find the @title/@constraint in javadoc comment for this method
586 String title = null, constraint = null;
590 // now grep @title and @constraint
591 Matcher titleM = Pattern.compile("@title (.*)", Pattern.DOTALL)
594 title = titleM.group(1).replaceAll("\\n \\*", "");
595 title = title.replaceAll("\\n", " ");
596 title = title.trim()
    [all...]
  /development/apps/Development/src/com/android/development/
Details.java 41 String title = intent.getStringExtra("title"); local
42 if (title == null) {
43 title = "Details";
45 setTitle(title);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 65 String title = ((TextView) info.targetView).getText().toString(); local
71 Toast.makeText(this, title + ": Child " + childPos + " clicked in group " + groupPos,
76 Toast.makeText(this, title + ": Group " + groupPos + " clicked", Toast.LENGTH_SHORT).show();
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicRetriever.java 33 * resolver). After that, it's ready to retrieve a random song, with its title and URI, upon
78 // retrieve the indices of the columns where the ID, title, etc. of the song are
80 int titleColumn = cur.getColumnIndex(MediaStore.Audio.Media.TITLE);
85 Log.i(TAG, "Title column index: " + String.valueOf(titleColumn));
90 Log.i(TAG, "ID: " + cur.getString(idColumn) + " Title: " + cur.getString(titleColumn));
115 String title; field in class:MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) {
122 this.title = title;
136 return title;
    [all...]
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
ExtendedWikiHelper.java 212 String foundWord = word.getString("title");
247 // and only including the first entry for each title.
253 String title = sectionMatcher.group(1); local
254 if (!foundSections.contains(title) &&
255 sValidSections.matcher(title).matches()) {
257 foundSections.add(title);
  /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...]
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NoteEdit.java 42 mTitleText = (EditText) findViewById(R.id.title);
98 String title = mTitleText.getText().toString(); local
102 long id = mDbHelper.createNote(title, body);
107 mDbHelper.updateNote(mRowId, title, body);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
StylesheetPIHandler.java 49 /** The desired title criteria. */
96 * @param title The desired title criteria.
99 public StylesheetPIHandler(String baseID, String media, String title,
105 m_title = title;
148 String title = null; // CDATA #IMPLIED local
228 else if (name.equals("title"))
234 title = token.substring(1, token.length() - 1);
292 if (null != title)
294 if (!title.equals(m_title)
    [all...]
  /external/chromium/chrome/browser/autocomplete/
history_quick_provider_unittest.cc 34 std::string title; member in struct:TestURLInfo
137 url_info.set_title(UTF8ToUTF16(cur.title));
144 history_service_->AddPageWithDetails(current_url, UTF8ToUTF16(cur.title),
  /external/chromium/chrome/browser/bookmarks/
bookmark_index_unittest.cc 131 // Title with term multiple times.
155 const std::string title; member in struct:TestData
166 titles.push_back(data[i].title);
187 // Makes sure index is updated when a node's title is changed.
208 // Makes sure if the lower case string of a bookmark title is more characters
244 const char* title; member in struct:TestData
255 info.set_title(UTF8ToUTF16(data[i].title));
260 model->AddURL(model->other_node(), i, UTF8ToUTF16(data[i].title),
267 EXPECT_EQ(data[0].title, UTF16ToUTF8(result1.title()));
    [all...]
  /external/chromium/chrome/browser/
custom_home_pages_table_model.cc 32 // Page title. If this is empty, we'll display the URL as the entry.
33 string16 title; member in struct:CustomHomePagesTableModel::Entry
38 // If non-zero, indicates we're loading the title for the page.
60 entries_[i].title.erase();
137 return entries_[row].title.empty() ? FormattedURL(row) : entries_[row].title;
146 return entries_[row].title.empty() ? string16() :
148 entries_[row].title, FormattedURL(row));
184 if (found_url && !row->title().empty()) {
185 entry->title = row->title()
    [all...]

Completed in 759 milliseconds

1 2 3 4 5 6 7 891011>>