/external/chromium_org/remoting/host/installer/mac/LaunchAgents/ |
org.chromium.chromoting.plist | 11 <string>Aqua</string>
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
macosxSupport.py | 15 If so, assume that Python was built with Aqua Tcl/Tk rather than 27 Returns True if IDLE is using a Carbon Aqua Tk (instead of the 28 newer Cocoa Aqua Tk). 33 'aqua' in root.tk.call('tk', 'windowingsystem') and
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
macosxSupport.py | 15 If so, assume that Python was built with Aqua Tcl/Tk rather than 27 Returns True if IDLE is using a Carbon Aqua Tk (instead of the 28 newer Cocoa Aqua Tk). 33 'aqua' in root.tk.call('tk', 'windowingsystem') and
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSValueKeywords.in | 10 // aqua
|
/external/chromium/chrome/common/ |
launchd_mac.h | 49 // |session_type| can be "Aqua", "LoginWindow", "Background", "StandardIO" or
|
/external/chromium_org/chrome/common/mac/ |
launchd.h | 49 // |session_type| can be "Aqua", "LoginWindow", "Background", "StandardIO" or
|
/external/chromium_org/remoting/host/installer/mac/Scripts/ |
remoting_preflight.sh | 59 context="Aqua"
|
remoting_postflight.sh | 101 context="Aqua" 111 launchctl bsexec "$pid" sudo -u "#$uid" launchctl load -w -S Aqua "$PLIST"
|
/external/chromium_org/third_party/WebKit/Source/core/platform/ |
ColorData.gperf | 21 aqua, 0xff00ffff
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/test/ |
runtktests.py | 26 # The Aqua Tk implementations on OS X can abort the process if
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/test/ |
runtktests.py | 26 # The Aqua Tk implementations on OS X can abort the process if
|
/external/chromium_org/remoting/host/installer/mac/PrivilegedHelperTools/ |
org.chromium.chromoting.me2me.sh | 110 # this script is launched in the "login" context. In the "aqua"
|
/external/chromium_org/remoting/host/installer/mac/uninstaller/ |
remoting_uninstaller.mm | 121 const char* argsUnload[] = { "unload", "-w", "-S", "Aqua",
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderThemeChromiumSkia.h | 106 // this distinction to support showing aqua style themes whenever they
|
/external/chromium_org/third_party/flot/ |
jquery.colorhelpers.min.js | 1 (function(b){b.color={};b.color.make=function(f,e,c,d){var h={};h.r=f||0;h.g=e||0;h.b=c||0;h.a=d!=null?d:1;h.add=function(k,j){for(var g=0;g<k.length;++g){h[k.charAt(g)]+=j}return h.normalize()};h.scale=function(k,j){for(var g=0;g<k.length;++g){h[k.charAt(g)]*=j}return h.normalize()};h.toString=function(){if(h.a>=1){return"rgb("+[h.r,h.g,h.b].join(",")+")"}else{return"rgba("+[h.r,h.g,h.b,h.a].join(",")+")"}};h.normalize=function(){function g(j,k,i){return k<j?j:(k>i?i:k)}h.r=g(0,parseInt(h.r),255);h.g=g(0,parseInt(h.g),255);h.b=g(0,parseInt(h.b),255);h.a=g(0,h.a,1);return h};h.clone=function(){return b.color.make(h.r,h.b,h.g,h.a)};return h.normalize()};b.color.extract=function(e,d){var f;do{f=e.css(d).toLowerCase();if(f!=""&&f!="transparent"){break}e=e.parent()}while(!b.nodeName(e.get(0),"body"));if(f=="rgba(0, 0, 0, 0)"){f="transparent"}return b.color.parse(f)};b.color.parse=function(f){var e,c=b.color.make;if(e=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(f)){return c(parseInt(e[1],10),parseInt(e[2],10),parseInt(e[3],10))}if(e=/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(f)){return c(parseInt(e[1],10),parseInt(e[2],10),parseInt(e[3],10),parseFloat(e[4]))}if(e=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(f)){return c(parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55)}if(e=/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(f)){return c(parseFloat(e[1])*2.55,parseFloat(e[2])*2.55,parseFloat(e[3])*2.55,parseFloat(e[4]))}if(e=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(f)){return c(parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16))}if(e=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(f)){return c(parseInt(e[1]+e[1],16),parseInt(e[2]+e[2],16),parseInt(e[3]+e[3],16))}var d=b.trim(f).toLowerCase();if(d=="transparent"){return c(255,255,255,0)}else{e=a[d]||[0,0,0];return c(e[0],e[1],e[2])}};var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42] (…)
|
/frameworks/base/graphics/java/android/graphics/ |
Color.java | 205 * 'aqua', 'fuschia', 'lime', 'maroon', 'navy', 'olive', 'purple', 409 sColorNameMap.put("aqua", 0xFF00FFFF);
|
/external/chromium_org/chrome/common/ |
service_process_util_unittest.cc | 347 cl.AppendArg("com.apple.launchctl.Aqua");
|
/external/chromium_org/third_party/WebKit/Source/core/platform/mac/ |
ScrollbarThemeMac.mm | 53 // FIXME: There are repainting problems due to Aqua scroll bar buttons' visual overflow.
|
ThemeMac.mm | 157 // Hover state is not supported by Aqua. 683 // We inflate the rect as needed to account for the Aqua button's shadow.
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
css.php | 64 'aqua', 'azimuth', 'background-attachment', 'background-color',
|
/hardware/ti/omap4xxx/camera/ |
TICameraParameters.cpp | 132 const char TICameraParameters::SCENE_MODE_AQUA[] = "aqua";
|
/external/chromium_org/third_party/skia/src/utils/ |
SkParseColor.cpp | 38 { "aqua", 0x00FFFF }, 229 0x86350800, 0x0000ffff, // aqua
|
/external/skia/src/utils/ |
SkParseColor.cpp | 38 { "aqua", 0x00FFFF }, 229 0x86350800, 0x0000ffff, // aqua
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 572 """Launcher class for Aqua browsers on Mac OS X 575 will not work for Aqua browsers if the user has moved the application
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
webbrowser.py | 572 """Launcher class for Aqua browsers on Mac OS X 575 will not work for Aqua browsers if the user has moved the application
|