/external/opencv3/3rdparty/libtiff/ |
tif_next.c | 32 * NeXT 2-bit Grey Scale Compression Algorithm Support 103 uint32 npixels = 0, grey; local 114 grey = (uint32)((n>>6) & 0x3); 122 SETPIXEL(op, grey);
|
/external/pdfium/third_party/libtiff/ |
tif_next.c | 32 * NeXT 2-bit Grey Scale Compression Algorithm Support 105 uint32 npixels = 0, grey; local 118 grey = (uint32)((n>>6) & 0x3); 126 SETPIXEL(op, grey);
|
/cts/tests/tests/opengl/libopengltest/ |
color_one.cpp | 87 static float grey; local 88 grey = 0.01f; 90 glClearColor(grey, grey, grey, 1.0f);
|
/development/ndk/platforms/android-5/samples/hello-gl2/jni/ |
gl_code.cpp | 150 static float grey; local 151 grey += 0.01f; 152 if (grey > 1.0f) { 153 grey = 0.0f; 155 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);
|
/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))))
|
pydoc.py | 490 def grey(self, text): return '<font color="#909090">%s</font>' % text function 515 return self.grey(name) [all...] |
/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))))
|
pydoc.py | 490 def grey(self, text): return '<font color="#909090">%s</font>' % text function 515 return self.grey(name) [all...] |
/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))))
|
/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);
|
/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/ImageMagick/coders/ |
xpm.c | 243 *grey, 408 grey=strstr(target,"grey"); 409 if (grey != (char *) NULL) 410 grey[2]='a'; 239 *grey, local [all...] |
/external/opencv3/modules/cudaobjdetect/test/ |
test_objdetect.cpp | 326 cv::Mat grey; local 327 cvtColor(image, grey, cv::COLOR_BGR2GRAY); 331 cpuClassifier.detectMultiScale(grey, rects); 341 cv::cuda::GpuMat tested(grey);
|
/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;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
TaskViewThumbnail.java | 210 int grey = mul; local 212 mDrawPaint.setColor(Color.argb(255, grey, grey, grey));
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
cursesm.h | 414 // i.e. set fore, back and grey attribute 427 // Get the menus grey attributes (used for unselectable items) 428 inline chtype grey() const { function in class:NCursesMenu 442 // Set the menus grey attributes (used for unselectable items)
|
menu.h | 118 chtype grey; /* Inactive attribute */ member in struct:tagMENU
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
cursesm.h | 414 // i.e. set fore, back and grey attribute 427 // Get the menus grey attributes (used for unselectable items) 428 inline chtype grey() const { function in class:NCursesMenu 442 // Set the menus grey attributes (used for unselectable items)
|
menu.h | 118 chtype grey; /* Inactive attribute */ member in struct:tagMENU
|
/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 | 155 Color grey= display.getSystemColor(SWT.COLOR_GRAY); local 161 gc.setForeground(grey);
|
/external/libvncserver/libvncserver/ |
cursor.c | 412 int r = 0, g = 0, b = 0, grey; local 424 grey = (r + g + b) / 3; 425 if (grey >= 128) {
|
/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)));
|