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

1 2 3 4

  /external/autotest/client/deps/glbench/src/
glinterfacetest.cc 47 const GLfloat white[4] = {1.0f, 1.0f, 1.0f, 1.0f}; local
48 glUniform4fv(color_uniform, 1, white);
windowmanagertest.cc 125 float white[4] = {1.0f, 1.0f, 1.0f, 1.0f}; local
146 glUniform4fv(display_color, 1, white);
  /external/skia/gm/
thinrects.cpp 30 SkPaint white; variable
31 white.setColor(SK_ColorWHITE);
32 white.setAntiAlias(true);
41 DrawVertRects(canvas, white);
49 DrawHorizRects(canvas, white);
58 DrawSquares(canvas, white);
texdata.cpp 27 // gray | white
32 const SkPMColor white = SkPackARGB32(0xff, 0xff, 0xff, 0xff); local
47 pixels[offset + y * kStride + x] = white;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/metaclasses/
Enum.py 142 white = 0 variable in class:_test.ExtendedColor
154 white = 4 variable in class:_test.OtherColor
161 print MergedColor.white
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/newmetaclasses/
Enum.py 107 white = 0 variable in class:_test.ExtendedColor
119 white = 4 variable in class:_test.OtherColor
126 print MergedColor.white
149 white = 0 variable in class:_test2.ExtendedColor
161 white = 4 variable in class:_test2.OtherColor
168 print MergedColor.white
  /external/libcups/filter/
rastertopwg.c 51 unsigned char white; /* White pixel */ local
149 white = 255;
169 white = 0;
443 memset(line, white, linesize);
472 memset(line, white, linesize);
  /external/libnl/python/netlink/
util.py 45 def white(t): function
  /external/pdfium/fpdfsdk/javascript/
color.cpp 31 {"white", get_white_static, set_white_static},
146 bool color::white(CJS_Runtime* pRuntime, function in class:color
  /external/ImageMagick/MagickCore/
quantum-export.c 1958 white; local
2217 white; local
    [all...]
quantum-import.c 2034 white; local
    [all...]
enhance.c 1029 *white; local
1511 white[CompositePixelChannel+1]; local
2845 white, local
    [all...]
accelerate.c 1010 white; local
2366 white, local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/tessellation/
vktTessellationWindingTests.cpp 80 const tcu::Vec4 white = tcu::RGBA::white().toVec(); local
88 numWhitePixels += image.getPixel(x, y) == white ? 1 : 0;
94 log << tcu::TestLog::Message << "Note: got " << numWhitePixels << " white and " << numRedPixels << " red pixels" << tcu::TestLog::EndMessage;
100 << "Failure: Got " << otherPixels << " other than white or red pixels (maximum tolerance " << badPixelTolerance << ")"
111 log << tcu::TestLog::Message << "Failure: wrong number of white pixels; expected approximately " << totalNumPixels/2 << tcu::TestLog::EndMessage;
119 log << tcu::TestLog::Message << "Failure: expected only white pixels (full-viewport quad)" << tcu::TestLog::EndMessage;
  /external/deqp/framework/common/
tcuRGBA.hpp 100 static inline const RGBA white (void) { return RGBA(0xFF, 0xFF, 0xFF, 0xFF); } function in class:tcu::RGBA
  /external/dng_sdk/source/
dng_render.cpp 33 dng_function_exposure_ramp::dng_function_exposure_ramp (real64 white,
37 : fSlope ((white == black) ? 0.0f : 1.0 / (white - black))
51 const real64 kMaxCurveY = 1.0 / 16.0; // Fraction of white.
102 // point, yet still map pure white to pure white.
919 real64 white = 1.0 / pow (2.0, Max_real64 (0.0, exposure)); local
926 black = Min_real64 (black, 0.99 * white);
928 dng_function_exposure_ramp rampFunction (white,
1008 // applying the white balance and camera profile
    [all...]
  /external/mesa3d/src/mesa/program/
program.c 1018 static const GLfloat white[4] = { 0.5, 0.5, 0.5, 0.5 }; local
1022 (gl_constant_value *) white,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wcsplugin.h 33 JabColorF white; member in struct:_PrimaryJabColors
66 JabColorF white; member in struct:_PrimaryJabColors
83 XYZColorF white; member in struct:_PrimaryXYZColors
  /system/extras/tests/framebuffer/
fb_test.c 198 uint16_t white = 0xffff; variable
235 loc[i + j*(stride)] = white;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
Kube.java 40 GLColor white = new GLColor(one, one, one); local
110 mCubes[i].setFaceColor(Cube.kRight, white);
  /external/libevent/
event_rpcgen.py 26 white = re.compile(r'\s+') variable
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
BarGraph.java 84 // draw white background
188 Color white= display.getSystemColor(SWT.COLOR_WHITE); local
242 gc.setBackground(white);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/
R.java 91 public static final int white = nextId++; field in class:R.color
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TextViewTest.java 113 TextView white = (TextView) activity.findViewById(R.id.white_text_view); local
114 assertThat(white.getText().toString(), equalTo("White Text"));
115 assertThat(shadowOf(white).getTextColorHexValue(), equalTo(activity.getResources().getColor(android.R.color.white)));
131 TextView white = (TextView) activity.findViewById(R.id.white_text_view_hint); local
132 assertThat(white.getHint().toString(), equalTo("White Hint"));
133 assertThat(shadowOf(white).getHintColorHexValue(), equalTo(activity.getResources().getColor(android.R.color.white)));
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
Workspace.java 779 JToggleButton white = new JToggleButton("On White"); local
780 toggleColorOnSelect(white);
781 white.putClientProperty("JButton.buttonType", "segmentedTextured");
782 white.putClientProperty("JButton.segmentPosition", "first");
783 white.addActionListener(new ActionListener() {
785 layoutView.setBackground(Color.WHITE);
789 group.add(white);
790 buttonsPanel.add(white);
799 layoutView.setForeground(Color.WHITE);
838 JToggleButton white = new JToggleButton("On White"); local
    [all...]

Completed in 1089 milliseconds

1 2 3 4