/external/chromium_org/third_party/angle/tests/preprocessor_tests/ |
identifier_test.cpp | 74 testing::Combine(testing::Values('_'), 80 testing::Combine(testing::Values('_'), 86 testing::Combine(testing::Values('_'), 92 testing::Combine(testing::Values('_'), 98 testing::Combine(CLOSED_RANGE('a', 'z'), 104 testing::Combine(CLOSED_RANGE('a', 'z'), 110 testing::Combine(CLOSED_RANGE('a', 'z'), 116 testing::Combine(CLOSED_RANGE('a', 'z'), 122 testing::Combine(CLOSED_RANGE('A', 'Z'), 128 testing::Combine(CLOSED_RANGE('A', 'Z') [all...] |
number_test.cpp | 58 testing::Combine(testing::Values(""), 63 testing::Combine(testing::Values("0"), 68 testing::Combine(testing::Values("0x", "0X"), 73 testing::Combine(testing::Values("0x", "0X"), 78 testing::Combine(testing::Values("0x", "0X"), 118 testing::Combine(CLOSED_RANGE('0', '9'), 151 testing::Combine(CLOSED_RANGE('0', '9'), 156 testing::Combine(testing::Values('\0'), 161 testing::Combine(CLOSED_RANGE('0', '9'),
|
/external/webrtc/src/system_wrappers/source/ |
data_log_unittest.cc | 118 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0); 121 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0); 126 DataLog::Combine("a proper table", 1)); 131 DataLog::AddTable(DataLog::Combine("table", 1)); 132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1); 133 DataLog::AddColumn(DataLog::Combine("table", 1), "timestamp", 1); 134 DataLog::AddColumn(DataLog::Combine("table", 1), "size", 5); 137 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", 139 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", 141 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5) [all...] |
data_log_no_op.cc | 24 std::string DataLog::Combine(const std::string& table_name, int table_id) {
|
data_log_unittest_disabled.cc | 39 std::string table_name = DataLog::Combine("table", 1); 49 // Don't use the table name we would get from Combine on a disabled DataLog.
|
/external/chromium_org/chrome/installer/util/ |
language_selector_unittest.cc | 127 ::testing::Combine( 134 ::testing::Combine( 141 ::testing::Combine( 148 ::testing::Combine( 155 ::testing::Combine( 162 ::testing::Combine(
|
/external/chromium_org/components/policy/core/common/ |
schema_registry.cc | 106 Combine(true); 113 Combine(false); 128 Combine(true); 135 Combine(false); 142 Combine(has_new_schemas); 149 void CombinedSchemaRegistry::Combine(bool has_new_schemas) {
|
schema_registry.h | 106 void Combine(bool has_new_schemas);
|
/external/chromium_org/chrome/browser/media/ |
encrypted_media_browsertest.cc | 295 using ::testing::Combine; 300 Combine(Values(kClearKeyKeySystem), Values(SRC))); 304 Combine(Values(kClearKeyKeySystem), Values(MSE))); 309 Combine(Values(kExternalClearKeyKeySystem), Values(SRC))); 311 Combine(Values(kExternalClearKeyKeySystem), Values(MSE))); 314 Combine(Values(kExternalClearKeyDecryptOnlyKeySystem), Values(MSE))); 322 Combine(Values(kWidevineKeySystem), Values(MSE)));
|
/external/chromium_org/chrome/browser/ui/ash/ |
accelerator_commands_browsertest.cc | 25 using testing::Combine; 250 Combine(Values(false, true), 254 Combine(Values(false, true), 262 Combine(Values(false), 266 Combine(Values(false), 387 Combine(Values(false, true), 391 Combine(Values(false, true), 399 Combine(Values(false), 403 Combine(Values(false),
|
/external/chromium_org/content/browser/media/ |
encrypted_media_browsertest.cc | 131 using ::testing::Combine; 137 Combine(Values(kClearKeyKeySystem), Values(SRC))); 141 Combine(Values(kClearKeyKeySystem), Values(MSE)));
|
/external/webrtc/src/system_wrappers/interface/ |
data_log.h | 58 static std::string Combine(const std::string& table_name, int table_id);
|
/external/chromium/testing/gtest/samples/ |
sample8_unittest.cc | 33 // Combine() helps with generating all possible combinations of such flags, 86 using ::testing::Combine; 153 // Here, we instantiate our tests with a list of parameters. We must combine 157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all 161 Combine(Bool(), Values(1, 10))); 165 // Google Test may not support Combine() with some compilers. If we
|
/external/chromium_org/testing/gtest/samples/ |
sample8_unittest.cc | 33 // Combine() helps with generating all possible combinations of such flags, 86 using ::testing::Combine; 153 // Here, we instantiate our tests with a list of parameters. We must combine 157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all 161 Combine(Bool(), Values(1, 10))); 165 // Google Test may not support Combine() with some compilers. If we
|
/external/gtest/samples/ |
sample8_unittest.cc | 33 // Combine() helps with generating all possible combinations of such flags, 86 using ::testing::Combine; 153 // Here, we instantiate our tests with a list of parameters. We must combine 157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all 161 Combine(Bool(), Values(1, 10))); 165 // Google Test may not support Combine() with some compilers. If we
|
/external/protobuf/gtest/samples/ |
sample8_unittest.cc | 33 // Combine() helps with generating all possible combinations of such flags, 86 using ::testing::Combine; 153 // Here, we instantiate our tests with a list of parameters. We must combine 157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all 161 Combine(Bool(), Values(1, 10))); 165 // Google Test doesn't support Combine() on some platforms and compilers,
|
/ndk/sources/third_party/googletest/googletest/samples/ |
sample8_unittest.cc | 33 // Combine() helps with generating all possible combinations of such flags, 86 using ::testing::Combine; 153 // Here, we instantiate our tests with a list of parameters. We must combine 157 // PrecalcPrimeTable instance and some inside it (10). Combine will produce all 161 Combine(Bool(), Values(1, 10))); 165 // Google Test may not support Combine() with some compilers. If we
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
texenv.c | 156 if (texUnit->Combine.ModeRGB == mode) 159 texUnit->Combine.ModeRGB = mode; 163 if (texUnit->Combine.ModeA == mode) 166 texUnit->Combine.ModeA = mode; 259 texUnit->Combine.SourceA[term] = param; 261 texUnit->Combine.SourceRGB[term] = param; 341 texUnit->Combine.OperandA[term] = param; 343 texUnit->Combine.OperandRGB[term] = param; 371 if (texUnit->Combine.ScaleShiftRGB == shift) 374 texUnit->Combine.ScaleShiftRGB = shift [all...] |
texstate.c | 47 * Default texture combine environment state. This is used to initialize 92 dst->Texture.Unit[u].Combine = src->Texture.Unit[u].Combine; 127 printf(" GL_COMBINE_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeRGB)); 128 printf(" GL_COMBINE_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeA)); 129 printf(" GL_SOURCE0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[0])); 130 printf(" GL_SOURCE1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[1])); 131 printf(" GL_SOURCE2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[2])); 132 printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[0])); 133 printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[1])) 391 struct gl_tex_env_combine_state *combine; local [all...] |
/external/mesa3d/src/mesa/main/ |
texenv.c | 156 if (texUnit->Combine.ModeRGB == mode) 159 texUnit->Combine.ModeRGB = mode; 163 if (texUnit->Combine.ModeA == mode) 166 texUnit->Combine.ModeA = mode; 259 texUnit->Combine.SourceA[term] = param; 261 texUnit->Combine.SourceRGB[term] = param; 341 texUnit->Combine.OperandA[term] = param; 343 texUnit->Combine.OperandRGB[term] = param; 371 if (texUnit->Combine.ScaleShiftRGB == shift) 374 texUnit->Combine.ScaleShiftRGB = shift [all...] |
texstate.c | 47 * Default texture combine environment state. This is used to initialize 92 dst->Texture.Unit[u].Combine = src->Texture.Unit[u].Combine; 127 printf(" GL_COMBINE_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeRGB)); 128 printf(" GL_COMBINE_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeA)); 129 printf(" GL_SOURCE0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[0])); 130 printf(" GL_SOURCE1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[1])); 131 printf(" GL_SOURCE2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[2])); 132 printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[0])); 133 printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[1])) 391 struct gl_tex_env_combine_state *combine; local [all...] |
/external/chromium_org/ui/gfx/ |
transform_util.cc | 41 void Combine(SkMScalar* out, 99 Combine<4>(out, q1, q2, scale1, scale2); 300 Combine<3>(out->translate, to.translate, from.translate, scalea, scaleb); 301 Combine<3>(out->scale, to.scale, from.scale, scalea, scaleb); 302 Combine<3>(out->skew, to.skew, from.skew, scalea, scaleb); 303 Combine<4>( 380 Combine<3>(row[1], row[1], row[0], 1.0, -decomp->skew[0]); 391 Combine<3>(row[2], row[2], row[0], 1.0, -decomp->skew[1]); 393 Combine<3>(row[2], row[2], row[1], 1.0, -decomp->skew[2]);
|
/external/chromium/testing/gtest/test/ |
gtest-param-test_test.cc | 66 using ::testing::Combine; 462 // Tests that Combine() with two parameters generates the expected sequence. 467 Combine(Values(foo, bar), Values(3, 4)); 475 // Tests that Combine() with three parameters generates the expected sequence. 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), 488 // Tests that the Combine() with the first parameter generating a single value 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), 499 // Tests that the Combine() with the second parameter generating a single value 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), 511 // Combine() produces an empty sequence, too [all...] |
/external/chromium_org/testing/gtest/test/ |
gtest-param-test_test.cc | 66 using ::testing::Combine; 462 // Tests that Combine() with two parameters generates the expected sequence. 467 Combine(Values(foo, bar), Values(3, 4)); 475 // Tests that Combine() with three parameters generates the expected sequence. 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), 488 // Tests that the Combine() with the first parameter generating a single value 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), 499 // Tests that the Combine() with the second parameter generating a single value 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), 511 // Combine() produces an empty sequence, too [all...] |
/external/gtest/test/ |
gtest-param-test_test.cc | 66 using ::testing::Combine; 462 // Tests that Combine() with two parameters generates the expected sequence. 467 Combine(Values(foo, bar), Values(3, 4)); 475 // Tests that Combine() with three parameters generates the expected sequence. 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), 488 // Tests that the Combine() with the first parameter generating a single value 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), 499 // Tests that the Combine() with the second parameter generating a single value 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), 511 // Combine() produces an empty sequence, too [all...] |