Searched defs:red (Results 1 - 25 of 122) sorted by relevance

12345

/external/vboot_reference/tests/futility/
H A Dcommon.sh24 red() { function
45 red "at ${cfile}, line ${cline}${spacer}${args}" 1>&2
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py2/term/
H A D__init__.py28 from _setup.term._term import terminfo, write, green, red, yellow, announce namespace
H A D_term.py99 def red(bmt, **kwargs): function
100 """ Write something in red on the screen """
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/_setup/py3/term/
H A D__init__.py28 from _setup.term._term import terminfo, write, green, red, yellow, announce namespace
H A D_term.py100 def red(bmt, **kwargs): function
101 """ Write something in red on the screen """
/external/clang/test/CodeGenCXX/
H A D2007-04-10-PackedUnion.cpp8 float red; member in struct:ABCS
H A Dscoped-enums.cpp4 enum class Color { red, blue, green }; member in class:Color
8 f(Color::red);
/external/clang/test/Sema/
H A Dattr-deprecated-message.c18 typedef enum {red, green, blue} Color __attribute__((deprecated("Please avoid Color"))); // expected-note {{'Color' has been explicitly marked deprecated here}} enumerator in enum:__anon2313
/external/mesa3d/src/mesa/main/
H A Daccum.h50 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha );
66 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
/external/ppp/pppd/plugins/
H A Dpassprompt.c33 ssize_t red; local
73 red = read(p[0], passwd + readgood, MAXSECRETLEN-1 - readgood);
74 if (red == 0)
76 if (red < 0) {
83 readgood += red;
H A Dpasswordfd.c35 int readgood, red; local
50 red = read (passwdfd, passwd + readgood, MAXSECRETLEN - 1 - readgood);
51 if (red == 0)
53 if (red < 0) {
58 readgood += red;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowColor.java11 public static int rgb(int red, int green, int blue) { argument
12 return argb(0xff, red, green, blue);
16 public static int argb(int alpha, int red, int green, int blue) { argument
17 return (alpha << 24) | (red << 16) | (green << 8) | blue;
/external/skia/src/codec/
H A DSkMasks.h23 uint32_t red; member in struct:SkMasks::InputMasks
74 SkMasks(const MaskInfo red, const MaskInfo green, const MaskInfo blue,
/external/skia/gm/
H A Dtexdata.cpp46 static const SkPMColor red = SkPackARGB32(0x80, 0x80, 0x00, 0x00); variable
122 ((x + y) % 2) ? (i ? green : red) : blue;
/external/clang/test/SemaTemplate/
H A Dinstantiate-c99.cpp31 unsigned char red, green, blue; member in struct:Color
H A Dinstantiate-non-dependent-types.cpp41 enum Colors {red, green, blue}; enumerator in enum:Colors
/external/deqp/framework/common/
H A DtcuPixelFormat.hpp42 PixelFormat (int red, int green, int blue, int alpha) argument
43 : redBits(red)
/external/iproute2/tc/
H A Dq_sfq.c40 int ok = 0, red = 0; local
105 red++;
112 red++;
119 red++;
126 red++;
133 red++;
140 red++;
143 red++;
146 red++;
157 if (red) {
[all...]
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DTGALoader.java183 entry.red = (byte)(int)(getBitsAsByte(cMapData, offset, bitsPerColor) * scalar);
211 byte red = 0;
252 // red = dis.readByte();
253 // rawData[rawDataIndex++] = red;
267 red = dis.readByte();
269 rawData[rawDataIndex++] = red;
280 byte red = 0;
301 red = dis.readByte();
304 rawData[rawDataIndex++] = red;
315 red
510 byte red, green, blue, alpha; field in class:TGALoader.ColorMapEntry
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DImageBasedHeightMap.java89 protected float calculateHeight(float red, float green, float blue) { argument
90 return (float) (0.299 * red + 0.587 * green + 0.114 * blue);
/external/jpeg/
H A Dwrrle.c176 rle_pixel **rle_row, *red, *green, *blue; local
241 red = rle_row[0];
245 *red++ = GETJSAMPLE(*output_row++);
/external/libcxx/test/std/utilities/function.objects/unord.hash/
H A Denum.pass.cpp22 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; member in class:Colors
24 enum class LongColors : short { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::LongColors
25 enum class ShortColors : long { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::ShortColors
26 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::EightBitColors
/external/libnl/lib/route/sch/
H A Dred.c2 * lib/route/sch/red.c RED Qdisc
14 * @defgroup red Random Early Detection (RED)
25 #include <netlink/route/sch/red.h>
57 struct rtnl_red *red; local
71 red = red_alloc(qdisc);
72 if (!red)
77 red->qr_limit = opts->limit;
78 red->qr_qth_min = opts->qth_min;
79 red->qr_qth_max = opts->qth_max;
80 red
94 struct rtnl_red *red = red_qdisc(qdisc); local
103 struct rtnl_red *red = red_qdisc(qdisc); local
112 struct rtnl_red *red = red_qdisc(qdisc); local
121 struct rtnl_red *red; local
161 struct rtnl_red *red; local
180 struct rtnl_red *red; local
[all...]
/external/libpng/contrib/gregbook/
H A Dreadppm.c133 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_fs.c79 static const float red[4] = { 1.0, 0.0, 0.0, 0.0 }; local
91 src = ureg_DECL_immediate(ureg, red, 4);

Completed in 8902 milliseconds

12345