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

1 2 3

  /external/clang/test/CodeGenCXX/
scoped-enums-debug-info.cpp 16 enum struct Colour { grey };
20 h(Colour::grey);
scoped-enums.cpp 12 enum struct Colour { grey };
16 h(Colour::grey);
  /external/libdaemon/doc/
style.css 30 .grey { color: #8f8f8f; font-size: 80%; }
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/
print.h 57 // Sets console color to grey.
58 struct grey { struct in namespace:libspirv::clr
print.cpp 34 clr::grey::operator const char*() { return "\x1b[1;30m"; }
60 clr::grey::operator const char*() {
116 clr::grey::operator const char*() { return ""; }
  /cts/tests/tests/opengl/libopengltest/
color_one.cpp 87 static float grey; local
88 grey = 0.01f;
90 glClearColor(grey, grey, grey, 1.0f);
  /frameworks/native/opengl/tests/gl2_jni/jni/
gl_code.cpp 130 static float grey; local
131 grey += 0.01f;
132 if (grey > 1.0f) {
133 grey = 0.0f;
135 glClearColor(grey, grey, grey, 1.0f);
  /frameworks/native/opengl/tests/gldual/jni/
gl_code.cpp 130 static float grey; local
131 grey += 0.01f;
132 if (grey > 1.0f) {
133 grey = 0.0f;
135 glClearColor(grey, grey, grey, 1.0f);
  /external/pdfium/third_party/libtiff/
tif_next.c 32 * NeXT 2-bit Grey Scale Compression Algorithm Support
105 uint32 npixels = 0, grey; local
119 grey = (uint32)((n>>6) & 0x3);
127 SETPIXEL(op, grey);
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 170 static float grey; local
171 grey += 0.01f;
172 if (grey > 1.0f) {
173 grey = 0.0f;
175 glClearColor(background, grey, grey, 1.0f);
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
PlanarYUVLuminanceSource.java 119 int grey = yuv[inputOffset + x] & 0xff; local
120 pixels[outputOffset + x] = 0xFF000000 | (grey * 0x00010101);
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerLayout.java 55 mFadedCircleColor = getResources().getColor(R.color.grey);
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerLayout.java 55 mFadedCircleColor = getResources().getColor(R.color.grey);
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerLayout.java 55 mFadedCircleColor = getResources().getColor(R.color.grey);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TextViewTest.java 117 TextView grey = (TextView) activity.findViewById(R.id.grey_text_view); local
118 assertThat(grey.getText().toString(), equalTo("Grey Text"));
119 assertThat(shadowOf(grey).getTextColorHexValue(), equalTo(activity.getResources().getColor(R.color.grey42)));
135 TextView grey = (TextView) activity.findViewById(R.id.grey_text_view_hint); local
136 assertThat(grey.getHint().toString(), equalTo("Grey Hint"));
137 assertThat(shadowOf(grey).getHintColorHexValue(), equalTo(activity.getResources().getColor(R.color.grey42)));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewThumbnail.java 233 int grey = mul; local
235 mDrawPaint.setColor(Color.argb(255, grey, grey, grey));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /external/python/cpython2/Lib/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /external/zopfli/src/zopflipng/
zopflipng_lib.cc 251 bool grey = true; local
255 grey = false;
259 if (grey) state.info_png.color.colortype = LCT_GREY_ALPHA;
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 59 def grey(text): function
150 rows.append('<tr><td>%s</td></tr>' % grey(line))
168 rows.append('<tr><td>%s</td></tr>' % small(grey(', '.join(dump))))
  /prebuilts/go/darwin-x86/src/runtime/
mgcwork.go 19 // This implements a producer/consumer model for pointers to grey
20 // objects. A grey object is one that is marked and on a work
24 // produce pointers to grey objects. Scanning consumes pointers to
25 // grey objects, thus blackening them, and then scans them,
26 // potentially producing new pointers to grey objects.
  /prebuilts/go/linux-x86/src/runtime/
mgcwork.go 19 // This implements a producer/consumer model for pointers to grey
20 // objects. A grey object is one that is marked and on a work
24 // produce pointers to grey objects. Scanning consumes pointers to
25 // grey objects, thus blackening them, and then scans them,
26 // potentially producing new pointers to grey objects.

Completed in 1094 milliseconds

1 2 3