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

123456

/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.cpp428 Program* ProgramCache::get(const ProgramDescription& description) { argument
429 programid key = description.key();
439 description.log("Could not find program");
440 program = generateProgram(description, key);
452 Program* ProgramCache::generateProgram(const ProgramDescription& description, programid key) { argument
453 String8 vertexShader = generateVertexShader(description);
454 String8 fragmentShader = generateFragmentShader(description);
456 return new Program(description, vertexShader.string(), fragmentShader.string());
459 static inline size_t gradientIndex(const ProgramDescription& description) { argument
460 return description
463 generateVertexShader(const ProgramDescription& description) argument
542 shaderOp(const ProgramDescription& description, String8& shader, const int modulateOp, const char** snippets) argument
550 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 DSkiaShader.cpp128 typedef void (*describeProc)(Caches* caches, ProgramDescription& description,
150 void SkiaShader::describe(Caches* caches, ProgramDescription& description, argument
152 gDescribeProc[getType(shader)](caches, description, extensions, shader);
165 void SkiaLayerShader::describe(Caches*, ProgramDescription& description, argument
167 description.hasBitmap = true;
212 static bool bitmapShaderHelper(Caches* caches, ProgramDescription* description, argument
223 if (description) {
224 description->hasBitmap = true;
231 if (description) {
232 description
253 describe(Caches* caches, ProgramDescription& description, const Extensions& extensions, const SkShader& shader) argument
341 describe(Caches*, ProgramDescription& description, const Extensions& extensions, const SkShader& shader) argument
437 describe(Caches* caches, ProgramDescription& description, const Extensions& extensions, const SkShader& shader) argument
[all...]
H A DSkiaShader.h52 static void describe(Caches* caches, ProgramDescription& description,
60 static void describe(Caches* caches, ProgramDescription& description, argument
75 static void describe(Caches* caches, ProgramDescription& description,
86 static void describe(Caches* caches, ProgramDescription& description,
99 static void describe(Caches* caches, ProgramDescription& description,
110 static void describe(Caches* caches, ProgramDescription& description,
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 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/view/
H A DInputDevice.java875 StringBuilder description = new StringBuilder();
876 description.append("Input Device ").append(mId).append(": ").append(mName).append("\n");
877 description.append(" Descriptor: ").append(mDescriptor).append("\n");
878 description.append(" Generation: ").append(mGeneration).append("\n");
879 description.append(" Location: ").append(mIsExternal ? "external" : "built-in").append("\n");
881 description.append(" Keyboard Type: ");
884 description.append("none");
887 description.append("non-alphabetic");
890 description.append("alphabetic");
893 description
924 appendSourceDescriptionIfApplicable(StringBuilder description, int source, String sourceName) argument
[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/remotedisplay/java/com/android/media/remotedisplay/
H A DRemoteDisplay.java96 return mMutableInfo.description;
99 public void setDescription(String description) { argument
100 if (!Objects.equals(mMutableInfo.description, description)) {
101 mMutableInfo.description = description;
/frameworks/base/telecomm/java/android/telecom/
H A DDisconnectCause.java29 * cause of the disconnect. Optionally, it may include a label and/or description to display to the
31 * the label and description. It also may contain a reason for the disconnect, which is intended for
100 * @param description The localized description to show to the user to explain the disconnect.
103 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason) { argument
104 this(code, label, description, reason, ToneGenerator.TONE_UNKNOWN);
112 * @param description The localized description to show to the user to explain the disconnect.
116 public DisconnectCause(int code, CharSequence label, CharSequence description, String reason, argument
120 mDisconnectDescription = description;
[all...]
/frameworks/support/v4/jellybean-mr2/android/support/v4/media/routing/
H A DMediaRouterJellybeanMr2.java40 public static void setDescription(Object routeObj, CharSequence description) { argument
41 ((android.media.MediaRouter.UserRouteInfo)routeObj).setDescription(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.java64 String description) {
68 mDescription = description;
158 public void setDescription(String description) { argument
159 mDescription = description;
199 // Show a simple popup dialog containing the description
61 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
46 description = _description;
57 description = null;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp118 ProgramCache::Key ProgramCache::computeKey(const Description& description) { argument
121 !description.mTextureEnabled ? Key::TEXTURE_OFF :
122 description.mTexture.getTextureTarget() == GL_TEXTURE_EXTERNAL_OES ? Key::TEXTURE_EXT :
123 description.mTexture.getTextureTarget() == GL_TEXTURE_2D ? Key::TEXTURE_2D :
126 (description.mPlaneAlpha < 1) ? Key::PLANE_ALPHA_LT_ONE : Key::PLANE_ALPHA_EQ_ONE)
128 description.mPremultipliedAlpha ? Key::BLEND_PREMULT : Key::BLEND_NORMAL)
130 description.mOpaque ? Key::OPACITY_OPAQUE : Key::OPACITY_TRANSLUCENT)
132 description.mColorMatrixEnabled ? Key::COLOR_MATRIX_ON : Key::COLOR_MATRIX_OFF);
227 void ProgramCache::useProgram(const Description& description) { argument
229 // generate the key for the shader based on the description
[all...]
/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,
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/base/core/java/android/net/http/
H A DEventHandler.java117 * @param description of error
119 public void error(int id, String description); argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastController.java41 public String description; field in class:CastController.CastDevice

Completed in 7283 milliseconds

123456