HomeSort by relevance Sort by last modified time
    Searched refs:gold (Results 1 - 19 of 19) sorted by null

  /external/llvm/tools/gold/
Makefile 1 #===- tools/gold/Makefile ----------------------------------*- Makefile -*-===##
17 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/gold.exports
  /external/chromium/build/
install-build-deps.sh 15 echo "--[no-]gold: enable or disable installation of gold linker"
26 --gold) do_inst_gold=1;;
27 --no-gold) do_inst_gold=0;;
36 # Gold is optional; it's a faster replacement for ld,
45 echo root cannot write to the current directory, not installing gold
64 --- src/gold/object.h 2010/09/08 23:54:51 1.103
65 +++ src/gold/object.h 2011/02/10 01:15:28 1.103.2.1
67 // object.h -- support for an object file for linking in gold -*- C++ -*-
73 // This file is part of gold
    [all...]
  /external/webkit/Examples/NetscapeCoreAnimationPlugin/
main.m 53 bool gold;
195 obj->gold = !obj->gold;
197 [obj->layer setValue:[NSNumber numberWithBool:obj->gold] forInputKey:@"gold"];
  /external/llvm/tools/
Makefile 50 # gold only builds if binutils is around. It requires "lto" to build before
53 DIRS += lto gold
  /ndk/build/tools/
gen-toolchain-wrapper.sh 129 ld|ld.bfd|ld.gold) FLAGS=$FLAGS" $EXTRA_LDFLAGS";;
prebuilt-common.sh 849 # Disable ARM Gold linker for now, it doesn't build on Windows, it
852 #ABI_CONFIGURE_EXTRA_FLAGS="$ABI_CONFIGURE_EXTRA_FLAGS --enable-gold=both/gold"
download-toolchain-sources.sh 172 toolchain_clone gold # not sure about this one !
  /prebuilts/gcc/linux-x86/x86/i686-android-linux-4.4.3/
build-toolchain.sh 131 for PROJECT in build binutils gcc gdb mpfr gmp gold; do
  /external/bison/src/
vcg.h 42 gold, enumerator in enum:color
    [all...]
vcg.c 232 case gold: return "gold";
  /system/extras/tests/bionic/libc/
Android.mk 118 # garbage-collected by the gold linker, since the function
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 1037 local SUBDIRS="binutils build gcc gdb gmp gold mpfr"
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 1251 local SUBDIRS="binutils build gcc gdb gold gmp mpfr mpc"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/
build-hardy-toolchain.sh 1251 local SUBDIRS="binutils build gcc gdb gold gmp mpfr mpc"
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/jquery/
jquery.flot.min.js 1 (function(){jQuery.color={};jQuery.color.make=function(G,H,J,I){var A={};A.r=G||0;A.g=H||0;A.b=J||0;A.a=I!=null?I:1;A.add=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]+=D}return A.normalize()};A.scale=function(C,D){for(var E=0;E<C.length;++E){A[C.charAt(E)]*=D}return A.normalize()};A.toString=function(){if(A.a>=1){return"rgb("+[A.r,A.g,A.b].join(",")+")"}else{return"rgba("+[A.r,A.g,A.b,A.a].join(",")+")"}};A.normalize=function(){function C(E,D,F){return D<E?E:(D>F?F:D)}A.r=C(0,parseInt(A.r),255);A.g=C(0,parseInt(A.g),255);A.b=C(0,parseInt(A.b),255);A.a=C(0,A.a,1);return A};A.clone=function(){return jQuery.color.make(A.r,A.b,A.g,A.a)};return A.normalize()};jQuery.color.extract=function(E,F){var A;do{A=E.css(F).toLowerCase();if(A!=""&&A!="transparent"){break}E=E.parent()}while(!jQuery.nodeName(E.get(0),"body"));if(A=="rgba(0, 0, 0, 0)"){A="transparent"}return jQuery.color.parse(A)};jQuery.color.parse=function(A){var F,H=jQuery.color.make;if(F=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10))}if(F=/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(A)){return H(parseInt(F[1],10),parseInt(F[2],10),parseInt(F[3],10),parseFloat(F[4]))}if(F=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55)}if(F=/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(A)){return H(parseFloat(F[1])*2.55,parseFloat(F[2])*2.55,parseFloat(F[3])*2.55,parseFloat(F[4]))}if(F=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(A)){return H(parseInt(F[1],16),parseInt(F[2],16),parseInt(F[3],16))}if(F=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(A)){return H(parseInt(F[1]+F[1],16),parseInt(F[2]+F[2],16),parseInt(F[3]+F[3],16))}var G=jQuery.trim(A).toLowerCase();if(G=="transparent"){return H(255,255,255,0)}else{F=B[G];return H(F[0],F[1],F[2])}};var B={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],lightcya (…)
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]
  /external/openfst/
configure     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
global-libraries-combined.js     [all...]

Completed in 4509 milliseconds