Searched refs:description (Results 1 - 25 of 114) sorted by relevance

12345

/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/libs/hwui/
H A DProgramCache.cpp414 Program* ProgramCache::get(const ProgramDescription& description) { argument
415 programid key = description.key();
425 description.log("Could not find program");
426 program = generateProgram(description, key);
438 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { argument
439 String8 vertexShader = generateVertexShader(description);
440 String8 fragmentShader = generateFragmentShader(description);
442 return new Program(description, vertexShader.string(), fragmentShader.string());
445 static inline size_t gradientIndex(const ProgramDescription& description) { argument
446 return description
449 generateVertexShader(const ProgramDescription& description) argument
519 shaderOp(const ProgramDescription& description, String8& shader, const int modulateOp, const char** snippets) argument
527 generateFragmentShader(const ProgramDescription& description) argument
[all...]
H A DProgramCache.h46 Program* get(const ProgramDescription& description);
51 Program* generateProgram(const ProgramDescription& description, programid key);
52 String8 generateVertexShader(const ProgramDescription& description);
53 String8 generateFragmentShader(const ProgramDescription& description);
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.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 DSkiaColorFilter.h53 virtual void describe(ProgramDescription& description, const Extensions& extensions) = 0;
87 void describe(ProgramDescription& description, const Extensions& extensions);
102 void describe(ProgramDescription& description, const Extensions& extensions);
117 void describe(ProgramDescription& description, const Extensions& extensions);
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...]
/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
H A DObexSession.java73 * 0x02 is the realm, which provides a description of which user name
78 byte[] description = ObexHelper.getTagValue((byte)0x02, header.mAuthChall);
81 if (description != null) {
82 byte[] realmString = new byte[description.length - 1];
83 System.arraycopy(description, 1, realmString, 0, realmString.length);
85 switch (description[0] & 0xFF) {
/frameworks/base/core/java/android/app/
H A DIThumbnailReceiver.aidl27 void newThumbnail(int id, in Bitmap thumbnail, CharSequence description);
/frameworks/testing/androidtestlib/src/com/android/test/runner/listener/
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);
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 DDelayInjector.java38 public void testRunStarted(Description description) throws Exception { argument
44 public void testFinished(Description description) throws Exception { argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java839 StringBuilder description = new StringBuilder();
840 description.append("Input Device ").append(mId).append(": ").append(mName).append("\n");
841 description.append(" Descriptor: ").append(mDescriptor).append("\n");
842 description.append(" Generation: ").append(mGeneration).append("\n");
843 description.append(" Location: ").append(mIsExternal ? "external" : "built-in").append("\n");
845 description.append(" Keyboard Type: ");
848 description.append("none");
851 description.append("non-alphabetic");
854 description.append("alphabetic");
857 description
888 appendSourceDescriptionIfApplicable(StringBuilder description, int source, String sourceName) argument
[all...]
/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/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/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/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/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/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/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/av/media/mtp/
H A DMtpStorage.h41 const char* description, uint64_t reserveSpace,
/frameworks/base/core/java/android/net/http/
H A DEventHandler.java117 * @param description of error
119 public void error(int id, String description); argument

Completed in 440 milliseconds

12345