Searched defs:description (Results 1 - 25 of 63) sorted by last modified time

123

/frameworks/testing/androidtestlib/src/com/android/test/runner/
H A DAndroidJUnitRunner.java339 public void testRunStarted(Description description) throws Exception { argument
341 mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, description.testCount());
354 public void testStarted(Description description) throws Exception { argument
355 String testClass = description.getClassName();
356 String testName = description.getMethodName();
375 public void testFinished(Description description) throws Exception { argument
404 public void testIgnored(Description description) throws Exception { argument
405 testStarted(description);
407 testFinished(description);
H A DTestRequestBuilder.java72 public boolean shouldRun(Description description) { argument
73 if (description.isTest()) {
74 return description.getAnnotation(mAnnotationClass) != null ||
75 description.getTestClass().isAnnotationPresent(mAnnotationClass);
107 public boolean shouldRun(Description description) { argument
108 if (description.getTestClass().isAnnotationPresent(mAnnotationClass) ||
109 description.getAnnotation(mAnnotationClass) != null) {
/frameworks/testing/uiautomator/library/src/com/android/uiautomator/core/
H A DUiSelector.java25 * text value, content-description, class name and multiple state information like
186 * Set the search criteria to match the content-description
189 * The content-description is typically used
192 * the widget is selected. The content-description
201 public UiSelector description(String desc) { method in class:UiSelector
206 * Set the search criteria to match the content-description
209 * The content-description is typically used
212 * the widget is selected. The content-description
224 * Set the search criteria to match the content-description
227 * The content-description i
[all...]
/frameworks/ex/carousel/test/src/com/android/carouseltest/
H A DTaskSwitcherActivity.java72 CharSequence description; field in class:TaskSwitcherActivity.ActivityDescription
82 description = _desc;
90 description = null;
173 public void newThumbnail(final int id, final Bitmap bitmap, CharSequence description)
178 + " description '" + description + "'");
256 desc.description = r.description;
/frameworks/base/tools/aapt/
H A DResourceTable.cpp106 const char* description; member in struct:flag_entry
223 if ((type&flags->value) != 0 && flags->description != NULL) {
226 fullMsg.append(String16(flags->description));
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java719 public void onError(int errorCode, String description) { argument
720 Log.w(TAG, "interval measurement error: " + description);
849 public void onError(int errorCode, String description) { argument
851 Log.e(TAG, "keepalive error: " + description);
H A DSipSessionGroup.java523 void onError(int errorCode, String description); argument
1822 public void onError(final int errorCode, final String description) { argument
1827 mCallback.onError(errorCode, description);
/frameworks/base/sax/tests/saxtests/src/android/sax/
H A DSafeSaxTest.java287 mediaGroup.getChild(MEDIA_NAMESPACE, "description")
290 video.description = body;
415 || localName.equals("description")
501 if (localName.equals("description")) {
502 video.description = takeText();
538 public String description; field in class:SafeSaxTest.YouTubeVideo
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java4463 CharSequence description) {
4479 r.stack.activityStoppedLocked(r, icicle, thumbnail, description);
5672 ci.description = top.thumbHolder.lastDescription;
5677 // "#" + maxNum + ": " + " descr=" + ci.description);
5778 rti.description = tr.lastDescription;
6122 Bitmap thumbnail, CharSequence description) {
6125 sendPendingThumbnail(null, token, thumbnail, description, true);
6130 Bitmap thumbnail, CharSequence description, boolean always) {
6145 description = r.thumbHolder.lastDescription;
6184 task != null ? task.taskId : -1, thumbnail, description);
4462 activityStopped(IBinder token, Bundle icicle, Bitmap thumbnail, CharSequence description) argument
6121 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
6129 sendPendingThumbnail(ActivityRecord r, IBinder token, Bitmap thumbnail, CharSequence description, boolean always) argument
[all...]
H A DActivityRecord.java692 void updateThumbnail(Bitmap newThumbnail, CharSequence description) { argument
703 thumbHolder.lastDescription = description;
H A DActivityStack.java1058 CharSequence description) {
1070 r.updateThumbnail(thumbnail, description);
1057 activityStoppedLocked(ActivityRecord r, Bundle icicle, Bitmap thumbnail, CharSequence description) argument
/frameworks/base/services/java/com/android/server/wm/
H A DDragState.java431 ClipDescription description, ClipData data, boolean result) {
438 return DragEvent.obtain(action, winX, winY, localState, description, data, result);
429 obtainDragEvent(WindowState win, int action, float x, float y, Object localState, ClipDescription description, ClipData data, boolean result) argument
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java202 public void onReceivedError(WebView view, int errorCode, String description, argument
206 + ", description=" + description
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java454 * @param description Brief description of the error
456 public void error(int id, String description) { argument
459 " description " + description);
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DReliabilityTestActivity.java200 public void onReceivedError(WebView view, int errorCode, String description, argument
203 + ", description=" + description
/frameworks/base/obex/javax/obex/
H A DAuthenticator.java90 * @param description the description of which user name and password should
91 * be used; if no description is provided in the authentication
92 * challenge or the description is encoded in an encoding scheme that
101 PasswordAuthentication onAuthenticationChallenge(String description, boolean isUserIdRequired, argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DRecentTasksLoader.java158 ComponentName origActivity, CharSequence description) {
177 description);
388 recentInfo.origActivity, recentInfo.description);
470 recentInfo.origActivity, recentInfo.description);
157 createTaskDescription(int taskId, int persistentTaskId, Intent baseIntent, ComponentName origActivity, CharSequence description) argument
H A DTaskDescription.java30 final CharSequence description; field in class:TaskDescription
45 description = _description;
55 description = null;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DQuickSettingsModel.java515 public void onLocationGpsStateChanged(boolean inUse, String description) { argument
517 mLocationState.label = description;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DLocationController.java55 public void onLocationGpsStateChanged(boolean inUse, String description); argument
H A DNetworkController.java178 String wifitSignalContentDescriptionId, String description);
181 String dataTypeContentDescriptionId, String description);
177 onWifiSignalChanged(boolean enabled, int wifiSignalIconId, String wifitSignalContentDescriptionId, String description) argument
179 onMobileDataSignalChanged(boolean enabled, int mobileSignalIconId, String mobileSignalContentDescriptionId, int dataTypeIconId, String dataTypeContentDescriptionId, String description) argument
/frameworks/base/drm/java/android/drm/
H A DDrmSupportInfo.java88 * Sets a description for the DRM plug-in (agent).
90 * @param description Unique description of plug-in. Must not be null
93 public void setDescription(String description) { argument
94 if (description == null) {
95 throw new IllegalArgumentException("description is null");
97 if (description == "") {
98 throw new IllegalArgumentException("description is an empty string");
101 mDescription = description;
105 * Retrieves the DRM plug-in (agent) description
[all...]
/frameworks/base/libs/hwui/
H A DGammaFontRenderer.cpp105 void ShaderGammaFontRenderer::describe(ProgramDescription& description, argument
112 description.hasGammaCorrection = true;
113 description.gamma = mGamma;
115 description.hasGammaCorrection = true;
116 description.gamma = 1.0f / mGamma;
119 description.hasGammaCorrection = true;
120 description.gamma = 1.0f / mGamma;
125 void ShaderGammaFontRenderer::setupProgram(ProgramDescription& description, argument
127 if (description.hasGammaCorrection) {
128 glUniform1f(program->getUniform("gamma"), description
[all...]
H A DGammaFontRenderer.h40 virtual void describe(ProgramDescription& description, const SkPaint* paint) const = 0;
41 virtual void setupProgram(ProgramDescription& description, Program* program) const = 0;
86 void describe(ProgramDescription& description, const SkPaint* paint) const;
87 void setupProgram(ProgramDescription& description, Program* program) const;
131 void describe(ProgramDescription& description, const SkPaint* paint) const { argument
134 void setupProgram(ProgramDescription& description, Program* program) const { argument
168 void describe(ProgramDescription& description, const SkPaint* paint) const { argument
171 void setupProgram(ProgramDescription& description, Program* program) const { argument
H A DOpenGLRenderer.cpp3114 ProgramDescription& description, bool swapSrcDst) {
3125 description.framebufferMode = mode;
3126 description.swapSrcDst = swapSrcDst;
3113 chooseBlending(bool blend, SkXfermode::Mode mode, ProgramDescription& description, bool swapSrcDst) argument

Completed in 545 milliseconds

123