/development/samples/MySampleRss/src/com/example/codelab/rssexample/ |
D | RssItem.java | 24 public String title; field in RssItem 29 public RssItem(String url, String title){ in RssItem() argument 31 this.title = title; in RssItem() 35 return title; in toString()
|
D | AddRssItem.java | 38 String title = ((TextView) findViewById(R.id.title_textbox)).getText().toString(); 40 if(TextUtils.isEmpty(title) || TextUtils.isEmpty(url)){ 48 res.putExtra(RssContentProvider.TITLE, title);
|
/development/samples/Home/src/com/example/android/home/ |
D | ApplicationInfo.java | 31 CharSequence title; field in ApplicationInfo 71 return title.equals(that.title) && in equals() 79 result = (title != null ? title.hashCode() : 0); in hashCode()
|
/development/samples/RSSReader/src/com/example/android/rssreader/ |
D | RssItem.java | 34 public RssItem(CharSequence title, CharSequence link, CharSequence description) { in RssItem() argument 35 mTitle = title; in RssItem() 60 public void setTitle(CharSequence title) { in setTitle() argument 61 mTitle = title; in setTitle()
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
D | NoteEdit.java | 38 mTitleText = (EditText) findViewById(R.id.title); in onCreate() 46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate() local 50 if (title != null) { in onCreate() 51 mTitleText.setText(title); in onCreate()
|
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
D | NoteEdit.java | 38 mTitleText = (EditText) findViewById(R.id.title); in onCreate() 46 String title = extras.getString(NotesDbAdapter.KEY_TITLE); in onCreate() local 50 if (title != null) { in onCreate() 51 mTitleText.setText(title); in onCreate()
|
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | List4.java | 338 public SpeechView(Context context, String title, String words) { in SpeechView() argument 347 mTitle.setText(title); in SpeechView() 360 public void setTitle(String title) { in setTitle() argument 361 mTitle.setText(title); in setTitle()
|
D | List6.java | 367 public SpeechView(Context context, String title, String dialogue, boolean expanded) { in SpeechView() argument 376 mTitle.setText(title); in SpeechView() 389 public void setTitle(String title) { in setTitle() argument 390 mTitle.setText(title); in setTitle()
|
D | ExpandableList1.java | 65 String title = ((TextView) info.targetView).getText().toString(); in onContextItemSelected() local 71 Toast.makeText(this, title + ": Child " + childPos + " clicked in group " + groupPos, in onContextItemSelected() 76 … Toast.makeText(this, title + ": Group " + groupPos + " clicked", Toast.LENGTH_SHORT).show(); in onContextItemSelected()
|
/development/samples/NFCDemo/src/com/example/android/nfc/simulator/ |
D | FakeTagsActivity.java | 67 public String title; field in FakeTagsActivity.TagDescription 71 public TagDescription(String title, byte[] bytes) { in TagDescription() argument 72 this.title = title; in TagDescription() 82 return title; in toString()
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
D | NoteEdit.java | 42 mTitleText = (EditText) findViewById(R.id.title); in onCreate() 98 String title = mTitleText.getText().toString(); in saveState() local 102 long id = mDbHelper.createNote(title, body); in saveState() 107 mDbHelper.updateNote(mRowId, title, body); in saveState()
|
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/ |
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/ |
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
D | NotesDbAdapter.java | 120 public long createNote(String title, String body) { in createNote() argument 122 initialValues.put(KEY_TITLE, title); in createNote() 181 public boolean updateNote(long rowId, String title, String body) { in updateNote() argument 183 args.put(KEY_TITLE, title); in updateNote()
|
/development/tools/findunused/ |
D | find_unused_resources.rb | 195 def displayHtmlUnused(unusedResourceIds, title) argument 197 puts "<h3>#{title}</h3>" 206 title = "Unused resources as of #{Time.now.localtime}" 207 puts "<html><header><title>#{title}</title></header><body>" 209 puts "<h1><p align=\"center\">#{title}</p></h1>"
|
/development/samples/Wiktionary/src/com/example/android/wiktionary/ |
D | ExtendedWikiHelper.java | 253 String title = sectionMatcher.group(1); in formatWikiText() local 254 if (!foundSections.contains(title) && in formatWikiText() 255 sValidSections.matcher(title).matches()) { in formatWikiText() 257 foundSections.add(title); in formatWikiText()
|
/development/samples/NotePad/src/com/example/android/notepad/ |
D | NoteEditor.java | 176 String title = mCursor.getString(COLUMN_INDEX_TITLE); in onResume() local 178 String text = String.format(res.getString(R.string.title_edit), title); in onResume() 313 String title = text.substring(0, Math.min(30, length)); in saveNote() local 315 int lastSpace = title.lastIndexOf(' '); in saveNote() 317 title = title.substring(0, lastSpace); in saveNote() 320 values.put(NoteColumns.TITLE, title); in saveNote()
|
/development/apps/Development/src/com/android/development/ |
D | Details.java | 41 String title = intent.getStringExtra("title"); in onCreate() local 42 if (title == null) { in onCreate() 43 title = "Details"; in onCreate() 45 setTitle(title); in onCreate()
|
/development/samples/NFCDemo/src/com/example/android/nfc/ |
D | TagViewer.java | 58 mTitle = (TextView) findViewById(R.id.title); in onCreate() 121 public void setTitle(CharSequence title) { in setTitle() argument 122 mTitle.setText(title); in setTitle()
|
/development/samples/NFCDemo/src/com/example/android/nfc/record/ |
D | SmartPoster.java | 85 private SmartPoster(UriRecord uri, TextRecord title, RecommendedAction action, String type) { in SmartPoster() argument 87 mTitleRecord = title; in SmartPoster() 118 TextRecord title = getFirstIfExists(records, TextRecord.class); in parse() local 121 return new SmartPoster(uri, title, action, type); in parse()
|
/development/pdk/docs/porting/bluetooth/ |
D | bluetooth_process.jd | 1 page.title=Bluetooth Process Diagram
|
/development/apps/NinePatchLab/src/com/android/ninepatch/ |
D | NinePatchLab.java | 51 String title = "D=" + mDoDither + " F=" + mDoFilter; in updateTitle() local 53 title += " FPS=" + mFPSAve; in updateTitle() 55 setTitle(title); in updateTitle()
|