Searched refs:Ignore (Results 1 - 25 of 65) sorted by relevance

123

/external/junit/src/org/junit/internal/builders/
H A DIgnoredBuilder.java6 import org.junit.Ignore;
13 if (testClass.getAnnotation(Ignore.class) != null)
/external/llvm/include/llvm/MC/MCParser/
H A DAsmCond.h19 /// processing. Ignore can be either true or false. When true we are ignoring
33 bool Ignore; member in class:llvm::AsmCond
35 AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {}
/external/junit/src/org/junit/
H A DIgnore.java10 * {@link org.junit.Test} that are also annotated with <code>&#064;Ignore</code> will not be executed as tests.
11 * Also, you can annotate a class containing test methods with <code>&#064;Ignore</code> and none of the containing
17 * &#064;Ignore &#064;Test public void something() { ...
19 * &#064;Ignore takes an optional default parameter if you want to record why a test is being ignored:<br/>
21 * &#064;Ignore("not ready yet") &#064;Test public void something() { ...
23 * &#064;Ignore can also be applied to the test class:<br/>
25 * &#064;Ignore public class IgnoreMe {
34 public @interface Ignore { interface
/external/chromium_org/remoting/host/linux/
H A Dx11_util.h35 static Handler Ignore();
H A Dx11_util.cc35 ScopedXErrorHandler::Handler ScopedXErrorHandler::Ignore() { function in class:remoting::ScopedXErrorHandler
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEventThrottle.h58 Ignore, enumerator in enum:blink::FINAL::DeferredEventAction
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DActions.py75 class Ignore(Action): class in inherits:Action
87 IGNORE = Ignore()
88 #IGNORE.__doc__ = Ignore.__doc__
H A DActions.pxd21 cdef class Ignore(Action): class in inherits:Action
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java9 import org.junit.Ignore;
30 return fMethod.getAnnotation(Ignore.class) != null;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DURLEncodingTest.java32 import org.junit.Ignore;
48 @Test @Ignore public void lenientUrlToUri() throws Exception {
101 @Test @Ignore public void lenientUrlToUriNul() throws Exception {
H A DHttpOverSpdyTest.java52 import org.junit.Ignore;
212 @Test @Ignore public void synchronousSpdyRequest() throws Exception {
279 @Ignore // See https://github.com/square/okhttp/issues/578
/external/clang/tools/libclang/
H A DCIndexUSRs.cpp57 bool Ignore = cxcursor::getDeclCursorUSR(D, buf->Data);
58 if (Ignore) {
78 bool Ignore = generateUSRForMacro(cxcursor::getCursorMacroDefinition(C),
81 if (Ignore) {
/external/junit/src/junit/framework/
H A DJUnit4TestAdapter.java5 import org.junit.Ignore;
70 return description.getAnnotation(Ignore.class) != null;
/external/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc51 // Ignore VC++ runtimes prior to 7.1. Somehow some of them get loaded
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/tls/
H A DHostnameVerifierTest.java27 import org.junit.Ignore;
151 @Test @Ignore public void verifyNonAsciiSubjectAlt() throws Exception {
337 @Test @Ignore public void testWilcardNonAsciiSubjectAlt() throws Exception {
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h55 /// Ignore - Ignore the argument (treat as void). Useful for void and
57 Ignore,
124 return ABIArgInfo(Ignore);
163 bool isIgnore() const { return TheKind == Ignore; }
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp40 bool Ignore; local
41 if (Ops.canConstructFrom(Matcher, Ignore))
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentActivityTest.java14 import org.junit.Ignore;
76 @Ignore("Seems to be broken by 'Android Support' rev 8")
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfterrdef.h216 FT_ERRORDEF_( Ignore, 0xA2, \
/external/freetype/include/
H A Dfterrdef.h216 FT_ERRORDEF_( Ignore, 0xA2,
/external/junit/src/org/junit/runners/
H A DBlockJUnit4ClassRunner.java9 import org.junit.Ignore;
65 if (method.getAnnotation(Ignore.class) != null) {
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfterrdef.h216 FT_ERRORDEF_( Ignore, 0xA2, \
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfterrdef.h216 FT_ERRORDEF_( Ignore, 0xA2, \
/external/clang/lib/Analysis/
H A DUninitializedValues.cpp310 Ignore enumerator in enum:__anon17787::ClassifyRefs::Class
342 return Ignore;
385 // Ignore the evaluation of a DeclRefExpr on the LHS of an assignment. If this
393 classify(BO->getLHS(), Ignore);
410 classify(*I, Ignore);
421 classify(CSE->getSubExpr(), Ignore);
672 case ClassifyRefs::Ignore:
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp656 TheCondState.Ignore != StartingCondState.Ignore)
1211 if (!TheCondState.Ignore)
1218 if (!TheCondState.Ignore)
1227 if (!TheCondState.Ignore)
1274 // Ignore the statement if in the middle of inactive conditional
1276 if (TheCondState.Ignore) {
1684 // Ignore any trailing characters, they're just comment.
3817 if (TheCondState.Ignore) {
3853 TheCondState.Ignore
[all...]

Completed in 461 milliseconds

123