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

  /external/google-breakpad/src/testing/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
123 *os << "called between " << min_ << " and " << max_ << " times";
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/googletest/googlemock/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
123 *os << "called between " << min_ << " and " << max_ << " times";
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/v8/testing/gmock/src/
gmock-cardinalities.cc 49 // Implements the Between(m, n) cardinality.
107 // Describes the Between(m, n) cardinality in human-friendly text.
123 *os << "called between " << min_ << " and " << max_ << " times";
140 GTEST_API_ Cardinality AtLeast(int n) { return Between(n, INT_MAX); }
143 GTEST_API_ Cardinality AtMost(int n) { return Between(0, n); }
148 // Creates a cardinality that allows between min and max calls.
149 GTEST_API_ Cardinality Between(int min, int max) {
154 GTEST_API_ Cardinality Exactly(int n) { return Between(n, n); }
  /external/google-breakpad/src/testing/test/
gmock-cardinalities_test.cc 46 using testing::Between;
243 // Tests Between(m, n).
247 Between(-1, 2);
253 Between(1, -2);
259 Between(2, 1);
265 const Cardinality c = Between(0, 0);
280 const Cardinality c = Between(0, 2);
298 const Cardinality c = Between(3, 3);
316 const Cardinality c = Between(3, 5);
332 EXPECT_PRED_FORMAT2(IsSubstring, "called between 3 and 5 times"
    [all...]
gmock-spec-builders_test.cc 69 using testing::Between;
582 .Times(Between(1, 2))
672 .Times(Between(2, 3))
681 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/googletest/googlemock/test/
gmock-cardinalities_test.cc 46 using testing::Between;
243 // Tests Between(m, n).
247 Between(-1, 2);
253 Between(1, -2);
259 Between(2, 1);
265 const Cardinality c = Between(0, 0);
280 const Cardinality c = Between(0, 2);
298 const Cardinality c = Between(3, 3);
316 const Cardinality c = Between(3, 5);
332 EXPECT_PRED_FORMAT2(IsSubstring, "called between 3 and 5 times"
    [all...]
gmock-spec-builders_test.cc 69 using testing::Between;
589 .Times(Between(1, 2))
679 .Times(Between(2, 3))
688 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/v8/testing/gmock/test/
gmock-cardinalities_test.cc 46 using testing::Between;
243 // Tests Between(m, n).
247 Between(-1, 2);
253 Between(1, -2);
259 Between(2, 1);
265 const Cardinality c = Between(0, 0);
280 const Cardinality c = Between(0, 2);
298 const Cardinality c = Between(3, 3);
316 const Cardinality c = Between(3, 5);
332 EXPECT_PRED_FORMAT2(IsSubstring, "called between 3 and 5 times"
    [all...]
gmock-spec-builders_test.cc 69 using testing::Between;
590 .Times(Between(1, 2))
680 .Times(Between(2, 3))
689 "Expected to be called between 2 and 3 times, "
    [all...]
  /external/v8/src/
dateparser.h 37 static inline bool Between(int x, int lo, int hi) {
314 static bool IsMinute(int x) { return Between(x, 0, 59); }
315 static bool IsHour(int x) { return Between(x, 0, 23); }
316 static bool IsSecond(int x) { return Between(x, 0, 59); }
319 static bool IsHour12(int x) { return Between(x, 0, 12); }
320 static bool IsMillisecond(int x) { return Between(x, 0, 999); }
343 static bool IsMonth(int x) { return Between(x, 1, 12); }
344 static bool IsDay(int x) { return Between(x, 1, 31); }
dateparser.cc 53 if (Between(year, 0, 49)) year += 2000;
54 else if (Between(year, 50, 99)) year += 1900;
dateparser-inl.h 283 !Between(scanner->Peek().number(), 0, 24)) {
factory.cc 584 static inline bool Between(uint32_t character, uint32_t from, uint32_t to) {
595 if (!Between(c1, '0', '9') || !Between(c2, '0', '9')) {
    [all...]
  /external/google-breakpad/src/testing/include/gmock/
gmock-cardinalities.h 134 // Creates a cardinality that allows between min and max calls.
135 GTEST_API_ Cardinality Between(int min, int max);
  /external/googletest/googlemock/include/gmock/
gmock-cardinalities.h 134 // Creates a cardinality that allows between min and max calls.
135 GTEST_API_ Cardinality Between(int min, int max);
  /external/v8/testing/gmock/include/gmock/
gmock-cardinalities.h 134 // Creates a cardinality that allows between min and max calls.
135 GTEST_API_ Cardinality Between(int min, int max);
  /prebuilts/go/darwin-x86/src/math/
sin.go 31 // Between 0 and pi/4 the sine is approximated by
33 // Between pi/4 and pi/2 the cosine is represented as
62 // Between 0 and pi/4 the cosine is approximated by
64 // Between pi/4 and pi/2 the sine is represented as
  /prebuilts/go/linux-x86/src/math/
sin.go 31 // Between 0 and pi/4 the sine is approximated by
33 // Between pi/4 and pi/2 the cosine is represented as
62 // Between 0 and pi/4 the cosine is approximated by
64 // Between pi/4 and pi/2 the sine is represented as
  /external/libchrome/base/trace_event/
memory_dump_manager_unittest.cc 36 using testing::Between;
622 .Times(Between(2, 3))
658 .Times(Between(1, 2))
814 // dumps in memory-infra, handling gracefully the transition between the legacy
    [all...]
  /external/llvm/test/MC/ARM/
simple-fp-encoding.s 207 @ Between two single precision registers and two core registers
217 @ Between one double precision register and two core registers
355 @ VCVT (between floating-point and fixed-point)
  /external/fmtlib/test/
gmock-gtest-all.cc     [all...]
  /external/dtc/Documentation/
dtc-paper.tex 116 its runtime form. This blob is the only data communicated between the
394 source, \dtc can convert a device tree between a number of
488 Between reading in the device tree and writing it out in the new
  /prebuilts/go/darwin-x86/src/runtime/
mgc.go 151 // (in bytes) reserved for concurrent sweeping between GC
261 // There is a tension between allocating objects white and
328 // utilization between assist and background marking to be 25% of
571 // difference between this estimate and the GOGC-based goal
787 pad0 [sys.CacheLineSize]uint8 // prevents false-sharing between full/empty and nproc/nwait
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
mgc.go 151 // (in bytes) reserved for concurrent sweeping between GC
261 // There is a tension between allocating objects white and
328 // utilization between assist and background marking to be 25% of
571 // difference between this estimate and the GOGC-based goal
787 pad0 [sys.CacheLineSize]uint8 // prevents false-sharing between full/empty and nproc/nwait
    [all...]
  /external/fmtlib/test/gmock/
gmock.h 674 // When converting between the same size, the signedness must match.
    [all...]

Completed in 1185 milliseconds