Home
last modified time | relevance | path

Searched refs:isCalled (Results 1 – 8 of 8) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/stubbing/
DStubbingWithCustomAnswerTest.java44 assertTrue(recordCall.isCalled()); in shouldAnswerWithThenAnswerAlias()
75 assertTrue(recordCall.isCalled()); in shoudAnswerVoidMethod()
89 assertTrue(call1.isCalled()); in shouldAnswerVoidMethodConsecutively()
90 assertFalse(call2.isCalled()); in shouldAnswerVoidMethodConsecutively()
99 assertTrue(call2.isCalled()); in shouldAnswerVoidMethodConsecutively()
119 public boolean isCalled() { in isCalled() method in StubbingWithCustomAnswerTest.RecordCall
/external/guava/guava-tests/test/com/google/common/collect/
DForwardingCollectionTest.java217 assertFalse("equals() should not be forwarded.", isCalled()); in testEquals_Object()
222 assertFalse("hashCode() should not be forwarded.", isCalled()); in testHashCode()
DForwardingTestCase.java55 protected boolean isCalled() { in isCalled() method in ForwardingTestCase
/external/clang/lib/StaticAnalyzer/Checkers/
DSimpleStreamChecker.cpp123 if (!Call.isCalled(OpenFn)) in checkPostCall()
142 if (!Call.isCalled(CloseFn)) in checkPreCall()
/external/protobuf/java/core/src/test/java/com/google/protobuf/
DServiceTest.java292 public boolean isCalled() { return called; } in isCalled() method in ServiceTest.MockCallback
318 return callback.isCalled(); in matches()
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLogManagerTest.java391 assertFalse(lm.isCalled); in testReadConfiguration()
394 assertTrue(lm.isCalled); in testReadConfiguration()
965 public boolean isCalled = false; field in LogManagerTest.MockConfigLogManager
968 isCalled = true; in readConfiguration()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DCallEvent.h260 bool isCalled(const CallDescription &CD) const;
/external/clang/lib/StaticAnalyzer/Core/
DCallEvent.cpp213 bool CallEvent::isCalled(const CallDescription &CD) const { in isCalled() function in CallEvent