/development/tools/winscope/src/parsers/window_manager/ |
D | custom_query_utils_test.ts | 36 title: 'WindowContainer', 41 title: 'Built-in Screen', 44 expect(tokenAndTitles).toContain({token: 'c06766f', title: 'Leaf:36:36'}); 46 expect(tokenAndTitles).toContain({token: '509ad2f', title: '509ad2f'}); 50 title: 'ScreenDecorOverlay', 53 expect(tokenAndTitles).toContain({token: '7493986', title: 'Task'}); 57 title: 'com.google.android.apps.nexuslauncher/.NexusLauncherActivity',
|
D | custom_query_utils.ts | 36 const title = constant 37 rootWindowContainer?.windowContainer?.identifier?.title ?? 39 result.push({token, title}); 96 const title = proto.name ?? WmCustomQueryUtils.NA; constant 97 result.push({token, title}); 114 const title = proto.name ?? WmCustomQueryUtils.NA; constant 115 result.push({token, title}); 130 const title = proto.displayInfo?.name ?? WmCustomQueryUtils.NA; constant 131 result.push({token, title}); 148 const title = constant [all …]
|
/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()
|
/development/tools/winscope/src/viewers/ |
D | viewer_stub.ts | 28 private title: string; property in ViewerStub 33 title: string, 38 this.title = title; 55 this.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/tools/ota_analysis/src/services/ |
D | echarts_data.js | 10 constructor(statisticData, title, unit, maximumEntries = 15) { argument 12 this.title = title 41 option.title = { 42 text: this.title, 57 name: this.title,
|
/development/tools/ota_analysis/src/router/ |
D | index.js | 13 title: 'Analyse OTA package - from AOSP' property 43 const nearestWithTitle = to.matched.slice().reverse().find(r => r.meta && r.meta.title); 52 document.title = nearestWithTitle.meta.title; 54 document.title = previousNearestWithMeta.meta.title;
|
/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/samples/training/network-usage/src/com/example/android/networkusage/ |
D | StackOverflowXmlParser.java | 71 public final String title; field in StackOverflowXmlParser.Entry 75 private Entry(String title, String summary, String link) { in Entry() argument 76 this.title = title; in Entry() 87 String title = null; in readEntry() local 96 title = readTitle(parser); in readEntry() 105 return new Entry(title, summary, link); in readEntry() 111 String title = readText(parser); in readTitle() local 113 return title; in readTitle()
|
/development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/ |
D | DataFragment.java | 55 public void appendItem(String title, String text) { in appendItem() argument 60 mDataItemListAdapter.add(new Event(title, text)); in appendItem() 87 holder.text1.setText(event.title); in getView() 101 String title; field in DataFragment.Event 104 public Event(String title, String text) { in Event() argument 105 this.title = title; in Event()
|
/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/ |
D | InputMethodSettingsFragment.java | 57 public void setInputMethodSettingsCategoryTitle(CharSequence title) { in setInputMethodSettingsCategoryTitle() argument 58 mSettings.setInputMethodSettingsCategoryTitle(title); in setInputMethodSettingsCategoryTitle() 73 public void setSubtypeEnablerTitle(CharSequence title) { in setSubtypeEnablerTitle() argument 74 mSettings.setSubtypeEnablerTitle(title); in setSubtypeEnablerTitle()
|
D | InputMethodSettingsImpl.java | 69 final CharSequence title = getSubtypeEnablerTitle(context); in init() 73 if (!TextUtils.isEmpty(title)) { in init() 74 intent.putExtra(Intent.EXTRA_TITLE, title); in init() 128 public void setInputMethodSettingsCategoryTitle(CharSequence title) { in setInputMethodSettingsCategoryTitle() argument 130 mInputMethodSettingsCategoryTitle = title; in setInputMethodSettingsCategoryTitle() 147 public void setSubtypeEnablerTitle(CharSequence title) { in setSubtypeEnablerTitle() argument 149 mSubtypeEnablerTitle = title; in setSubtypeEnablerTitle()
|
D | InputMethodSettingsInterface.java | 42 public void setInputMethodSettingsCategoryTitle(CharSequence title); in setInputMethodSettingsCategoryTitle() argument 56 public void setSubtypeEnablerTitle(CharSequence title); in setSubtypeEnablerTitle() argument
|
/development/samples/NotePad/src/com/example/android/notepad/ |
D | NoteEditor.java | 410 String title=null; in performPaste() local 439 title = orig.getString(colTitleIndex); in performPaste() 454 updateNote(text, title); in performPaste() 464 private final void updateNote(String text, String title) { in updateNote() argument 474 if (title == null) { in updateNote() 481 title = text.substring(0, Math.min(30, length)); in updateNote() 486 int lastSpace = title.lastIndexOf(' '); in updateNote() 488 title = title.substring(0, lastSpace); in updateNote() 493 values.put(NotePad.Notes.COLUMN_NAME_TITLE, title); in updateNote() 494 } else if (title != null) { in updateNote() [all …]
|
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/ |
D | BasicNotificationDisplayActivity.java | 34 String title = getIntent().getStringExtra(EXTRA_TITLE); in onCreate() local 36 ((TextView) findViewById(R.id.title)).setText(title); in onCreate()
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/ |
D | DialogHelperImpl.java | 87 public void showErrorMessageDialog(String title, Exception exception) { in showErrorMessageDialog() argument 89 bundle.putString(KEY_TITLE, title); in showErrorMessageDialog() 100 String title = args.getString(KEY_TITLE); in handleOnCreateDialog() local 102 .setTitle(title) in handleOnCreateDialog()
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/ |
D | FeedParser.java | 130 String title = null; in readEntry() local 144 title = readTag(parser, TAG_TITLE); in readEntry() 163 return new Entry(id, title, link, publishedOn); in readEntry() 267 public final String title; field in FeedParser.Entry 271 Entry(String id, String title, String link, long published) { in Entry() argument 273 this.title = title; in Entry()
|
/development/tools/winscope/src/viewers/components/ |
D | collapsible_section_title_component_test.ts | 36 component.title = 'collapsible section'; 46 const title = assertDefined(htmlElement.querySelector('.mat-title')); constant 47 expect(title.textContent).toContain('COLLAPSIBLE SECTION');
|
/development/samples/browseable/SlidingTabsColors/src/com.example.android.slidingtabscolors/ |
D | ContentFragment.java | 40 public static ContentFragment newInstance(CharSequence title, int indicatorColor, in newInstance() argument 43 bundle.putCharSequence(KEY_TITLE, title); in newInstance() 66 TextView title = (TextView) view.findViewById(R.id.item_title); in onViewCreated() local 67 title.setText("Title: " + args.getCharSequence(KEY_TITLE)); in onViewCreated()
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | List4.java | 118 public SpeechView(Context context, String title, String words) { in SpeechView() argument 127 mTitle.setText(title); in SpeechView() 140 public void setTitle(String title) { in setTitle() argument 141 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()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | FragmentAlertDialog.java | 76 public static MyAlertDialogFragment newInstance(int title) { in newInstance() argument 79 args.putInt("title", title); in newInstance() 86 int title = getArguments().getInt("title"); in onCreateDialog() local 90 .setTitle(title) in onCreateDialog()
|
/development/samples/browseable/FindMyPhone/Wearable/src/com.example.android.wearable.findphone/ |
D | FindPhoneActivity.java | 52 SpannableString title = new SpannableString(getString(R.string.app_name)); in onCreate() local 53 title.setSpan(new RelativeSizeSpan(0.85f), 0, title.length(), Spannable.SPAN_POINT_MARK); in onCreate() 55 .setContentTitle(title) in onCreate()
|
/development/tools/winscope/src/test/e2e/ |
D | winscope_test.ts | 26 const title = element(by.css('.app-title')); constant 27 expect(await title.isPresent()).toBeTruthy();
|
/development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/ |
D | ListItemObject.java | 29 public ListItemObject(String title, int imgResource, int height) { in ListItemObject() argument 31 mTitle = title; in ListItemObject()
|