Searched refs:call_count (Results 1 - 14 of 14) sorted by relevance

/external/chromium/testing/gmock/include/gmock/
H A Dgmock-cardinalities.h68 // Returns true iff call_count calls will satisfy this cardinality.
69 virtual bool IsSatisfiedByCallCount(int call_count) const = 0;
71 // Returns true iff call_count calls will saturate this cardinality.
72 virtual bool IsSaturatedByCallCount(int call_count) const = 0;
97 // Returns true iff call_count calls will satisfy this cardinality.
98 bool IsSatisfiedByCallCount(int call_count) const {
99 return impl_->IsSatisfiedByCallCount(call_count);
102 // Returns true iff call_count calls will saturate this cardinality.
103 bool IsSaturatedByCallCount(int call_count) const {
104 return impl_->IsSaturatedByCallCount(call_count);
[all...]
H A Dgmock-spec-builders.h803 int call_count() const {
1141 const int count = call_count();
1143 "call_count() is <= 0 when GetCurrentAction() is "
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dcleanworkingdirectory_unittest.py41 self.assertEqual(tool._scm.ensure_no_local_commits.call_count, 1)
42 self.assertEqual(tool._scm.ensure_clean_working_directory.call_count, 1)
48 self.assertEqual(tool._scm.ensure_no_local_commits.call_count, 0)
49 self.assertEqual(tool._scm.ensure_clean_working_directory.call_count, 0)
/external/chromium/testing/gmock/src/
H A Dgmock-cardinalities.cc77 virtual bool IsSatisfiedByCallCount(int call_count) const {
78 return min_ <= call_count && call_count <= max_ ;
81 virtual bool IsSaturatedByCallCount(int call_count) const {
82 return call_count >= max_;
H A Dgmock-spec-builders.cc158 Cardinality::DescribeActualCallCountTo(call_count(), os);
/external/qemu/telephony/
H A Dandroid_modem.c268 int call_count; member in struct:AModemRec_
532 // TODO: save more than just calls and call_count - rssi, power, etc.
534 qemu_put_byte(f, modem->call_count);
537 for (nn = modem->call_count - 1; nn >= 0; nn--) {
558 for (nn = modem->call_count - 1; nn >= 0; nn--) {
562 int call_count = qemu_get_byte(f); local
563 for (nn = call_count; nn > 0; nn--) {
805 return modem->call_count;
811 if ((unsigned)index >= (unsigned)modem->call_count)
821 int count = modem->call_count;
[all...]
/external/v8/test/cctest/
H A Dtest-thread-termination.cc264 int call_count = 0; variable
268 if (++call_count == 10) {
319 call_count = 0;
323 call_count = 0;
H A Dtest-debug.cc1366 int call_count) {
1368 for (int i = 0; i < call_count; i++) {
1363 CallWithBreakPoints(v8::Local<v8::Object> recv, v8::Local<v8::Function> f, int break_point_count, int call_count) argument
H A Dtest-api.cc9326 int* call_count = reinterpret_cast<int*>(v8::External::Unwrap(info.Data())); local
9327 ++(*call_count);
9328 if ((*call_count) % 20 == 0) {
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Ddownload_unittest.py116 self.assertEqual(mock_tool.scm().create_patch.call_count, 1)
117 self.assertEqual(mock_tool.checkout().modified_changelogs.call_count, 1)
/external/chromium/testing/gmock/test/
H A Dgmock-cardinalities_test.cc399 // Returns true iff call_count calls will satisfy this cardinality.
400 virtual bool IsSatisfiedByCallCount(int call_count) const {
401 return (call_count % 2 == 0);
404 // Returns true iff call_count calls will saturate this cardinality.
405 virtual bool IsSaturatedByCallCount(int /* call_count */) const {
H A Dgmock-spec-builders_test.cc1796 // Returns true iff call_count calls will satisfy this cardinality.
1797 virtual bool IsSatisfiedByCallCount(int call_count) const {
1798 return call_count % 2 == 0;
1801 // Returns true iff call_count calls will saturate this cardinality.
1802 virtual bool IsSaturatedByCallCount(int /* call_count */) const {
/external/webkit/Tools/Scripts/webkitpy/thirdparty/
H A Dmock.py118 self.call_count = 0
140 self.call_count += 1
/external/openssh/
H A Dmonitor.c844 static int call_count; local
867 call_count++;
868 if (plen == 0 && call_count == 1)

Completed in 305 milliseconds