/external/webkit/WebCore/manual-tests/ |
showModalDialog-returnValue.html | 4 document.write("<span style='color:green'>Test passed.<br>"); 9 document.write("<span style='color:green'>Test passed.<br>");
|
svg-cursor-changes.svg | 5 <circle onclick="document.getElementById('mycursor').setAttribute('x', '100');" cx="80" cy="150" r="70" fill="green" cursor="url(#mycursor)"/> 8 <circle onclick="document.getElementById('mycursor').x.baseVal.value = 100;" cx="230" cy="150" r="70" fill="green" cursor="url(#mycursor)"/> 14 <circle onclick="document.getElementById('mycursor2').setAttribute('x', '100');" cx="80" cy="310" r="70" fill="green" cursor="url(#mycursor2)"/> 17 <circle onclick="document.getElementById('mycursor3').x.baseVal.value = 100;" cx="230" cy="310" r="70" fill="green" cursor="url(#mycursor3)"/> 22 <circle onclick="document.getElementById('mycursor4').setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', 'resources/webkit-background.png');" cx="80" cy="470" r="70" fill="green" cursor="url(#mycursor4)"/> 27 <circle onclick="document.getElementById('mycursor5').href.baseVal = 'resources/webkit-background.png';" cx="230" cy="470" r="70" fill="green" cursor="url(#mycursor5)"/>
|
context-click-generated-content.html | 12 border: solid green 5px;
|
first-line-style-crash.html | 5 div:first-line { color: green; }
|
user-drag-with-decorations.html | 1 This tests that we don't include overflow decorations from our ancestor nodes in the drag image for -webkit-user-drag: element. To perform this test drag the green square below. The drag image should not contain any parts of the scrollbar graphics visible on the page.
|
containing-block-position-change.html | 5 #t { position: absolute; width: 100px; height: 100px; background: green; left: -120px; } 28 There should be a green square below, aligned with the left margin of the page.
|
inline-input-marking.html | 12 border: 2px solid green; 23 <li>Type characters into each of the green blocks below</li>
|
svg-animation-parseValues.svg | 7 <text text-anchor="middle" x="240" y="55" font-size="16">You should see a green square and no red.</text> 10 <g fill="green">
|
/frameworks/base/graphics/java/android/graphics/ |
Color.java | 27 * green, blue. The values are unpremultiplied, meaning any transparency is 30 * (green << 8) | blue. Each component ranges between 0..255 with 0 42 public static final int GREEN = 0xFF00FF00; 66 * Return the green component of a color int. This is the same as saying 69 public static int green(int color) { method in class:Color 82 * Return a color-int from red, green, blue components. 88 * @param green Green component [0..255] of the color 91 public static int rgb(int red, int green, int blue) { 92 return (0xFF << 24) | (red << 16) | (green << 8) | blue 258 float green = 0.0f; local [all...] |
/external/jsr305/ri/src/main/java/javax/annotation/meta/ |
Exhaustive.java | 17 * then the value must be {@literal @Foo(Color.Green)}. And if you know it is 18 * {@literal @Foo(Color.Green)}, you know it cannot be 23 * enum Color {RED, BLUE, GREEN};
|
/external/webkit/WebCore/svg/ |
ColorDistance.cpp | 39 , m_greenDiff(toColor.green() - fromColor.green()) 70 clampColorValue(first.green() + second.green()), 77 clampColorValue(color.green() + m_greenDiff),
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
LinearGradientTest.java | 53 int[] color = { Color.BLUE, Color.GREEN, Color.RED }; 61 // BLUE -> GREEN, B sub-value decreasing while G sub-value increasing 64 assertTrue(Color.green(b.getPixel(10, 0)) < Color.green(b.getPixel(10, 5))); 65 assertTrue(Color.green(b.getPixel(10, 5)) < Color.green(b.getPixel(10, 10))); 66 // GREEN -> RED, G sub-value decreasing while R sub-value increasing 67 assertTrue(Color.green(b.getPixel(10, 15)) > Color.green(b.getPixel(10, 20))); 68 assertTrue(Color.green(b.getPixel(10, 20)) > Color.green(b.getPixel(10, 25))) [all...] |
ComposeShaderTest.java | 52 Color.GREEN, Color.BLUE, Shader.TileMode.CLAMP); 54 Color.GREEN, Color.RED, Shader.TileMode.CLAMP); 67 int green = (int)((greenX + greenY - greenX * greenY) * 255); local 72 assertEquals(green, Color.green(pixel), TOLERANCE); 89 greenBitmap.eraseColor(Color.GREEN); 106 // white ^ green ^ cyan = yellow
|
SweepGradientTest.java | 62 final int[] colors = new int[] { Color.GREEN, Color.RED }; 76 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE }; 91 final int[] colors = new int[] { Color.GREEN, Color.RED, Color.BLUE, Color.GREEN }; 133 int green = (int) ((1d - delta) * Color.green(colors[i1]) + local 134 delta * Color.green(colors[i2])); 137 color = Color.argb(alpha, red, green, blue); 145 assertEquals(Color.green(color), Color.green(pixel), tolerance) [all...] |
RadialGradientTest.java | 45 final int[] colors = { Color.BLUE, Color.GREEN, Color.RED }; 64 final int[] colors = { Color.BLUE, Color.GREEN }; 103 int green = (int) ((1d - delta) * Color.green(colors[i1]) + local 104 delta * Color.green(colors[i2])); 107 color = Color.argb(alpha, red, green, blue); 113 assertEquals(Color.green(color), Color.green(pixel), tolerance);
|
/external/webkit/WebCore/platform/graphics/mac/ |
ColorMac.mm | 59 [c getRed:&redComponent green:&greenComponent blue:&blueComponent alpha:&alpha]; 75 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, clearColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:0])); 79 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, blackColor, ([NSColor colorWithDeviceRed:0 green:0 blue:0 alpha:1])); 83 DEFINE_STATIC_LOCAL(RetainPtr<NSColor>, whiteColor, ([NSColor colorWithDeviceRed:1 green:1 blue:1 alpha:1])); 96 green:static_cast<CGFloat>(color.green()) / 255 116 [deviceColor getRed:&components[0] green:&components[1] blue:&components[2] alpha:&components[3]];
|
/external/webkit/WebCore/platform/graphics/cairo/ |
FontCairo.cpp | 82 Color shadowFillColor(shadowColor.red(), shadowColor.green(), shadowColor.blue(), shadowColor.alpha() * fillColor.alpha() / 255); 85 float red, green, blue, alpha; local 86 shadowFillColor.getRGBA(red, green, blue, alpha); 87 cairo_set_source_rgba(cr, red, green, blue, alpha); 147 float red, green, blue, alpha; local 148 fillColor.getRGBA(red, green, blue, alpha); 149 cairo_set_source_rgba(cr, red, green, blue, alpha * context->getAlpha()); 178 float red, green, blue, alpha; local 179 strokeColor.getRGBA(red, green, blue, alpha); 180 cairo_set_source_rgba(cr, red, green, blue, alpha * context->getAlpha()) [all...] |
/frameworks/base/docs/html/sdk/ |
android-2.2-highlights.jd | 35 .green { 77 <p style="margin-top:0">New Home screen <span class="green">tips widget</span> assists new users on 80 <p>The Phone, applications Launcher, and Browser now have <span class="green">dedicated 94 <p><span class="green">Improved security</span> with the addition of numeric pin or alpha-numeric 97 <p><span class="green">Remote wipe:</span> Exchange administrators can remotely reset the device to 99 <p><span class="green">Exchange Calendars are now supported</span> in the Calendar application.</p> 100 <p><span class="green">Auto-discovery:</span> you just need to know your user-name and password to 102 <p><span class="green">Global Address Lists look-up</span> is now available in the Email 120 <p>Gallery allows you to <span class="green">peek into picture stacks</span> using a zoom 122 <p>Camera <span class="green">onscreen buttons</span> provide easy access to a new UI fo [all...] |
/bionic/libc/netbsd/resolv/ |
__res_close.c | 4 * written by matthew green, 22/04/97.
|
/external/webkit/WebCore/manual-tests/gtk/ |
plugin-resize-scroll.html | 22 <embed id="embed" height="100" style="width: 100%" pbgcolor="green"
|
/external/webkit/WebCore/manual-tests/resources/ |
hover-subframe-2.html | 10 background-color: green;
|
/external/qemu/distrib/sdl-1.2.12/src/video/x11/ |
SDL_x11gamma_c.h | 27 extern int X11_SetVidModeGamma(_THIS, float red, float green, float blue); 28 extern int X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue);
|
/external/skia/src/core/ |
SkDither.cpp | 17 The 565 version only needs 3 bits for red/blue, and only 2 bits for green. 18 For simplicity, we store 3 bits, and have the dither macros for green know
|
/external/webkit/WebCore/manual-tests/NPN_Invoke/ |
test.html | 21 <p style="color: green">Success: An alert dialog is shown with the message "Success!"</p> 25 <p style="color: green">Success: No alert dialog is shown, and Safari remains open (does not crash).</p>
|
/packages/apps/Phone/res/values/ |
colors.xml | 22 <color name="incall_textConnected">#99CE3F</color> <!-- green --> 29 <color name="dtmf_dialer_background">#333333</color> <!-- green -->
|