/external/webrtc/src/system_wrappers/source/ |
D | data_log_unittest.cc | 118 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0); in TEST() 121 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0); in TEST() 126 DataLog::Combine("a proper table", 1)); in TEST() 131 DataLog::AddTable(DataLog::Combine("table", 1)); in TEST() 132 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1); in TEST() 133 DataLog::AddColumn(DataLog::Combine("table", 1), "timestamp", 1); in TEST() 134 DataLog::AddColumn(DataLog::Combine("table", 1), "size", 5); in TEST() 137 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", in TEST() 139 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", in TEST() 141 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5); in TEST() [all …]
|
D | data_log_unittest_disabled.cc | 39 std::string table_name = DataLog::Combine("table", 1); in TEST()
|
D | data_log_no_op.cc | 24 std::string DataLog::Combine(const std::string& table_name, int table_id) { in Combine() function in webrtc::DataLog
|
/external/mesa3d/src/mesa/main/ |
D | texenv.c | 156 if (texUnit->Combine.ModeRGB == mode) in set_combiner_mode() 159 texUnit->Combine.ModeRGB = mode; in set_combiner_mode() 163 if (texUnit->Combine.ModeA == mode) in set_combiner_mode() 166 texUnit->Combine.ModeA = mode; in set_combiner_mode() 259 texUnit->Combine.SourceA[term] = param; in set_combiner_source() 261 texUnit->Combine.SourceRGB[term] = param; in set_combiner_source() 341 texUnit->Combine.OperandA[term] = param; in set_combiner_operand() 343 texUnit->Combine.OperandRGB[term] = param; in set_combiner_operand() 371 if (texUnit->Combine.ScaleShiftRGB == shift) in set_combiner_scale() 374 texUnit->Combine.ScaleShiftRGB = shift; in set_combiner_scale() [all …]
|
D | texstate.c | 92 dst->Texture.Unit[u].Combine = src->Texture.Unit[u].Combine; in _mesa_copy_texture_state() 127 printf(" GL_COMBINE_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeRGB)); in _mesa_print_texunit_state() 128 printf(" GL_COMBINE_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.ModeA)); in _mesa_print_texunit_state() 129 printf(" GL_SOURCE0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[0])); in _mesa_print_texunit_state() 130 printf(" GL_SOURCE1_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[1])); in _mesa_print_texunit_state() 131 printf(" GL_SOURCE2_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceRGB[2])); in _mesa_print_texunit_state() 132 printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[0])); in _mesa_print_texunit_state() 133 printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[1])); in _mesa_print_texunit_state() 134 printf(" GL_SOURCE2_ALPHA = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.SourceA[2])); in _mesa_print_texunit_state() 135 printf(" GL_OPERAND0_RGB = %s\n", _mesa_lookup_enum_by_nr(texUnit->Combine.OperandRGB[0])); in _mesa_print_texunit_state() [all …]
|
/external/protobuf/gtest/test/ |
D | gtest-param-test_test.cc | 66 using ::testing::Combine; 467 Combine(Values(foo, bar), Values(3, 4)); in TEST() 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), in TEST() 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), in TEST() 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 513 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0), in TEST() 521 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 532 int, int> > gen = Combine(Values(foo, bar), in TEST()
|
/external/gtest/test/ |
D | gtest-param-test_test.cc | 66 using ::testing::Combine; 467 Combine(Values(foo, bar), Values(3, 4)); in TEST() 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), in TEST() 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), in TEST() 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 513 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0), in TEST() 521 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 532 int, int> > gen = Combine(Values(foo, bar), in TEST()
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-param-test_test.cc | 66 using ::testing::Combine; 467 Combine(Values(foo, bar), Values(3, 4)); in TEST() 477 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1), in TEST() 492 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42), in TEST() 503 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 513 const ParamGenerator<tuple<int, int> > gen = Combine(Range(0, 0), in TEST() 521 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1), in TEST() 532 int, int> > gen = Combine(Values(foo, bar), in TEST()
|
/external/google-breakpad/src/testing/gtest/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/v8/src/ |
D | hydrogen-types.h | 45 HType Combine(HType other) const WARN_UNUSED_RESULT { in HTYPE_LIST() 54 return Combine(other).Equals(other); in IsSubtypeOf()
|
/external/protobuf/gtest/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/llvm/test/Transforms/LoadCombine/ |
D | load-combine.ll | 6 ; Combine read from char* idiom. 52 ; Combine simple adjacent loads. 99 ; Combine out of order loads. 131 ; Combine valid alignments.
|
/external/v8/src/compiler/ |
D | machine-operator-unittest.cc | 99 ::testing::Combine(::testing::ValuesIn(kMachineReps), 158 ::testing::Combine( 160 ::testing::Combine(::testing::ValuesIn(kMachineTypes), 270 ::testing::Combine(::testing::ValuesIn(kMachineReps),
|
/external/protobuf/gtest/include/gtest/ |
D | gtest-param-test.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 90 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product 335 // Combine() function. 352 // Combine() allows the user to combine two or more sequences to produce 356 // Combine(gen1, gen2, ..., genN) 363 // Combine can have up to $maxtuple arguments. This number is currently limited 380 // Combine(Values("cat", "dog"), 398 // Combine(Bool(), Bool())); 405 internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine(
|
/external/llvm/autoconf/m4/ |
D | define_subst.m4 | 1 # Combine AC_DEFINE and AC_SUBST
|
/external/gtest/include/gtest/ |
D | gtest-param-test.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 92 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product 365 // Combine() function. 382 // Combine() allows the user to combine two or more sequences to produce 386 // Combine(gen1, gen2, ..., genN) 393 // Combine can have up to $maxtuple arguments. This number is currently limited 410 // Combine(Values("cat", "dog"), 428 // Combine(Bool(), Bool())); 435 internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine(
|
/external/mesa3d/src/gtest/include/gtest/ |
D | gtest-param-test.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 92 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product 365 // Combine() function. 382 // Combine() allows the user to combine two or more sequences to produce 386 // Combine(gen1, gen2, ..., genN) 393 // Combine can have up to $maxtuple arguments. This number is currently limited 410 // Combine(Values("cat", "dog"), 428 // Combine(Bool(), Bool())); 435 internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine(
|
/external/google-breakpad/src/testing/gtest/include/gtest/ |
D | gtest-param-test.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 92 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product 365 // Combine() function. 382 // Combine() allows the user to combine two or more sequences to produce 386 // Combine(gen1, gen2, ..., genN) 393 // Combine can have up to $maxtuple arguments. This number is currently limited 410 // Combine(Values("cat", "dog"), 428 // Combine(Bool(), Bool())); 435 internal::CartesianProductHolder$i<$for j, [[Generator$j]]> Combine(
|
/external/libvpx/libvpx/test/ |
D | codec_factory.h | 139 ::testing::Combine( \ 221 ::testing::Combine( \
|
/external/v8/test/cctest/ |
D | test-hydrogen-types.cc | 76 CHECK(ti.IsSubtypeOf(ti.Combine(tj))); in TEST() 77 CHECK(tj.IsSubtypeOf(ti.Combine(tj))); in TEST()
|
/external/webrtc/src/system_wrappers/interface/ |
D | data_log.h | 58 static std::string Combine(const std::string& table_name, int table_id);
|
/external/gtest/include/gtest/internal/ |
D | gtest-param-util-generated.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 39 // and at most $maxtuple arguments in Combine. Please contact 41 // Please note that the number of arguments to Combine is limited 258 // Helper classes providing Combine() with polymorphic features. They allow
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-param-util-generated.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 39 // and at most $maxtuple arguments in Combine. Please contact 41 // Please note that the number of arguments to Combine is limited 258 // Helper classes providing Combine() with polymorphic features. They allow
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-param-util-generated.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 39 // and at most $maxtuple arguments in Combine. Please contact 41 // Please note that the number of arguments to Combine is limited 258 // Helper classes providing Combine() with polymorphic features. They allow
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-param-util-generated.h.pump | 3 $var maxtuple = 10 $$ Maximum number of Combine arguments we want to support. 39 // and at most $maxtuple arguments in Combine. Please contact 41 // Please note that the number of arguments to Combine is limited 258 // Helper classes providing Combine() with polymorphic features. They allow
|