HomeSort by relevance Sort by last modified time
    Searched defs:yellow (Results 1 - 25 of 35) sorted by null

1 2

  /external/vboot_reference/tests/futility/
common.sh 19 yellow() { function
  /external/ImageMagick/MagickCore/
colorspace-private.h 49 yellow; local
72 yellow=(MagickRealType) (1.0-blue);
76 if (yellow < black)
77 black=yellow;
80 yellow=(MagickRealType) ((yellow-black)/(1.0-black));
84 pixel->blue=QuantumRange*yellow;
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/term/
_term.py 38 'YELLOW': '',
69 self['YELLOW'] = make_color(_curses.COLOR_YELLOW)
104 def yellow(fmt, **kwargs): function
105 """ Write something in yellow on the screen """
106 announce("%%(BOLD)s%%(YELLOW)s%s%%(NORMAL)s" % fmt, **kwargs)
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/term/
_term.py 38 'YELLOW': '',
70 self['YELLOW'] = make_color(_curses.COLOR_YELLOW)
105 def yellow(fmt, **kwargs): function
106 """ Write something in yellow on the screen """
107 announce("%%(BOLD)s%%(YELLOW)s%s%%(NORMAL)s" % fmt, **kwargs)
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
print.h 57 // Sets console color to yellow.
58 struct yellow { struct in namespace:libspirv::clr
  /external/vulkan-validation-layers/scripts/
vk_validation_stats.py 291 self.YELLOW = '\033[1;33m'
296 self.YELLOW = ''
305 def yellow(self): member in class:bcolors
306 return self.YELLOW
405 print(txt_color.yellow() + " Note that some checks are used multiple times. These may be good candidates for new valid usage spec language." + txt_color.endc())
406 print(txt_color.yellow() + " Here is a list of each check used multiple times with its number of uses:" + txt_color.endc())
409 print(txt_color.yellow() + " %s: %d uses in file,line:" % (enum, val_source.enum_count_dict[enum]['count']) + txt_color.endc())
411 print(txt_color.yellow() + " \t%s" % (file_line) + txt_color.endc())
432 print(txt_color.yellow() + " \nThe following tests do not use their reported enums to check for the validation error. You may want to update these to pass the expected enum to SetDesiredFailureMsg:" + txt_color.endc())
434 print(txt_color.yellow() + " Testname %s does not explicitly check for these ids:" % (testname) + txt_color.endc()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Enum.py 144 yellow = 5 variable in class:_test.ExtendedColor
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
Enum.py 109 yellow = 5 variable in class:_test.ExtendedColor
151 yellow = 5 variable in class:_test2.ExtendedColor
  /external/libcxx/test/std/utilities/function.objects/unord.hash/
enum.pass.cpp 24 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; member in class:Colors
26 enum class LongColors : short { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::LongColors
27 enum class ShortColors : long { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::ShortColors
28 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::EightBitColors
  /external/python/cpython2/Demo/metaclasses/
Enum.py 144 yellow = 5 variable in class:_test.ExtendedColor
  /external/python/cpython2/Demo/newmetaclasses/
Enum.py 109 yellow = 5 variable in class:_test.ExtendedColor
151 yellow = 5 variable in class:_test2.ExtendedColor
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/unord.hash/
enum.pass.cpp 24 enum class Colors { red, orange, yellow, green, blue, indigo, violet }; member in class:Colors
26 enum class LongColors : short { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::LongColors
27 enum class ShortColors : long { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::ShortColors
28 enum class EightBitColors : uint8_t { red, orange, yellow, green, blue, indigo, violet }; member in class:Cardinals::EightBitColors
  /external/deqp/modules/gles3/functional/
es3fFboDepthbufferTests.cpp 255 const tcu::Vec4 yellow (1.0, 1.0, 0.0, 1.0);
292 // Render yellow quad, depth gradient = [-0.5..3]. Gradients have equal values only outside [0, 1] range due to clamping
294 depthGradShader.setUniforms(*getCurrentContext(), depthGradShaderID, -0.5f, 3.0f, yellow); local
  /external/libnl/python/netlink/
util.py 33 def yellow(t): function
52 return yellow(t)
  /external/jline/src/src/main/java/jline/
ANSIBuffer.java 83 public ANSIBuffer yellow(final String str) { method in class:ANSIBuffer
259 * 33 Yellow
269 * 43 Yellow
  /external/skia/gm/
shapes_as_paths.cpp 71 SkPMColor yellow = SkPackARGB32(0xFF, 0xFF, 0xFF, 0x00); local
72 *highlight.getAddr32(maxDiffX, maxDiffY) = yellow;
73 *highlight.getAddr32(SkTMax(maxDiffX - 1, 0), maxDiffY) = yellow;
74 *highlight.getAddr32(maxDiffX, SkTMax(maxDiffY - 1, 0)) = yellow;
75 *highlight.getAddr32(SkTMin(maxDiffX + 1, w - 1), maxDiffY) = yellow;
76 *highlight.getAddr32(maxDiffX, SkTMin(maxDiffY + 1, h - 1)) = yellow;
  /external/skqp/gm/
shapes_as_paths.cpp 70 SkPMColor yellow = SkPackARGB32(0xFF, 0xFF, 0xFF, 0x00); local
71 *highlight.getAddr32(maxDiffX, maxDiffY) = yellow;
72 *highlight.getAddr32(SkTMax(maxDiffX - 1, 0), maxDiffY) = yellow;
73 *highlight.getAddr32(maxDiffX, SkTMax(maxDiffY - 1, 0)) = yellow;
74 *highlight.getAddr32(SkTMin(maxDiffX + 1, w - 1), maxDiffY) = yellow;
75 *highlight.getAddr32(maxDiffX, SkTMin(maxDiffY + 1, h - 1)) = yellow;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wcsplugin.h 27 JabColorF yellow; member in struct:_PrimaryJabColors
60 JabColorF yellow; member in struct:_PrimaryJabColors
77 XYZColorF yellow; member in struct:_PrimaryXYZColors
icm.h 42 WORD yellow; member in struct:CMYKCOLOR
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 38 GLColor yellow = new GLColor(one, one, 0); local
107 mCubes[i].setFaceColor(Cube.kLeft, yellow);
  /external/ImageMagick/Magick++/lib/
Color.cpp 453 yellow(yellow_);
463 yellow(yellow_);
518 void Magick::ColorCMYK::yellow(const double yellow_) function in class:Magick::ColorCMYK
523 double Magick::ColorCMYK::yellow(void) const function in class:Magick::ColorCMYK
  /external/deqp/modules/gles31/functional/
es31fVertexAttributeBindingTests.cpp 76 // Verifies image contains only yellow or greeen, or a linear combination
95 // Any pixel with !(G ~= 255) is faulty (not a linear combinations of green and yellow)
99 // Any pixel with !(B ~= 0) is faulty (not a linear combinations of green and yellow)
712 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
772 const tcu::Vec4& color = ((x + y) % 2 == 0) ? (green) : (yellow);
784 const tcu::Vec4& color = ((x + y) % 2 == 0) ? (green) : (yellow);
999 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
1239 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
    [all...]
es31fGeometryShaderTests.cpp 966 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
995 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
1274 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
3443 const tcu::Vec4 yellow = tcu::Vec4(1.0f, 1.0f, 0.0f, 1.0f); local
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
_CGmodule.c 751 float yellow; local
757 &yellow,
764 yellow,
777 float yellow; local
783 &yellow,
790 yellow,
    [all...]
  /external/python/cpython3/Lib/test/
test_enum.py 883 yellow = 6 variable in class:TestEnum.test_extending.Color.MoreColor
1494 yellow = 6 variable in class:TestEnum.test_extending2.Color.MoreColor
1506 yellow = 6 variable in class:TestEnum.test_extending3.MoreColor
    [all...]

Completed in 741 milliseconds

1 2