/cts/tests/leanbackjank/app/src/android/leanbackjank/app/data/ |
D | VideoProvider.java | 47 String title = new String(); in buildMedia() local 54 title = String.format("Video %d-%d", i, j); in buildMedia() 56 Movie movie = buildMovieInfo(category_name, title, description, studio); in buildMedia() 66 String title, in buildMovieInfo() argument 72 movie.setTitle(title); in buildMovieInfo()
|
/cts/tests/tests/preference2/src/android/preference2/cts/ |
D | DialogPreferenceTest.java | 44 String title = (String) mDialogPreference.getTitle(); in testGetTitle() local 46 assertEquals(titleExp, title); in testGetTitle() 50 String title = (String) mDialogPreference.getDialogTitle(); in testGetDialogTitle() local 53 assertEquals(titleExp, title); in testGetDialogTitle()
|
D | PreferenceTest.java | 88 CharSequence title= mPreference.getTitle(); in testGetTitle() local 91 assertEquals(titleExp, title); in testGetTitle() 102 String title = (String) mPreference.getTitle(); in testSetTitle() local 103 assertEquals(titleExp, title); in testSetTitle()
|
D | SwitchPreferenceTest.java | 46 String title = (String) mSwitchPref.getTitle(); in testGetTitle() local 48 assertEquals(titleExp, title); in testGetTitle()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
D | PolicyTransparencyTestListActivity.java | 127 final String title = UserRestrictions.getRestrictionLabel(this, restriction); in addTestsToAdapter() local 128 String testId = (mIsDeviceOwner ? "DO_" : "PO_") + title; in addTestsToAdapter() 130 adapter.add(TestListItem.newTest(title, testId, intent, null)); in addTestsToAdapter() 139 final String title = getString(policy.second); in addTestsToAdapter() local 140 String testId = (mIsDeviceOwner ? "DO_" : "PO_") + title; in addTestsToAdapter() 141 intent.putExtra(PolicyTransparencyTestActivity.EXTRA_TITLE, title); in addTestsToAdapter() 143 adapter.add(TestListItem.newTest(title, testId, intent, null)); in addTestsToAdapter()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
D | TestListAdapter.java | 83 final String title; field in TestListAdapter.TestListItem 119 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument 121 return new TestListItem(title, testName, intent, requiredFeatures, excludedFeatures, in newTest() 125 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument 127 return new TestListItem(title, testName, intent, requiredFeatures, excludedFeatures, in newTest() 131 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument 133 return new TestListItem(title, testName, intent, requiredFeatures, null, null); in newTest() 140 public static TestListItem newCategory(String title) { in newCategory() argument 141 return new TestListItem(title, null, null, null, null, null); in newCategory() 144 protected TestListItem(String title, String testName, Intent intent, in TestListItem() argument [all …]
|
D | ManifestTestListAdapter.java | 145 return item.title.compareTo(otherItem.title); in getRows() 187 String title = getTitle(mContext, info.activityInfo); in getTestsByCategory() local 193 TestListItem item = TestListItem.newTest(title, testName, intent, requiredFeatures, in getTestsByCategory()
|
D | IntentDrivenTestActivity.java | 121 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) { in TestInfo() argument 131 mTitle = title; in TestInfo()
|
D | TestResultsReport.java | 122 xml.attribute(null, "title", item.title); in getContents()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/widget/ |
D | WidgetCtsProvider.java | 40 String title; field in WidgetCtsProvider.TextData 46 title = t; in TextData() 163 String title = null; in getInstruction() local 190 title = "Step " + step + ": Verify dimensions"; in getInstruction() 196 title = "Step " + step + ": Verify resizeability"; in getInstruction() 209 title = "Step " + step + ": Verify collections"; in getInstruction() 213 title = "Step " + step + ": Verify category"; in getInstruction() 224 title = "Test Complete"; in getInstruction() 230 return new TextData(title, instruction, dataP, dataL); in getInstruction() 249 if (text.title != null) { in updateWidget() [all …]
|
/cts/tests/tests/view/src/android/view/cts/ |
D | WindowManager_LayoutParamsTest.java | 174 String title = ""; in testAccessTitle() local 178 assertEquals(title, mLayoutParams.getTitle()); in testAccessTitle() 180 title = "Android Test Title"; in testAccessTitle() 181 mLayoutParams.setTitle(title); in testAccessTitle() 182 assertEquals(title, mLayoutParams.getTitle()); in testAccessTitle() 184 SpannedString spannedTitle = new SpannedString(title); in testAccessTitle()
|
D | ActionModeTest.java | 153 public void setTitle(CharSequence title) {} in setTitle() argument
|
/cts/tests/app/app/src/android/app/stubs/ |
D | MockTabActivity.java | 54 protected void onChildTitleChanged(Activity childActivity, CharSequence title) { in onChildTitleChanged() argument 55 super.onChildTitleChanged(childActivity, title); in onChildTitleChanged()
|
D | DialogStubActivity.java | 340 public void setUpTitle(final String title) { in setUpTitle() argument 343 getDialog().setTitle(title); in setUpTitle()
|
/cts/tools/vm-tests-tf/src/util/build/ |
D | BuildDalvikSuite.java | 97 String methodBody, constraint, title; field in BuildDalvikSuite.MethodData 438 String details = (md.title != null ? md.title : ""); 772 String title = null, constraint = null; 780 title = titleM.group(1).replaceAll("\\n \\*", ""); 781 title = title.replaceAll("\\n", " "); 782 title = title.trim(); 807 md.title = title;
|
/cts/tests/leanbackjank/app/src/android/leanbackjank/app/model/ |
D | Movie.java | 68 public void setTitle(String title) { in setTitle() argument 69 mTitle = title; in setTitle()
|
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/ |
D | AccessibilityWindowReportingTest.java | 112 private AccessibilityWindowInfo findWindowByTitle(CharSequence title) { in findWindowByTitle() argument 117 if (TextUtils.equals(title, window.getTitle())) { in findWindowByTitle()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/ |
D | DeskClockTestsActivity.java | 157 final int title = info.getTitle(); in addTests() local 158 adapter.add(TestListItem.newTest(this, title, info.getTestId(), in addTests() 161 .putExtra(IntentDrivenTestActivity.EXTRA_TITLE, title) in addTests()
|
/cts/tests/tests/webkit/src/android/webkit/cts/ |
D | PostMessageTest.java | 92 private void waitForTitle(final String title) { in waitForTitle() argument 96 return mOnUiThread.getTitle().equals(title); in waitForTitle()
|
D | WebChromeClientTest.java | 388 public void onReceivedTitle(WebView view, String title) { in onReceivedTitle() argument 389 super.onReceivedTitle(view, title); in onReceivedTitle() 390 mPageTitle = title; in onReceivedTitle()
|
/cts/apps/CameraITS/tests/inprog/ |
D | test_param_black_level_lock.py | 67 pylab.title("Histograms for different sensitivities")
|
D | test_black_level.py | 90 pylab.title("Histograms for different sensitivities")
|
/cts/suite/cts/utils/ |
D | grapher.py | 51 plt.title(benchmark[benchmark.index('#') + 1:])
|
/cts/tests/tests/widget/src/android/widget/cts/ |
D | TabHost_TabSpecTest.java | 68 int idTitle = android.R.id.title; in testSetIndicator1() 93 int idTitle = android.R.id.title; in testSetIndicator2()
|
/cts/apps/CameraITS/tests/ |
D | tutorial.py | 173 pylab.title("Histogram of luma channel of captured image")
|