Searched refs:description (Results 176 - 200 of 363) sorted by relevance

1234567891011>>

/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteChooserDialog.java290 String description = route.getDescription();
294 if (isConnectedOrConnecting && !TextUtils.isEmpty(description)) {
297 text2.setText(description);
/frameworks/av/drm/libdrmframework/include/
H A DNoOpDrmManagerClientImpl.h48 int uniqueId, const String8& path, int action, const ActionDescription& description);
/frameworks/av/drm/libdrmframework/plugins/passthru/include/
H A DDrmPassthruPlugIn.h62 int uniqueId, const String8& path, int action, const ActionDescription& description);
/frameworks/av/include/drm/
H A DDrmManagerClient.h192 * @param[in] description Detailed description of the action
195 bool validateAction(const String8& path, int action, const ActionDescription& description);
/frameworks/base/core/java/android/hardware/camera2/
H A DDngCreator.java288 * Set the user description string to write.
294 * @param description the user description string.
298 public DngCreator setDescription(@NonNull String description) { argument
299 if (description == null) {
300 throw new IllegalArgumentException("Null description passed to setDescription.");
302 nativeSetDescription(description);
658 private synchronized native void nativeSetDescription(String description); argument
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorToolbar.java94 void setNavigationContentDescription(CharSequence description); argument
/frameworks/base/libs/hwui/
H A DCaches.h174 void setProgram(const ProgramDescription& description);
H A DCaches.cpp125 void Caches::setProgram(const ProgramDescription& description) { argument
126 setProgram(programCache.get(description));
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
H A DActionReplacingCallbackTest.java86 public void describeTo(Description description) {
87 description.appendText("Has no actions");
109 public void describeTo(Description description) {
110 description.appendText("Has only 4 actions expected on root");
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DQueueAdapter.java65 holder.mDescriptionView = (TextView) convertView.findViewById(R.id.description);
/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/media/
H A DQueueAdapter.java65 holder.mDescriptionView = (TextView) convertView.findViewById(R.id.description);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DDecorToolbar.java92 void setNavigationContentDescription(CharSequence description); argument
/frameworks/av/drm/common/
H A DDrmEngineBase.cpp93 int action, const ActionDescription& description) {
94 return onValidateAction(uniqueId, path, action, description);
91 validateAction( int uniqueId, const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClient.cpp91 const String8& path, int action, const ActionDescription& description) {
92 return mDrmManagerClientImpl->validateAction(mUniqueId, path, action, description);
90 validateAction( const String8& path, int action, const ActionDescription& description) argument
/frameworks/av/drm/libdrmframework/plugins/common/include/
H A DDrmEngineBase.h68 int uniqueId, const String8& path, int action, const ActionDescription& description);
291 * @param[in] description Detailed description of the action
295 int action, const ActionDescription& description) = 0;
/frameworks/base/core/java/android/content/
H A DRestrictionEntry.java114 /** The user-visible secondary description of the restriction. */
413 * Returns the provided user-visible description of the entry, if any.
414 * @return the user-visible description, null if none was set earlier.
421 * Sets the user-visible description of the entry, as a possible sub-text for the title.
424 * @param description the user-visible description string.
426 public void setDescription(String description) { argument
427 this.mDescription = description;
/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java59 /** human readable voice detection engine description */
60 public final String description; field in class:SoundTrigger.ModuleProperties
96 ModuleProperties(int id, String implementor, String description, argument
103 this.description = description;
131 String description = in.readString();
143 return new ModuleProperties(id, implementor, description, uuid, version,
153 dest.writeString(description);
174 return "ModuleProperties [id=" + id + ", implementor=" + implementor + ", description="
175 + description
[all...]
/frameworks/base/core/java/android/os/storage/
H A DStorageVolume.java124 public StorageVolume(String id, int storageId, File path, String description, boolean primary, argument
130 mDescription = Preconditions.checkNotNull(description);
179 * Returns a user-visible description of the volume.
181 * @return the volume description
/frameworks/base/core/java/android/service/autofill/
H A DSaveInfo.java350 * Sets an optional description to be shown in the UI when the user is asked to save.
355 * @param description a succint description.
358 public @NonNull Builder setDescription(@Nullable CharSequence description) { argument
360 mDescription = description;
423 .append(", description=").append(mDescription)
/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp79 int dlen = info.description.length();
80 const char* col2 = info.description.c_str();
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/
H A DPowerTestActivity.java203 public void onReceivedError(WebView view, int errorCode, String description, argument
207 + ", description=" + description
/frameworks/native/cmds/lshal/
H A DLshal.cpp144 + retBase.description();
178 + ret.description();
/frameworks/support/buildSrc/src/main/groovy/android/support/checkapi/
H A DCheckApiTask.groovy166 description = 'Invoke Doclava\'s ApiCheck tool to make sure current.txt is up to date.'
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java77 String description = String.format(Locale.US,
78 "The gripping yet whimsical description of videoInfo %d in category %d", j,
86 videoInfo.setDescription(description);
/frameworks/support/media-compat/tests/src/android/support/v4/media/session/
H A DMediaControllerCompatTest.java723 public void onAddQueueItem(MediaDescriptionCompat description) { argument
726 mQueueDescription = description;
727 mQueue.add(new MediaSessionCompat.QueueItem(description, mQueue.size()));
734 public void onAddQueueItem(MediaDescriptionCompat description, int index) { argument
738 mQueueDescription = description;
739 mQueue.add(index, new MediaSessionCompat.QueueItem(description, mQueue.size()));
746 public void onRemoveQueueItem(MediaDescriptionCompat description) { argument
749 String mediaId = description.getMediaId();

Completed in 5371 milliseconds

1234567891011>>