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

  /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/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,
  /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,
  /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/gtest/test/
gtest-param-test_test.cc 64 using ::testing::Combine;
430 // Tests that Combine() with two parameters generates the expected sequence.
435 Combine(Values(foo, bar), Values(3, 4));
443 // Tests that Combine() with three parameters generates the expected sequence.
445 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
456 // Tests that the Combine() with the first parameter generating a single value
460 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
467 // Tests that the Combine() with the second parameter generating a single value
471 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
479 // Combine() produces an empty sequence, too
    [all...]
  /external/protobuf/gtest/test/
gtest-param-test_test.cc 64 using ::testing::Combine;
430 // Tests that Combine() with two parameters generates the expected sequence.
435 Combine(Values(foo, bar), Values(3, 4));
443 // Tests that Combine() with three parameters generates the expected sequence.
445 const ParamGenerator<tuple<int, int, int> > gen = Combine(Values(0, 1),
456 // Tests that the Combine() with the first parameter generating a single value
460 const ParamGenerator<tuple<int, int> > gen = Combine(Values(42),
467 // Tests that the Combine() with the second parameter generating a single value
471 const ParamGenerator<tuple<int, int> > gen = Combine(Values(0, 1),
479 // Combine() produces an empty sequence, too
    [all...]
  /external/v8/src/
frame-element.h 191 FrameElement* Combine(FrameElement* other) {
type-info.h 118 static TypeInfo Combine(TypeInfo a, TypeInfo b) {
hydrogen-instructions.h 315 HType Combine(HType other) {
324 return Combine(other).Equals(other);
    [all...]
hydrogen-instructions.cc     [all...]
v8natives.js     [all...]
  /external/chromium/testing/gtest/include/gtest/
gtest-param-test.h 93 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
    [all...]
  /external/gtest/include/gtest/
gtest-param-test.h 89 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-param-test.h 93 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
    [all...]
  /external/protobuf/gtest/include/gtest/
gtest-param-test.h 89 // Combine(g1, g2, ..., gN) - Yields all combinations (the Cartesian product
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 81 "dag combine pass"));
91 "dag combine pass"));
93 ViewDAGCombineLT("view-dag-combine-lt-dags", cl::Hidden,
95 " dag combine pass"));
492 CurDAG->Combine(Unrestricted, *AA, OptLevel);
514 CurDAG->viewGraph("dag-combine-lt input for " + BlockName);
520 CurDAG->Combine(NoIllegalTypes, *AA, OptLevel);
539 CurDAG->viewGraph("dag-combine-lv input for " + BlockName);
545 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel);
567 CurDAG->Combine(NoIllegalOperations, *AA, OptLevel)
    [all...]
DAGCombiner.cpp 145 /// combine - call the node-specific routine that knows how to fold each
148 SDValue combine(SDNode *N);
585 "Cannot combine value to value of different type!"));
1116 SDValue DAGCombiner::combine(SDNode *N) { function in class:DAGCombiner
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAG.h 115 Unrestricted, // Combine may create illegal operations and illegal types.
116 NoIllegalTypes, // Combine may create illegal operations but no illegal types.
117 NoIllegalOperations // Combine may only create legal operations and types.
270 /// Combine - This iterates over the nodes in the SelectionDAG, folding
272 /// Level argument controls whether Combine is allowed to produce nodes and
274 void Combine(CombineLevel Level, AliasAnalysis &AA,
    [all...]
  /external/mesa3d/src/mesa/main/
mtypes.h     [all...]
  /external/libvpx/vp8/common/ppc/
loopfilter_filters_altivec.asm 847 vperm \U, \New, \U, \Umask ;# Combine new pels with siblings
    [all...]

Completed in 1403 milliseconds