HomeSort by relevance Sort by last modified time
    Searched full:lightblue (Results 1 - 25 of 43) sorted by null

1 2

  /external/autotest/frontend/client/src/autotest/public/
testplannerclient.css 7 background-color: lightBlue;
  /external/webrtc/tools/python_charts/templates/
chart_page_template.html 45 colors: ['blue', 'red', 'lightblue', 'pink'],
54 colors: ['blue', 'red', 'lightblue', 'pink'],
63 colors: ['blue', 'red', 'lightblue', 'pink'],
72 colors: ['blue', 'red', 'lightblue', 'pink', 'green'],
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/res/values/
colors.xml 28 <color name="lightblue">#2878ff</color>
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/res/values/
colors.xml 28 <color name="lightblue">#2878ff</color>
  /development/samples/browseable/SpeedTracker/Wearable/res/values/
colors.xml 28 <color name="lightblue">#2878ff</color>
  /external/tlsdate/
events.dot 7 node[style=filled,color=lightblue];
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
BarGraph.java 146 Color lightblue= new Color(display, 237, 243, 254); local
147 gc.setBackground(lightblue);
240 gc.setBackground(lightblue);
281 lightblue.dispose();
FingerPrintGraph.java 524 Color lightblue = (Color) this.resources.get("lightblue");
525 if (lightblue == null) {
526 lightblue = new Color(DEFAULT_DISPLAY, 237, 243, 254);
527 this.resources.put("lightblue", lightblue);
529 this.gc.setBackground(lightblue);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/draw2d/
IColorConstants.java 71 Color lightBlue = new Color(null, 127, 127, 255);
  /external/skia/animations/
lines#1.xml 12 <color color="lightblue" />
text#1.xml 10 <color color="lightBlue" />
  /external/opencv3/samples/cpp/
grabcut.cpp 34 const Scalar LIGHTBLUE = Scalar(255,255,160);
124 circle( res, *it, radius, LIGHTBLUE, thickness );
  /external/chromium-trace/catapult/third_party/flot/
jquery.colorhelpers.min.js 1 (function($){$.color={};$.color.make=function(r,g,b,a){var o={};o.r=r||0;o.g=g||0;o.b=b||0;o.a=a!=null?a:1;o.add=function(c,d){for(var i=0;i<c.length;++i)o[c.charAt(i)]+=d;return o.normalize()};o.scale=function(c,f){for(var i=0;i<c.length;++i)o[c.charAt(i)]*=f;return o.normalize()};o.toString=function(){if(o.a>=1){return"rgb("+[o.r,o.g,o.b].join(",")+")"}else{return"rgba("+[o.r,o.g,o.b,o.a].join(",")+")"}};o.normalize=function(){function clamp(min,value,max){return value<min?min:value>max?max:value}o.r=clamp(0,parseInt(o.r),255);o.g=clamp(0,parseInt(o.g),255);o.b=clamp(0,parseInt(o.b),255);o.a=clamp(0,o.a,1);return o};o.clone=function(){return $.color.make(o.r,o.b,o.g,o.a)};return o.normalize()};$.color.extract=function(elem,css){var c;do{c=elem.css(css).toLowerCase();if(c!=""&&c!="transparent")break;elem=elem.parent()}while(elem.length&&!$.nodeName(elem.get(0),"body"));if(c=="rgba(0, 0, 0, 0)")c="transparent";return $.color.parse(c)};$.color.parse=function(str){var res,m=$.color.make;if(res=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10));if(res=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseInt(res[1],10),parseInt(res[2],10),parseInt(res[3],10),parseFloat(res[4]));if(res=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55);if(res=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(str))return m(parseFloat(res[1])*2.55,parseFloat(res[2])*2.55,parseFloat(res[3])*2.55,parseFloat(res[4]));if(res=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(str))return m(parseInt(res[1],16),parseInt(res[2],16),parseInt(res[3],16));if(res=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(str))return m(parseInt(res[1]+res[1],16),parseInt(res[2]+res[2],16),parseInt(res[3]+res[3],16));var name=$.trim(str).toLowerCase();if(name=="transparent")return m(255,255,255,0);else{res=lookupColors[name]||[0,0,0];return m(res[0],res[1],res[2])}};var lookupColors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[ (…)
jquery.colorhelpers.js 160 lightblue:[173,216,230],
excanvas.js 322 lightblue: '#ADD8E6',
    [all...]
  /frameworks/base/docs/html/training/wearables/ui/
confirm.jd 74 app:circle_border_color="@color/lightblue"
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdipluscolor.h 124 static const ARGB LightBlue = 0xFFADD8E6;
  /external/opencv3/modules/ts/misc/
color.py 91 "lightblue": "#add8e6",
  /external/skia/src/utils/
SkParseColor.cpp 100 { "lightblue", 0xADD8E6 },
290 0xb1274505, 0x32a50000, 0x00add8e6, // lightblue
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d2d1helper.h 265 LightBlue = 0xadd8e6,
  /external/ImageMagick/www/Magick++/
magick.css 642 background-color: #ADD8E6; /* lightblue; */
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 183 "lavender", "lavenderblush", "lawngreen", "lemonchiffon", "lightblue",
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
ViewInflater.java 145 mColorNames.put("lightblue", "#add8e6");
    [all...]
  /external/deqp/modules/gles2/functional/
es2fClippingTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp     [all...]

Completed in 597 milliseconds

1 2