Searched refs:never (Results 1 - 25 of 106) sorted by relevance

12345

/external/mockito/src/org/mockito/verification/
H A DVerificationWithTimeout.java16 * verify(mock, timeout(100).never()).bar();
45 * verify(mock, timeout(100).never()).someMethod();
56 public VerificationMode never(); method in interface:VerificationWithTimeout
H A DTimeout.java72 public VerificationMode never() { method in class:Timeout
/external/clang/test/Sema/
H A Dincomplete-decl.c6 struct foo f; // expected-error{{tentative definition has type 'struct foo' that is never completed}}
10 expected-error{{tentative definition has type 'struct foo' that is never completed}}
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dconst_Types.pass.cpp24 struct never { struct
37 { static_assert(never<T>::value, "This should not be instantiated"); }
53 { static_assert(never<T>::value, "This should not be instantiated"); }
/external/tcpdump/
H A Dprint-netbios.c72 #ifdef never
/external/elfutils/src/libcpu/
H A Di386_lex.l51 %option never-interactive
/external/valgrind/helgrind/tests/
H A Dbar_bad.stderr.exp58 destroy a barrier that was never initialised
61 Thread #x: pthread_barrier_destroy: barrier was never initialised
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm28 Errors from the lexer are never passed to the parser. Either you want
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DScopedHandler.java155 // is called protected by an if(never()), so your IDE can find those
179 // is called protected by an if(never()), so your IDE can find those
188 protected boolean never() method in class:ScopedHandler
/external/v8/test/mjsunit/es6/
H A Diteration-semantics.js144 function never() { throw "unreachable"; }
145 Object.defineProperty(o, prop, {get: never, set: never})
/external/valgrind/drd/tests/
H A Dbar_bad.stderr.exp36 destroy a barrier that was never initialised
/external/bison/src/
H A Dscan-skel.l20 %option nodefault noyywrap noinput nounput never-interactive debug
/external/libunwind/doc/
H A Dunw_flush_cache.tex28 but \emph{never} less. In other words, \Func{unw\_flush\_cache}() may
H A Dunw_init_remote.tex33 \Prog{libunwind} never interprets the argument in any way on its own.
H A Dlibunwind-ptrace.tex66 they are never actually called.
98 structure is never shared between threads. Because of this, no
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java45 import static com.google.testing.littlemock.LittleMock.never;
286 verify(mFoo, never()).add("jim");
287 verify(mFoo, never()).anInt();
293 verify(mFoo, never()).add("jim");
300 verify(mFoo, never()).add("jim");
626 // These lines are never reached, the previous line throws an NPE.
1283 verify(mFoo, never());
1318 verify(mFoo, never()).aBar();
1338 verify(mFoo, never()).aBar();
/external/clang/test/Misc/
H A Dwarning-flags.c7 and ensures that the list never grows.
/external/elfutils/src/src/
H A Dldlex.l83 %option never-interactive
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp-lex.l68 %option never-interactive
/external/skia/tools/lua/
H A Dscrape_dashing_full.lua27 Useful so that keys that are never get incremented still output zero at end
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/messages/languages/
H A Den.stg250 The following alternatives can never be matched: <alts; separator=","><\n>
273 The following token definitions can never be matched because prior tokens match the same input: <tokens; separator=",">
/external/clang/test/CXX/special/class.ctor/
H A Dp5-0x.cpp54 expected-note {{will never be initialized}}
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/
H A Dparsecvs.php8 branch: //probably store, what does this actually mean?, never used (always empty)?
/external/jetty/src/java/org/eclipse/jetty/server/session/
H A DSessionHandler.java226 if (never())
/external/mockito/src/org/mockito/
H A DMockito.java34 * <a href="#4">4. Verifying exact number of invocations / at least once / never </a><br/>
37 * <a href="#7">7. Making sure interaction(s) never happened on mock </a><br/>
198 * <a class="meaningful_link" href="#at_least_verification">at least x</a> / never</h3>
219 * //verification using never(). never() is an alias to times(0)
220 * verify(mockedList, never()).add("never happened");
299 * <h3 id="7">7. <a class="meaningful_link" href="#never_verification">Making sure interaction(s) never happened on mock</a></h3>
308 * //verify that method was never called on a mock
309 * verify(mockOne, never())
1958 public static VerificationMode never() { method in class:Mockito
[all...]

Completed in 6796 milliseconds

12345