Home
last modified time | relevance | path

Searched refs:title (Results 1 – 25 of 72) sorted by relevance

123

/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
DPolicyTransparencyTestListActivity.java151 final String title = UserRestrictions.getRestrictionLabel(this, restriction); in addTestsToAdapter() local
152 String testId = getTestId(title); in addTestsToAdapter()
154 adapter.add(TestListItem.newTest(title, testId, intent, null)); in addTestsToAdapter()
172 final String title = getString(policy.second); in addTestsToAdapter() local
173 String testId = getTestId(title); in addTestsToAdapter()
174 intent.putExtra(PolicyTransparencyTestActivity.EXTRA_TITLE, title); in addTestsToAdapter()
176 adapter.add(TestListItem.newTest(title, testId, intent, null)); in addTestsToAdapter()
180 private String getTestId(String title) { in getTestId() argument
182 return "DO_" + title; in getTestId()
184 return "MP_" + title; in getTestId()
[all …]
/cts/tests/tests/app/src/android/app/cts/
DRemoteActionTest.java40 String title = "title"; in testParcel() local
44 RemoteAction reference = new RemoteAction(icon, title, description, action); in testParcel()
54 assertEquals(title, result.getTitle()); in testParcel()
64 String title = "title"; in testClone() local
68 RemoteAction reference = new RemoteAction(icon, title, description, action); in testClone()
75 assertEquals(title, result.getTitle()); in testClone()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
DTestListAdapter.java83 final String title; field in TestListAdapter.TestListItem
122 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument
125 return new TestListItem(title, testName, intent, requiredFeatures, requiredConfigs, in newTest()
129 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument
131 … return new TestListItem(title, testName, intent, requiredFeatures, null, excludedFeatures, in newTest()
135 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument
137 … return new TestListItem(title, testName, intent, requiredFeatures, null, excludedFeatures, in newTest()
141 public static TestListItem newTest(String title, String testName, Intent intent, in newTest() argument
143 return new TestListItem(title, testName, intent, requiredFeatures, null, null, null); in newTest()
150 public static TestListItem newCategory(String title) { in newCategory() argument
[all …]
DManifestTestListAdapter.java152 return item.title.compareTo(otherItem.title); in getRows()
194 String title = getTitle(mContext, info.activityInfo); in getTestsByCategory() local
201 TestListItem item = TestListItem.newTest(title, testName, intent, requiredFeatures, in getTestsByCategory()
DIntentDrivenTestActivity.java139 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) { in TestInfo() argument
149 mTitle = title; in TestInfo()
/cts/tests/leanbackjank/app/src/android/leanbackjank/app/data/
DVideoProvider.java47 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/preference/src/android/preference/cts/
DDialogPreferenceTest.java42 String title = (String) mDialogPreference.getTitle(); in testGetTitle() local
44 assertEquals(titleExp, title); in testGetTitle()
48 String title = (String) mDialogPreference.getDialogTitle(); in testGetDialogTitle() local
51 assertEquals(titleExp, title); in testGetDialogTitle()
DSwitchPreferenceTest.java44 String title = (String) mSwitchPref.getTitle(); in testGetTitle() local
46 assertEquals(titleExp, title); in testGetTitle()
DPreferenceTest.java91 CharSequence title = mPreference.getTitle(); in testGetTitle() local
94 assertEquals(titleExp, title); in testGetTitle()
105 String title = (String) mPreference.getTitle(); in testSetTitle() local
106 assertEquals(titleExp, title); in testSetTitle()
/cts/tools/vm-tests-tf/build/src/util/build/
DBuildUtilBase.java44 String methodBody, constraint, title; field in BuildUtilBase.MethodData
150 String title = null, constraint = null; in parseTestMethod() local
158 title = titleM.group(1).replaceAll("\\n \\*", ""); in parseTestMethod()
159 title = title.replaceAll("\\n", " "); in parseTestMethod()
160 title = title.trim(); in parseTestMethod()
185 md.title = title; in parseTestMethod()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/widget/
DWidgetCtsProvider.java40 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/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
DBaseResultsDialog.java55 String title = getString(R.string.passed); in onCreateDialog() local
60 title = getString(R.string.failed); in onCreateDialog()
67 mBuilder.setTitle(title) in onCreateDialog()
/cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DAccessibilityEventFilterUtils.java56 @NonNull UiAutomation uiAutomation, int changeTypes, @NonNull String title) { in filterWindowsChangeTypesAndWindowTitle() argument
59 new WindowTitleMatcher(uiAutomation, title))::matches; in filterWindowsChangeTypesAndWindowTitle()
147 public WindowTitleMatcher(@NonNull UiAutomation uiAutomation, @NonNull String title) { in WindowTitleMatcher() argument
150 mTitle = title; in WindowTitleMatcher()
/cts/tests/framework/base/windowmanager/src/android/server/wm/
DWindowManager_LayoutParamsTest.java190 String title = ""; in testAccessTitle() local
194 assertEquals(title, mLayoutParams.getTitle()); in testAccessTitle()
196 title = "Android Test Title"; in testAccessTitle()
197 mLayoutParams.setTitle(title); in testAccessTitle()
198 assertEquals(title, mLayoutParams.getTitle()); in testAccessTitle()
200 SpannedString spannedTitle = new SpannedString(title); in testAccessTitle()
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
DSuspendPackageTest.java99 final UiObject2 title = device.findObject(POPUP_TITLE_WATCH_SELECTOR); in dismissPolicyTransparencyDialog() local
100 assertNotNull("Policy transparency dialog title not found", title); in dismissPolicyTransparencyDialog()
101 title.swipe(Direction.RIGHT, 1.0f); in dismissPolicyTransparencyDialog()
/cts/tests/app/app/src/android/app/stubs/
DMockTabActivity.java54 protected void onChildTitleChanged(Activity childActivity, CharSequence title) { in onChildTitleChanged() argument
55 super.onChildTitleChanged(childActivity, title); in onChildTitleChanged()
/cts/tests/leanbackjank/app/src/android/leanbackjank/app/model/
DMovie.java68 public void setTitle(String title) { in setTitle() argument
69 mTitle = title; in setTitle()
/cts/tests/tests/webkit/src/android/webkit/cts/
DWebChromeClientTest.java229 public void onReceivedTitle(WebView view, String title) { in testOnJsBeforeUnloadIsCalled()
230 super.onReceivedTitle(view, title); in testOnJsBeforeUnloadIsCalled()
231 pageTitleQueue.add(title); in testOnJsBeforeUnloadIsCalled()
504 public void onReceivedTitle(WebView view, String title) { in onReceivedTitle() argument
505 super.onReceivedTitle(view, title); in onReceivedTitle()
506 mPageTitle = title; in onReceivedTitle()
DPostMessageTest.java98 private void waitForTitle(final String title) { in waitForTitle() argument
102 return mOnUiThread.getTitle().equals(title); in waitForTitle()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/deskclock/
DDeskClockTestsActivity.java157 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/apps/CameraITS/tests/scene1/
Dtest_param_shading_mode.py123 pylab.title(name)
135 pylab.title('Shading/reference Maps Ratio vs Gain')
Dtest_post_raw_sensitivity_boost.py122 pylab.title(name)
132 pylab.title(name)
/cts/apps/CameraITS/tests/inprog/
Dtest_param_black_level_lock.py67 pylab.title("Histograms for different sensitivities")
/cts/tests/tests/keystore/src/android/server/am/
DActivityManagerState.java155 mResumedActivityRecord = state.resumedActivity.title; in parseSysDumpProto()
282 mResumedActivity = proto.resumedActivity.title; in ActivityStack()
345 name = proto.identifier.title; in Activity()
/cts/suite/cts/utils/
Dgrapher.py51 plt.title(benchmark[benchmark.index('#') + 1:])

123