Searched defs:description (Results 1 - 25 of 75) sorted by relevance

123

/frameworks/base/core/java/android/database/
H A DCursorWindowAllocationException.java26 public CursorWindowAllocationException(String description) { argument
27 super(description);
H A DStaleDataException.java30 public StaleDataException(String description) argument
32 super(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/testing/androidtestlib/src/com/android/test/runner/listener/
H A DDelayInjector.java38 public void testRunStarted(Description description) throws Exception { argument
44 public void testFinished(Description description) throws Exception { argument
H A DSuiteAssignmentPrinter.java55 public void testStarted(Description description) throws Exception { argument
61 public void testFinished(Description description) throws Exception { argument
83 description.getClassName(), description.getMethodName(), assignmentSuite,
98 public void testIgnored(Description description) throws Exception { argument
H A DInstrumentationResultPrinter.java101 public void testRunStarted(Description description) throws Exception { argument
103 mResultTemplate.putInt(REPORT_KEY_NUM_TOTAL, description.testCount());
115 public void testStarted(Description description) throws Exception { argument
116 String testClass = description.getClassName();
117 String testName = description.getMethodName();
136 public void testFinished(Description description) throws Exception { argument
165 public void testIgnored(Description description) throws Exception { argument
166 testStarted(description);
168 testFinished(description);
/frameworks/av/media/mtp/
H A DMtpStorage.cpp36 const char* description, uint64_t reserveSpace,
40 mDescription(description),
35 MtpStorage(MtpStorageID id, const char* filePath, const char* description, uint64_t reserveSpace, bool removable, uint64_t maxFileSize) argument
/frameworks/support/v7/mediarouter/jellybean-mr2/android/support/v7/media/
H A DMediaRouterJellybeanMr2.java40 public static void setDescription(Object routeObj, CharSequence description) { argument
41 ((android.media.MediaRouter.UserRouteInfo)routeObj).setDescription(description);
/frameworks/av/drm/common/
H A DDrmSupportInfo.cpp96 status_t DrmSupportInfo::setDescription(const String8& description) { argument
97 mDescription = description;
/frameworks/av/libvideoeditor/vss/inc/
H A DM4EXIFC_CommonAPI.h83 M4OSA_Char *description; /**< image title */ member in struct:__anon230
/frameworks/base/core/java/android/net/http/
H A DLoggingEventHandler.java78 public void error(int id, String description) { argument
81 " description " + description);
H A DEventHandler.java117 * @param description of error
119 public void error(int id, 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 DSkiaColorFilter.cpp54 void SkiaColorMatrixFilter::describe(ProgramDescription& description, argument
56 description.colorOp = ProgramDescription::kColorMatrix;
82 void SkiaLightingFilter::describe(ProgramDescription& description, const Extensions& extensions) { argument
83 description.colorOp = ProgramDescription::kColorLighting;
107 void SkiaBlendFilter::describe(ProgramDescription& description, const Extensions& extensions) { argument
108 description.colorOp = ProgramDescription::kColorBlend;
109 description.colorMode = mMode;
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;
88 void describe(ProgramDescription& description, const SkPaint* paint) const;
89 void setupProgram(ProgramDescription& description, Program* program) const;
135 void describe(ProgramDescription& description, const SkPaint* paint) const { argument
138 void setupProgram(ProgramDescription& description, Program* program) const { argument
174 void describe(ProgramDescription& description, const SkPaint* paint) const { argument
177 void setupProgram(ProgramDescription& description, Program* program) const { argument
H A DProgram.cpp32 Program::Program(const ProgramDescription& description, const char* vertex, const char* fragment) { argument
50 if (description.hasTexture || description.hasExternalTexture) {
/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java97 public String description; field in class:MediaRouterClientState.RouteInfo
121 description = other.description;
136 description = in.readString();
157 dest.writeString(description);
173 + ", description=" + description
H A DRemoteDisplayState.java105 public String description; field in class:RemoteDisplayState.RemoteDisplayInfo
122 description = other.description;
133 description = in.readString();
154 dest.writeString(description);
166 + ", description=" + description
/frameworks/base/core/java/android/webkit/
H A DPlugin.java65 String description) {
69 mDescription = description;
159 public void setDescription(String description) { argument
160 mDescription = description;
200 // Show a simple popup dialog containing the description
62 Plugin(String name, String path, String fileName, String description) argument
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpServer.cpp129 jstring description = (jstring)env->GetObjectField(jstorage, field_MtpStorage_description); local
136 const char *descriptionStr = env->GetStringUTFChars(description, NULL);
142 env->ReleaseStringUTFChars(description, descriptionStr);
/frameworks/base/media/lib/java/com/android/media/remotedisplay/
H A DRemoteDisplay.java97 return mMutableInfo.description;
100 public void setDescription(String description) { argument
101 if (!Objects.equal(mMutableInfo.description, description)) {
102 mMutableInfo.description = description;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DTaskDescription.java30 final CharSequence description; field in class:TaskDescription
45 description = _description;
55 description = null;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp87 ProgramCache::Key ProgramCache::computeKey(const Description& description) { argument
90 !description.mTextureEnabled ? Key::TEXTURE_OFF :
91 description.mTexture.getTextureTarget() == GL_TEXTURE_EXTERNAL_OES ? Key::TEXTURE_EXT :
92 description.mTexture.getTextureTarget() == GL_TEXTURE_2D ? Key::TEXTURE_2D :
95 (description.mPlaneAlpha < 1) ? Key::PLANE_ALPHA_LT_ONE : Key::PLANE_ALPHA_EQ_ONE)
97 description.mPremultipliedAlpha ? Key::BLEND_PREMULT : Key::BLEND_NORMAL)
99 description.mOpaque ? Key::OPACITY_OPAQUE : Key::OPACITY_TRANSLUCENT)
101 description.mColorMatrixEnabled ? Key::COLOR_MATRIX_ON : Key::COLOR_MATRIX_OFF);
195 void ProgramCache::useProgram(const Description& description) { argument
197 // generate the key for the shader based on the description
[all...]
/frameworks/testing/androidtestlib/tests/src/com/android/test/runner/
H A DTestRequestBuilderTest.java184 public void testRunStarted(Description description) throws Exception { argument
185 mTestCount = description.testCount();

Completed in 894 milliseconds

123