/sdk/traceview/src/com/android/traceview/ |
D | ColorController.java | 59 return requestColor(display, rgb.red, rgb.green, rgb.blue); in requestColor() 63 return requestColorSquare(display, rgb.red, rgb.green, rgb.blue); in requestColorSquare() 66 public static Color requestColor(Display display, int red, int green, int blue) { in requestColor() argument 67 int key = (red << 16) | (green << 8) | blue; in requestColor() 70 color = new Color(display, red, green, blue); in requestColor() 76 public static Image requestColorSquare(Display display, int red, int green, int blue) { in requestColorSquare() argument 77 int key = (red << 16) | (green << 8) | blue; in requestColorSquare() 82 Color color = requestColor(display, red, green, blue); in requestColorSquare() 103 int fadedRed = 150 + rgb.red / 4; in assignMethodColors()
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/src/test/pkg/ |
D | WrongColor.java.txt | 11 textView.setTextColor(R.color.red); 12 textView.setTextColor(android.R.color.red); 14 textView.setTextColor(getResources().getColor(R.color.red));
|
/sdk/eclipse/scripts/ |
D | _mk_icons.sh | 10 icon S red signature 20 icon P red permission 25 icon P red permission 30 icon P red provider 47 icon A red action
|
/sdk/emulator/opengl/host/libs/Translator/GLcommon/ |
D | PaletteTexture.cpp | 23 …Color(unsigned char r, unsigned char g,unsigned char b, unsigned char a):red(r),green(g),blue(b),a… in Color() 24 unsigned char red; member 161 pixelsOut[indexOut] = c.red; in uncompressTexture()
|
D | DummyGLfuncs.cpp | 29 … void GLAPIENTRY dummy_glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha){} in dummy_glClearColor() argument 31 …void GLAPIENTRY dummy_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)… in dummy_glColorMask() argument 89 void GLAPIENTRY dummy_glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha){} in dummy_glColor4d() argument 90 void GLAPIENTRY dummy_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha){} in dummy_glColor4f() argument 92 void GLAPIENTRY dummy_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha){} in dummy_glColor4ub() argument 179 … void GL_APIENTRY dummy_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha){} in dummy_glBlendColor() argument
|
D | DummyGLfuncs.h | 36 void GLAPIENTRY dummy_glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 38 …void GLAPIENTRY dummy_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha); 96 void GLAPIENTRY dummy_glColor4d(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); 97 void GLAPIENTRY dummy_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 99 void GLAPIENTRY dummy_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 186 … void GL_APIENTRY dummy_glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
D | PixelPerfectPixelPanel.java | 92 (1 << 24) + (pixel.red << 16) + (pixel.green << 8) 97 e.gc.drawText(Integer.toString(pixel.red), 97, 4, true); 126 (1 << 24) + (pixel.red << 16) + (pixel.green << 8) 131 e.gc.drawText(Integer.toString(pixel.red), 297, 4, true);
|
/sdk/templates/docs/ |
D | prettify.css | 13 .fun{color:red}
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
D | EglMacApi.cpp | 33 EGLint red,green,blue,alpha,depth,stencil; in pixelFormatToConfig() local 75 red = green = blue = (colorSize / 4); //TODO: ask guy if it is OK in pixelFormatToConfig() 77 …return new EglConfig(red,green,blue,alpha,caveat,(EGLint)index,depth,level,pMaxWidth,pMaxHeight,pM… in pixelFormatToConfig()
|
D | EglX11Api.cpp | 87 int bSize,red,green,blue,alpha,depth,stencil; in pixelFormatToConfig() local 117 IS_SUCCESS(glXGetFBConfigAttrib(dpy,*frmt,GLX_RED_SIZE,&red)); in pixelFormatToConfig() 159 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight, in pixelFormatToConfig()
|
D | EglWindowsApi.cpp | 338 EGLint red,green,blue,alpha,depth,stencil; in pixelFormatToConfig() local 395 red = frmt->cRedBits; in pixelFormatToConfig() 401 …return new EglConfig(red,green,blue,alpha,caveat,(EGLint)index,depth,level,pMaxWidth,pMaxHeight,pM… in pixelFormatToConfig()
|
/sdk/emulator/opengl/host/libs/Translator/GLES_CM/ |
D | GLDispatch.h | 43 void (GLAPIENTRY *glClearColor) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 48 void (GLAPIENTRY *glColor4d) (GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); 49 void (GLAPIENTRY *glColor4f) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 51 void (GLAPIENTRY *glColor4ub) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 53 … void (GLAPIENTRY *glColorMask) (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
|
D | GLEScmImp.cpp | 358 GL_API void GL_APIENTRY glClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha)… in glClearColor() argument 360 ctx->dispatcher().glClearColor(red,green,blue,alpha); in glClearColor() 363 GL_API void GL_APIENTRY glClearColorx( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha… in glClearColorx() argument 365 ctx->dispatcher().glClearColor(X2F(red),X2F(green),X2F(blue),X2F(alpha)); in glClearColorx() 411 GL_API void GL_APIENTRY glColor4f( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { in glColor4f() argument 413 ctx->dispatcher().glColor4f(red,green,blue,alpha); in glColor4f() 416 GL_API void GL_APIENTRY glColor4ub( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) { in glColor4ub() argument 418 ctx->dispatcher().glColor4ub(red,green,blue,alpha); in glColor4ub() 421 GL_API void GL_APIENTRY glColor4x( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) { in glColor4x() argument 423 ctx->dispatcher().glColor4f(X2F(red),X2F(green),X2F(blue),X2F(alpha)); in glColor4x() [all …]
|
/sdk/emulator/opengl/host/libs/Translator/include/GLES/ |
D | gl.h | 594 GL_API void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 597 GL_API void GL_APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 641 GL_API void GL_APIENTRY glClearColorx (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 646 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 647 GL_API void GL_APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 648 GL_API void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alph…
|
D | glext.h | 564 GL_API void GL_APIENTRY glClearColorxOES (GLclampx red, GLclampx green, GLclampx blue, GLclampx alp… 567 GL_API void GL_APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 604 typedef void (GL_APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLclampx red, GLclampx green, GLclampx blue, G… 607 typedef void (GL_APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed …
|
/sdk/emulator/opengl/host/libs/Translator/include/GLcommon/ |
D | GLDispatch.h | 46 …static void (GLAPIENTRY *glClearColor) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alph… 48 …static void (GLAPIENTRY *glColorMask) (GLboolean red, GLboolean green, GLboolean blue, GLboolean a… 123 … static void (GLAPIENTRY *glColor4d) (GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); 124 static void (GLAPIENTRY *glColor4f) (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 126 static void (GLAPIENTRY *glColor4ub) (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 196 …static void (GL_APIENTRY *glBlendColor) (GLclampf red, GLclampf green, GLclampf blue, GLclampf alp…
|
/sdk/emulator/opengl/host/libs/GLESv1_dec/ |
D | gl.in | 2 GL_ENTRY(void, glClearColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 5 GL_ENTRY(void, glColor4f, GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) 47 GL_ENTRY(void, glClearColorx, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) 51 GL_ENTRY(void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) 52 GL_ENTRY(void, glColor4x, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) 53 GL_ENTRY(void, glColorMask, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) 184 GL_ENTRY(void, glClearColorxOES, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) 188 GL_ENTRY(void, glColor4xOES, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/ |
D | entries.in | 26 void, glBlendColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha 40 void, glClearColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha 41 void, glClearColorx, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha 42 void, glClearColorxOES, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha 55 void, glColor4f, GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha 56 void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha 57 void, glColor4x, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha 58 void, glColor4xOES, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha 59 void, glColorMask, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha
|
/sdk/emulator/opengl/host/libs/Translator/include/GLES2/ |
D | gl2.h | 481 GL_APICALL void GL_APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLcl… 490 GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLcl… 493 GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GL…
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | ImageUtils.java | 119 return alpha << 24 | (rgb.red << 16) | (rgb.green << 8) | rgb.blue; in rgbToInt() 777 g.setColor(new Color(color.red, color.green, color.blue)); in createColoredImage()
|
D | PreviewIconFactory.java | 559 bg.red, bg.green, bg.blue, in storeBackground() 560 fg.red, fg.green, fg.blue); in storeBackground()
|
/sdk/emulator/opengl/host/libs/GLESv2_dec/ |
D | gl2.in | 8 GL_ENTRY(void, glBlendColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 17 GL_ENTRY(void, glClearColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 20 GL_ENTRY(void, glColorMask, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
|
/sdk/emulator/opengl/host/libs/Translator/GLES_V2/ |
D | GLESv2Imp.cpp | 272 GL_APICALL void GL_APIENTRY glBlendColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alp… in glBlendColor() argument 274 ctx->dispatcher().glBlendColor(red,green,blue,alpha); in glBlendColor() 330 GL_APICALL void GL_APIENTRY glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alp… in glClearColor() argument 332 ctx->dispatcher().glClearColor(red,green,blue,alpha); in glClearColor() 342 GL_APICALL void GL_APIENTRY glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean … in glColorMask() argument 344 ctx->dispatcher().glColorMask(red,green,blue,alpha); in glColorMask()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/assetstudio/ |
D | ConfigureAssetSetPage.java | 1073 int color = 0xFF000000 | (fg.red << 16) | (fg.green << 8) | fg.blue; in generateImages() 1095 color = 0xFF000000 | (fg.red << 16) | (fg.green << 8) | fg.blue; in generateImages() 1126 int color = (bg.red << 16) | (bg.green << 8) | bg.blue; in generateImages()
|