/external/webrtc/webrtc/system_wrappers/source/ |
D | data_log_unittest.cc | 119 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0); in TEST() 122 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0); in TEST() 127 DataLog::Combine("a proper table", 1)); in TEST() 132 DataLog::AddTable(DataLog::Combine("table", 1)); in TEST() 133 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1); in TEST() 134 DataLog::AddColumn(DataLog::Combine("table", 1), "timestamp", 1); in TEST() 135 DataLog::AddColumn(DataLog::Combine("table", 1), "size", 5); in TEST() 138 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival", in TEST() 140 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp", in TEST() 142 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5); in TEST() [all …]
|
/external/libbrillo/brillo/ |
D | url_utils_unittest.cc | 11 TEST(UrlUtils, Combine) { in TEST() argument 13 url::Combine("http://sample.org", "path")); in TEST() 15 url::Combine("http://sample.org/", "path")); in TEST() 16 EXPECT_EQ("path1/path2", url::Combine("", "path1/path2")); in TEST() 17 EXPECT_EQ("path1/path2", url::Combine("path1", "path2")); in TEST() 18 EXPECT_EQ("http://sample.org", url::Combine("http://sample.org", "")); in TEST() 20 url::Combine("http://sample.org/", "/path")); in TEST() 22 url::Combine("http://sample.org", "//////path")); in TEST() 23 EXPECT_EQ("http://sample.org/", url::Combine("http://sample.org", "///")); in TEST() 25 url::Combine("http://sample.org/obj", "path1/path2")); in TEST() [all …]
|
D | mime_utils_unittest.cc | 11 TEST(MimeUtils, Combine) { in TEST() argument 12 std::string mime_string = mime::Combine(mime::types::kText, "xml"); in TEST() 16 mime::Combine(mime::types::kApplication, "json", {{"charset", "utf-8"}})); in TEST() 30 EXPECT_EQ(mime::application::kJson, mime::Combine(s1, s2)); in TEST() 35 mime::Combine(s1, s2, parameters)); in TEST()
|
/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/skia/src/core/ |
D | SkEdgeBuilder.h | 32 enum Combine { enum 38 Combine CombineVertical(const SkEdge* edge, SkEdge* last); 39 Combine CombineVertical(const SkAnalyticEdge* edge, SkAnalyticEdge* last); 40 Combine checkVertical(const SkEdge* edge, SkEdge** edgePtr); 41 Combine checkVertical(const SkAnalyticEdge* edge, SkAnalyticEdge** edgePtr);
|
D | SkEdgeBuilder.cpp | 21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) { in CombineVertical() 66 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical( in CombineVertical() 127 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); in addLine() 145 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); in addLine() 228 SkEdgeBuilder::Combine SkEdgeBuilder::checkVertical(const SkEdge* edge, SkEdge** edgePtr) { in checkVertical() 233 SkEdgeBuilder::Combine SkEdgeBuilder::checkVertical(const SkAnalyticEdge* edge, in checkVertical() 282 Combine combine = fAnalyticAA ? in buildPoly() 313 Combine combine = fAnalyticAA ? in buildPoly()
|
/external/libvpx/libvpx/test/ |
D | test_vector_test.cc | 153 ::testing::Combine( 163 ::testing::Combine( 166 ::testing::Combine( 179 ::testing::Combine( 189 ::testing::Combine( 192 ::testing::Combine(
|
/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/vulkan-validation-layers/tests/gtest-1.7.0/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/v8/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/googletest/googletest/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/googletest/googletest/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/google-breakpad/src/testing/gtest/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/v8/src/crankshaft/ |
D | hydrogen-types.h | 48 HType Combine(HType other) const WARN_UNUSED_RESULT { in HTYPE_LIST() 57 return Combine(other).Equals(other); in IsSubtypeOf()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/protobuf/gtest/samples/ |
D | sample8_unittest.cc | 86 using ::testing::Combine; 161 Combine(Bool(), Values(1, 10)));
|
/external/v8/testing/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/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/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/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/googletest/googletest/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(
|