/external/deqp/framework/opengl/ |
gluRenderConfig.hpp | 63 DONT_CARE = -1 85 , width (DONT_CARE) 86 , height (DONT_CARE) 89 , id (DONT_CARE) 90 , redBits (DONT_CARE) 91 , greenBits (DONT_CARE) 92 , blueBits (DONT_CARE) 93 , alphaBits (DONT_CARE) 94 , depthBits (DONT_CARE) 95 , stencilBits (DONT_CARE) [all...] |
gluRenderConfig.cpp | 35 DE_ASSERT(config->redBits == RenderConfig::DONT_CARE && 36 config->greenBits == RenderConfig::DONT_CARE && 37 config->blueBits == RenderConfig::DONT_CARE && 38 config->alphaBits == RenderConfig::DONT_CARE && 39 config->depthBits == RenderConfig::DONT_CARE && 40 config->stencilBits == RenderConfig::DONT_CARE && 41 config->numSamples == RenderConfig::DONT_CARE);
|
gluFboRenderContext.cpp | 97 if (config.redBits != glu::RenderConfig::DONT_CARE && 101 if (config.greenBits != glu::RenderConfig::DONT_CARE && 105 if (config.blueBits != glu::RenderConfig::DONT_CARE && 109 if (config.alphaBits != glu::RenderConfig::DONT_CARE && 138 if (config.depthBits != glu::RenderConfig::DONT_CARE && 142 if (config.stencilBits != glu::RenderConfig::DONT_CARE && 182 // \note All other properties are defaults, mostly DONT_CARE 224 if (width == glu::RenderConfig::DONT_CARE || height == glu::RenderConfig::DONT_CARE) 229 width = (width == glu::RenderConfig::DONT_CARE) ? maxSize : width [all...] |
/external/vulkan-validation-layers/libs/glm/detail/ |
hint.hpp | 34 // Use dont_care, nicest and fastest to optimize implementations. 35 class dont_care {}; class in namespace:glm
|
/external/chromium-trace/catapult/telemetry/telemetry/testing/ |
simple_mock.py | 7 DONT_CARE = '' 35 if self_a == DONT_CARE: 42 if a == DONT_CARE: 46 if self.return_value in (None, DONT_CARE): 86 func_name).WithArgs(*args).WillReturn(DONT_CARE)
|
simple_mock_unittest.py | 8 _ = simple_mock.DONT_CARE
|
/external/icu/icu4c/source/i18n/ |
fphdlimp.cpp | 56 if (delta != 0 && pos.getField() != FieldPosition::DONT_CARE && pos.getBeginIndex() != -1) { 64 return pos.getField() != FieldPosition::DONT_CARE;
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/ |
form_based_credentials_backend_unittest_base.py | 9 _ = simple_mock.DONT_CARE
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/ |
android_temperature_monitor_unittest.py | 10 _ = simple_mock.DONT_CARE
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
vtune_profiler_unittest.py | 76 'Popen').WithArgs(simple_mock.DONT_CARE).WillReturn(MockPopen(0)) 86 simple_mock.DONT_CARE).WillReturn(MockPopen(0, 'su', None))
|
perf_profiler_unittest.py | 31 'Popen').WithArgs(simple_mock.DONT_CARE).WillReturn(mock_popen)
|
android_profiling_helper_unittest.py | 117 'Popen').WithArgs(simple_mock.DONT_CARE).WillReturn(mock_popen) 141 'execute').WithArgs(simple_mock.DONT_CARE).WillReturn(vtune_db_output) 149 'connect').WithArgs(simple_mock.DONT_CARE).WillReturn(mock_conn)
|
/external/deqp/framework/platform/ios/ |
tcuIOSPlatform.mm | 164 const bool cr = config.redBits != glu::RenderConfig::DONT_CARE; 165 const bool cg = config.greenBits != glu::RenderConfig::DONT_CARE; 166 const bool cb = config.blueBits != glu::RenderConfig::DONT_CARE; 167 const bool ca = config.alphaBits != glu::RenderConfig::DONT_CARE;
|
/external/deqp/framework/platform/win32/ |
tcuWGLContextFactory.cpp | 92 config.width != glu::RenderConfig::DONT_CARE ? config.width : DEFAULT_WINDOW_WIDTH, 93 config.height != glu::RenderConfig::DONT_CARE ? config.height : DEFAULT_WINDOW_HEIGHT) 103 if (config.id != glu::RenderConfig::DONT_CARE)
|
tcuWGL.cpp | 469 if (config.redBits != glu::RenderConfig::DONT_CARE && 473 if (config.greenBits != glu::RenderConfig::DONT_CARE && 477 if (config.blueBits != glu::RenderConfig::DONT_CARE && 481 if (config.alphaBits != glu::RenderConfig::DONT_CARE && 485 if (config.depthBits != glu::RenderConfig::DONT_CARE && 489 if (config.stencilBits != glu::RenderConfig::DONT_CARE && 493 if (config.numSamples != glu::RenderConfig::DONT_CARE &&
|
tcuWin32GLES3Platform.cpp | 85 : m_renderTarget(config.width != glu::RenderConfig::DONT_CARE ? config.width : DEFAULT_WINDOW_WIDTH, 86 config.height != glu::RenderConfig::DONT_CARE ? config.height : DEFAULT_WINDOW_HEIGHT,
|
/external/deqp/framework/egl/ |
egluGLContextFactory.cpp | 215 DE_ASSERT((int)visibility == RenderConfig::DONT_CARE); 225 const int width = (config.width == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_CARE : config.width); 226 const int height = (config.height == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_CARE : config.height); 249 const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : config.width); 250 const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT : config.height); 272 const int width = (config.width == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_WIDTH : config.width); 273 const int height = (config.height == glu::RenderConfig::DONT_CARE ? DEFAULT_OFFSCREEN_HEIGHT : config.height);
|
/external/icu/icu4c/source/test/intltest/ |
msfmrgts.cpp | 102 FieldPosition pos(FieldPosition::DONT_CARE); 119 //tempBuffer = messageFormatter->format(NULL, 1, tempBuffer, FieldPosition(FieldPosition::DONT_CARE), status); 196 FieldPosition pos(FieldPosition::DONT_CARE); 254 /*tempBuffer = messageFormatter->format(null, tempBuffer, FieldPosition(FieldPosition::DONT_CARE), status); 397 FieldPosition pos(FieldPosition::DONT_CARE); 540 FieldPosition pos(FieldPosition::DONT_CARE); 544 logln("\"" + mf->format(objs2, 0, res, FieldPosition(FieldPosition::DONT_CARE), status) + "\""); 547 logln("\"" + mf->format(objs3, 0, res, FieldPosition(FieldPosition::DONT_CARE), status) + "\""); 592 FieldPosition bogus(FieldPosition::DONT_CARE); 651 FieldPosition bogus(FieldPosition::DONT_CARE); [all...] |
quantityformattertest.cpp | 118 FieldPosition pos(FieldPosition::DONT_CARE);
|
/external/icu/icu4c/source/i18n/unicode/ |
fieldpos.h | 109 * DONT_CARE may be specified as the field to indicate that the 112 enum { DONT_CARE = -1 }; 119 : UObject(), fField(DONT_CARE), fBeginIndex(0), fEndIndex(0) {}
|
/external/vboot_reference/tests/ |
vboot_api_kernel_tests.c | 54 #define DONT_CARE ((const char *)42) 172 .expected_to_find_disk = DONT_CARE, 312 if (t->expected_to_find_disk != DONT_CARE) {
|
/external/deqp/scripts/opengl/ |
gen_str_util.py | 338 ("HintMode", ["DONT_CARE", "FASTEST", "NICEST"]), 899 "DEBUG_SOURCE_OTHER", "DONT_CARE" 911 "DONT_CARE" 918 "DONT_CARE"
|
/external/chromium-trace/catapult/tracing/tracing/value/ |
unit.html | 32 DONT_CARE: 0, 153 case ImprovementDirection.DONT_CARE:
|
unit_test.html | 112 improvementDirection: ImprovementDirection.DONT_CARE, 138 improvementDirection: ImprovementDirection.DONT_CARE,
|
/external/deqp/framework/platform/X11/ |
tcuX11.cpp | 165 if (width == glu::RenderConfig::DONT_CARE) 167 if (height == glu::RenderConfig::DONT_CARE)
|