HomeSort by relevance Sort by last modified time
    Searched refs:Combine (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/webrtc/webrtc/system_wrappers/source/
data_log_unittest.cc 119 ASSERT_EQ(DataLog::AddTable(DataLog::Combine("a proper table", 1)), 0);
122 ASSERT_LT(DataLog::AddTable(DataLog::Combine("table failure", 1)), 0);
127 DataLog::Combine("a proper table", 1));
132 DataLog::AddTable(DataLog::Combine("table", 1));
133 DataLog::AddColumn(DataLog::Combine("table", 1), "arrival", 1);
134 DataLog::AddColumn(DataLog::Combine("table", 1), "timestamp", 1);
135 DataLog::AddColumn(DataLog::Combine("table", 1), "size", 5);
138 DataLog::InsertCell(DataLog::Combine("table", 1), "arrival",
140 DataLog::InsertCell(DataLog::Combine("table", 1), "timestamp",
142 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/libbrillo/brillo/
url_utils_unittest.cc 11 TEST(UrlUtils, Combine) {
13 url::Combine("http://sample.org", "path"));
15 url::Combine("http://sample.org/", "path"));
16 EXPECT_EQ("path1/path2", url::Combine("", "path1/path2"));
17 EXPECT_EQ("path1/path2", url::Combine("path1", "path2"));
18 EXPECT_EQ("http://sample.org", url::Combine("http://sample.org", ""));
20 url::Combine("http://sample.org/", "/path"));
22 url::Combine("http://sample.org", "//////path"));
23 EXPECT_EQ("http://sample.org/", url::Combine("http://sample.org", "///"));
25 url::Combine("http://sample.org/obj", "path1/path2"))
    [all...]
mime_utils_unittest.cc 11 TEST(MimeUtils, Combine) {
12 std::string mime_string = mime::Combine(mime::types::kText, "xml");
16 mime::Combine(mime::types::kApplication, "json", {{"charset", "utf-8"}}));
30 EXPECT_EQ(mime::application::kJson, mime::Combine(s1, s2));
35 mime::Combine(s1, s2, parameters));
secure_blob.h 35 static SecureBlob Combine(const SecureBlob& blob1, const SecureBlob& blob2);
url_utils.h 22 BRILLO_EXPORT std::string Combine(
  /external/skia/src/core/
SkEdgeBuilder.h 57 enum Combine {
63 Combine CombineVertical(const SkEdge* edge, SkEdge* last);
64 Combine CombineVertical(const SkAnalyticEdge* edge, SkAnalyticEdge* last);
65 Combine checkVertical(const SkEdge* edge, SkEdge** edgePtr);
66 Combine checkVertical(const SkAnalyticEdge* edge, SkAnalyticEdge** edgePtr);
108 Combine combine = analyticAA ? local
111 if (kNo_Combine == combine) {
114 } else if (kTotal_Combine == combine) {
SkEdgeBuilder.cpp 21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) {
66 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(
132 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); local
133 if (kNo_Combine != combine) {
134 if (kTotal_Combine == combine) {
150 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); local
151 if (kNo_Combine != combine) {
152 if (kTotal_Combine == combine) {
    [all...]
  /external/skqp/src/core/
SkEdgeBuilder.h 57 enum Combine {
63 Combine CombineVertical(const SkEdge* edge, SkEdge* last);
64 Combine CombineVertical(const SkAnalyticEdge* edge, SkAnalyticEdge* last);
65 Combine checkVertical(const SkEdge* edge, SkEdge** edgePtr);
66 Combine checkVertical(const SkAnalyticEdge* edge, SkAnalyticEdge** edgePtr);
108 Combine combine = analyticAA ? local
111 if (kNo_Combine == combine) {
114 } else if (kTotal_Combine == combine) {
SkEdgeBuilder.cpp 21 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(const SkEdge* edge, SkEdge* last) {
66 SkEdgeBuilder::Combine SkEdgeBuilder::CombineVertical(
132 Combine combine = CombineVertical(edge, (SkAnalyticEdge*)*(fList.end() - 1)); local
133 if (kNo_Combine != combine) {
134 if (kTotal_Combine == combine) {
150 Combine combine = CombineVertical(edge, (SkEdge*)*(fList.end() - 1)); local
151 if (kNo_Combine != combine) {
152 if (kTotal_Combine == combine) {
    [all...]
  /external/libvpx/libvpx/test/
test_vector_test.cc 133 ::testing::Combine(
142 ::testing::Combine(
145 ::testing::Combine(
156 ::testing::Combine(
164 ::testing::Combine(
167 ::testing::Combine(
  /external/mesa3d/src/mesa/main/
texenv.c 152 if (texUnit->Combine.ModeRGB == mode)
155 texUnit->Combine.ModeRGB = mode;
159 if (texUnit->Combine.ModeA == mode)
162 texUnit->Combine.ModeA = mode;
255 texUnit->Combine.SourceA[term] = param;
257 texUnit->Combine.SourceRGB[term] = param;
337 texUnit->Combine.OperandA[term] = param;
339 texUnit->Combine.OperandRGB[term] = param;
367 if (texUnit->Combine.ScaleShiftRGB == shift)
370 texUnit->Combine.ScaleShiftRGB = shift
    [all...]
texstate.c 46 * Default texture combine environment state. This is used to initialize
91 dst->Texture.Unit[u].Combine = src->Texture.Unit[u].Combine;
127 printf(" GL_COMBINE_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeRGB));
128 printf(" GL_COMBINE_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.ModeA));
129 printf(" GL_SOURCE0_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[0]));
130 printf(" GL_SOURCE1_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[1]));
131 printf(" GL_SOURCE2_RGB = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceRGB[2]));
132 printf(" GL_SOURCE0_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[0]));
133 printf(" GL_SOURCE1_ALPHA = %s\n", _mesa_enum_to_string(texUnit->Combine.SourceA[1]))
384 struct gl_tex_env_combine_state *combine; local
    [all...]
  /external/tensorflow/tensorflow/core/util/
equal_graph_def_test.cc 33 REGISTER_OP("Combine").Input("a: float").Input("b: float").Output("o: float");
43 Node* Combine(ops::NodeOut a, ops::NodeOut b,
45 return ops::BinaryOp("Combine", std::move(a), std::move(b), opts);
110 Combine(a, b, e_.opts().WithName("C"));
114 Combine(a, b, a_.opts().WithName("C"));
152 Combine(a, a, e_.opts().WithName("C"));
156 Combine(b, b, a_.opts().WithName("C"));
165 Combine(a, b, e_.opts().WithName("C"));
169 Combine(b, a, a_.opts().WithName("C"));
180 Combine(a, a
    [all...]
  /external/tensorflow/tensorflow/contrib/boosted_trees/lib/testutil/
random_tree_gen.h 55 void Combine(boosted_trees::trees::DecisionTreeConfig* root,
  /external/webrtc/webrtc/system_wrappers/include/
data_log.h 56 static std::string Combine(const std::string& table_name, int table_id);
  /external/google-breakpad/src/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/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/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 may not support Combine() with some compilers. If we
  /external/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/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
  /prebuilts/ndk/r16/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/v8/src/crankshaft/
hydrogen-types.h 48 HType Combine(HType other) const WARN_UNUSED_RESULT {
57 return Combine(other).Equals(other);
  /external/tensorflow/tensorflow/core/graph/
graph_partition_test.cc 159 REGISTER_OP("Combine")
191 Output Combine(const Scope& scope, Input a, Input b) {
192 return ConstructOp(scope, "Combine", {std::move(a), std::move(b)});
241 Combine(in_.WithOpName("A2"), a1, a1);
247 Combine(scope_a_.WithOpName("A2"), a1, a1);
254 Combine(in_.WithOpName("B2"), a1, b1);
268 Combine(scope_b_.WithOpName("B2"), recv, b1);
275 Combine(in_.WithOpName("B2").WithControlDependencies(a1), b1, b1);
291 Combine(scope_b_.WithOpName("B2").WithControlDependencies(id), b1, b1);
298 Combine(in_.WithOpName("B2"), a1, b1)
    [all...]

Completed in 235 milliseconds

1 2 3 4 5