HomeSort by relevance Sort by last modified time
    Searched refs:red (Results 1 - 25 of 1553) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLColor.java 21 public final int red; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) {
27 this.red = red;
33 public GLColor(int red, int green, int blue) {
34 this.red = red;
44 return (red == color.red &&
  /external/ImageMagick/api_examples/
magick.sh 2 magick -size 100x100 xc:red \
wand.c 4 magick -size 100x100 xc:red \
47 *red, /* red image wand */ local
59 /* read in the red image */
60 red = NewMagickWand();
61 MagickSetSize(red,100,100);
62 status = MagickReadImage(red, "xc:red" );
64 ThrowWandException(red);
87 /* append rose image into the red image wand *
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowColor.java 11 public static int rgb(int red, int green, int blue) {
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) {
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptorProcessTest.java 47 private IParcelFileDescriptorPeer red; field in class:ParcelFileDescriptorProcessTest
92 "android.os.cts", "android.os.cts.ParcelFileDescriptorPeer$Red"));
102 red = redConn.get();
104 red.setPeer(blue);
105 blue.setPeer(red);
124 // red <-- blue
125 red.setupReadPipe();
129 assertEquals(1, red.read());
132 assertEquals(-1, red.read());
133 assertEquals(null, red.checkError())
    [all...]
  /external/libnl/lib/route/qdisc/
red.c 2 * lib/route/qdisc/red.c RED Qdisc
14 * @defgroup qdisc_red Random Early Detection (RED)
25 #include <netlink/route/qdisc/red.h>
44 struct rtnl_red *red = data; local
60 red->qr_limit = opts->limit;
61 red->qr_qth_min = opts->qth_min;
62 red->qr_qth_max = opts->qth_max;
63 red->qr_flags = opts->flags;
64 red->qr_wlog = opts->Wlog
78 struct rtnl_red *red = data; local
88 struct rtnl_red *red = data; local
98 struct rtnl_red *red = data; local
107 struct rtnl_red *red = data; local
138 struct rtnl_red *red; local
154 struct rtnl_red *red; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
Enum.py 9 red = 1
13 Now, Color.red, Color.green and Color.blue behave totally
64 EnumInstance('Color', 'red', 12) prints as 'Color.red' and behaves
94 red = 1 variable in class:_test.Color
98 print Color.red
100 print repr(Color.red)
101 print Color.red == Color.red
102 print Color.red == Color.blue
136 red = 1 variable in class:_test2.Color
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
020-define-func-2-arg-multi.c 1 #define foo(x,y) x,two fish,red fish,y
  /external/syslinux/com32/sysdump/
rbtree.c 37 * Simple implementation of a left-leaning red-black tree with 64-bit
43 * information about left-leaning red-black trees.
68 return h && h->red;
76 x->red = x->left->red;
77 x->left->red = true;
86 x->red = x->right->red;
87 x->right->red = true;
93 h->red = !h->red
    [all...]
  /external/clang/test/CodeGenCXX/
scoped-enums.cpp 4 enum class Color { red, blue, green }; member in class:Color
8 f(Color::red);
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
fetch_macholib 2 svn export --force http://svn.red-bean.com/bob/macholib/trunk/macholib/ .
  /external/ppp/pppd/plugins/
passwordfd.c 35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/wavelib/
PipeShort.java 98 int red = mMaxValues - front; local
99 if (red > count) {
100 red = count;
103 System.arraycopy(mBuffer, front, buffer, offset, red);
105 if (front + red == mMaxValues) {
106 if ((count -= red) > front) {
110 System.arraycopy(mBuffer, 0, buffer, offset + red, count);
111 red += count;
114 mFront += red;
115 return red;
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
intrinsic_lut.rs 19 short red[256];
26 tmp.r = red[in.r];
  /cts/tests/tests/uirendering/src/android/uirendering/cts/util/
CompareUtils.java 10 int diff = Math.abs(Color.red(color) - Color.red(expectedColor))
22 int average = Color.red(color) + Color.green(color) + Color.blue(color);
24 return Math.abs(Color.red(color) - average) <= threshold
  /external/sl4a/ScriptingLayerForAndroid/src/de/mud/terminal/
VDUDisplay.java 38 public void setColor(int index, int red, int green, int blue);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Enum.py 15 red = 1
19 Now, Color.red, Color.green and Color.blue behave totally
34 statement. In the above example, it would be {'red': 1,
51 For example, Color.red returns the value corresponding to red.
93 EnumInstance('Color', 'red', 12) prints as 'Color.red' and behaves
129 red = 1 variable in class:_test.Color
133 print Color.red
136 print Color.red == Color.red
    [all...]
  /external/eigen/blas/testing/
runblastest.sh 4 red='\E[31m'
21 echo -e $red Test $1 failed: $black
29 echo -e $red "Test $1 failed (FATAL ERROR, read the file $1.summ for details)" $black
37 echo -e $red "Test $1 failed (FAILED THE TESTS OF ERROR-EXITS, read the file $1.summ for details)" $black
  /external/vboot_reference/tests/futility/
common.sh 24 red() { function
45 red "at ${cfile}, line ${cline}${spacer}${args}" 1>&2
  /external/ImageMagick/MagickCore/
gem.c 74 % ConvertHCLToRGB() transforms a (hue, chroma, luma) to a (red, green,
80 % const double luma,double *red,double *green,double *blue)
87 % o red, green, blue: A pointer to a pixel component of type Quantum.
91 const double luma,double *red,double *green,double *blue)
105 assert(red != (double *) NULL);
150 *red=QuantumRange*(r+m);
167 % ConvertHCLpToRGB() transforms a (hue, chroma, luma) to a (red, green,
174 % const double luma,double *red,double *green,double *blue)
181 % o red, green, blue: A pointer to a pixel component of type Quantum.
185 const double luma,double *red,double *green,double *blue
    [all...]
colorspace-private.h 32 pixel->red=((QuantumRange-(QuantumScale*pixel->red*(QuantumRange-
48 red, local
53 red=QuantumScale*pixel->red;
59 red=QuantumScale*DecodePixelGamma(pixel->red);
63 if ((fabs((double) red) < MagickEpsilon) &&
70 cyan=(MagickRealType) (1.0-red);
82 pixel->red=QuantumRange*cyan
    [all...]
  /external/skia/src/codec/
SkMasks.cpp 132 masks.red &= (1 << bitsPerPixel) - 1;
139 if (((masks.red & masks.green) | (masks.red & masks.blue) |
140 (masks.red & masks.alpha) | (masks.green & masks.blue) |
146 const MaskInfo red = process_mask(masks.red, bitsPerPixel); local
151 return new SkMasks(red, green, blue, alpha);
155 SkMasks::SkMasks(const MaskInfo& red, const MaskInfo& green,
157 : fRed(red)

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>