Searched refs:description (Results 76 - 100 of 114) sorted by relevance

12345

/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java382 * Resource id of the description of the accessibility service.
387 * Non localized description of the accessibility service.
597 * Gets the non-localized description of the accessibility service.
602 * @return The description.
611 * The localized description of the accessibility service.
616 * @return The localized description.
623 CharSequence description = packageManager.getText(serviceInfo.packageName,
625 if (description != null) {
626 return description.toString().trim();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteConnectionPool.java751 String description = connection.describeCurrentOperationUnsafe();
752 if (description != null) {
753 requests.add(description);
/frameworks/base/core/java/android/app/
H A DActivityManager.java497 public CharSequence description; field in class:ActivityManager.RecentTaskInfo
524 TextUtils.writeToParcel(description, dest,
538 description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
670 public CharSequence description; field in class:ActivityManager.RunningTaskInfo
706 TextUtils.writeToParcel(description, dest,
721 description = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
H A DActionBar.java707 * to provide a correct description of the action for accessibility support.</p>
727 * to provide a correct description of the action for accessibility support.</p>
739 * Set an alternate description for the Home/Up action, when enabled.
741 * <p>This description is commonly used for accessibility/screen readers when
749 * <p>Setting this to <code>null</code> will use the system default description.</p>
751 * @param description New description for the Home action when enabled
755 public void setHomeActionContentDescription(CharSequence description) { } argument
758 * Set an alternate description for the Home/Up action, when enabled.
760 * <p>This description i
[all...]
H A DIActivityManager.java102 Bitmap thumbnail, CharSequence description) throws RemoteException;
130 Bitmap thumbnail, CharSequence description) throws RemoteException;
101 activityStopped(IBinder token, Bundle state, Bitmap thumbnail, CharSequence description) argument
129 reportThumbnail(IBinder token, Bitmap thumbnail, CharSequence description) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp193 int action, const ActionDescription& description) {
197 uniqueId, path, action, description);
191 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/android/app/admin/
H A DDeviceAdminInfo.java154 final public int description; field in class:DeviceAdminInfo.PolicyInfo
160 description = descriptionIn;
348 * Load user-visible description associated with this device admin.
/frameworks/base/services/java/com/android/server/wm/
H A DDragState.java433 ClipDescription description, ClipData data, boolean result) {
440 return DragEvent.obtain(action, winX, winY, localState, description, data, result);
431 obtainDragEvent(WindowState win, int action, float x, float y, Object localState, ClipDescription description, ClipData data, boolean result) argument
/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/core/java/android/provider/
H A DMediaStore.java712 * The description of the image
715 public static final String DESCRIPTION = "description";
815 * @param description The description of the image
820 String name, String description) throws FileNotFoundException {
825 String ret = insertImage(cr, bm, name, description);
884 * @param description The description of the image
889 String title, String description) {
892 values.put(Images.Media.DESCRIPTION, description);
819 insertImage(ContentResolver cr, String imagePath, String name, String description) argument
888 insertImage(ContentResolver cr, Bitmap source, String title, String description) argument
[all...]
/frameworks/base/libs/hwui/
H A DProgram.h95 // Program description
165 * Resets this description. All fields are reset back to the default
316 Program(const ProgramDescription& description, const char* vertex, const char* fragment);
/frameworks/opt/net/voip/src/java/com/android/server/sip/
H A DSipService.java740 public void onError(int errorCode, String description) { argument
741 if (SKAI_DBG) loge("onError: errorCode=" + errorCode + " desc=" + description);
881 public void onError(int errorCode, String description) { argument
883 loge("onError: errorCode=" + errorCode + " desc=" + description);
H A DSipSessionGroup.java530 void onError(int errorCode, String description); argument
1837 public void onError(final int errorCode, final String description) { argument
1843 mCallback.onError(errorCode, description);
/frameworks/base/core/java/android/content/
H A DClipData.java633 * @param description The ClipDescription describing the clip contents.
636 public ClipData(ClipDescription description, Item item) { argument
637 mClipDescription = description;
/frameworks/av/drm/libdrmframework/plugins/passthru/src/
H A DDrmPassthruPlugIn.cpp133 // Add plug-in description
197 int action, const ActionDescription& description) {
196 onValidateAction(int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/testing/uiautomator/library/core-src/com/android/uiautomator/core/
H A DUiScrollable.java100 * you provided, then looks for the content-description in its children elements.
103 * subhierarchy containing the content-description). By default, this method performs a
108 * @param text Content-description to find in the children of
124 * you provided, then looks for the content-description in its children elements.
127 * subhierarchy containing the content-description).
130 * @param text Content-description to find in the children of
146 throw new UiObjectNotFoundException("for description= \"" + text + "\"");
221 * the content-description is found, or until swipe attempts have been exhausted.
224 * @param text content-description to find within the contents of this scrollable layout element.
230 return scrollIntoView(new UiSelector().description(tex
[all...]
/frameworks/uiautomator/src/com/android/uiautomator/core/
H A DUiScrollable.java100 * you provided, then looks for the content-description in its children elements.
103 * subhierarchy containing the content-description). By default, this method performs a
108 * @param text Content-description to find in the children of
124 * you provided, then looks for the content-description in its children elements.
127 * subhierarchy containing the content-description).
130 * @param text Content-description to find in the children of
146 throw new UiObjectNotFoundException("for description= \"" + text + "\"");
221 * the content-description is found, or until swipe attempts have been exhausted.
224 * @param text content-description to find within the contents of this scrollable layout element.
230 return scrollIntoView(new UiSelector().description(tex
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DSystemMediaRouteProvider.java796 CharSequence description =
798 if (description != null) {
799 builder.setDescription(description.toString());
/frameworks/base/media/java/android/media/
H A DMediaRouter.java477 route.mDescription = globalRoute.description;
500 if (!Objects.equal(route.mDescription, globalRoute.description)) {
501 route.mDescription = globalRoute.description;
1566 * Gets the user-visible description of the route.
1568 * The route description describes the kind of destination represented by the route.
1572 * @return The description of the route, or null if none.
1579 * @return The user-visible status for a media route. This may include a description
1967 ", description=" + getDescription() +
2017 * Set the user-visible description of this route.
2019 * The route description describe
2025 setDescription(CharSequence description) argument
[all...]
/frameworks/av/drm/drmserver/
H A DDrmManager.cpp297 int uniqueId, const String8& path, int action, const ActionDescription& description) {
302 return rDrmEngine.validateAction(uniqueId, path, action, description);
296 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/android/widget/
H A DAppSecurityPermissions.java322 CharSequence grpName, CharSequence description, boolean dangerous) {
328 description, dangerous, icon);
321 getPermissionItemView(Context context, CharSequence grpName, CharSequence description, boolean dangerous) argument
/frameworks/base/core/java/com/android/internal/app/
H A DActionBarImpl.java833 public void setHomeActionContentDescription(CharSequence description) { argument
834 mActionView.setHomeActionContentDescription(description);
/frameworks/av/drm/common/
H A DIDrmManagerService.cpp449 int action, const ActionDescription& description) {
457 data.writeInt32(description.outputType);
458 data.writeInt32(description.configuration);
447 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
H A DFwdLockEngine.cpp305 const ActionDescription& description) {
302 onValidateAction(int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java98 * If set then this string willb e used as the description rather than
545 * Overrides the description text view for the picker activity if specified by the intent.
546 * If not specified then makes the description invisible.
549 TextView descriptionView = (TextView) findViewById(R.id.description);

Completed in 759 milliseconds

12345