Searched refs:Ignore (Results 1 - 25 of 54) 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/vogar/src/org/junit/
H A DIgnore.java28 public @interface Ignore { interface
/external/junit/src/org/junit/internal/runners/
H A DTestMethod.java9 import org.junit.Ignore;
30 return fMethod.getAnnotation(Ignore.class) != null;
/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/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
H A DMessageFormatterPerfTest.java30 import org.junit.Ignore;
32 @Ignore
/external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/
H A DURLEncodingTest.java37 import org.junit.Ignore;
53 @Test @Ignore public void lenientUrlToUri() throws Exception {
106 @Test @Ignore public void lenientUrlToUriNul() throws Exception {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DWebPlatformUrlTest.java27 import org.junit.Ignore;
87 @Ignore // java.net.URL is broken. Not much we can do about that.
136 @Ignore // TODO(jwilson): implement character encoding.
/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/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/clang/lib/Analysis/
H A DUninitializedValues.cpp311 Ignore enumerator in enum:__anon907::ClassifyRefs::Class
343 return Ignore;
418 // Ignore the evaluation of a DeclRefExpr on the LHS of an assignment. If this
426 classify(BO->getLHS(), Ignore);
461 classify((*I), Ignore);
467 classify(Ex, Ignore);
480 classify(CSE->getSubExpr(), Ignore);
731 case ClassifyRefs::Ignore:
/external/clang/include/clang/CodeGen/
H A DCGFunctionInfo.h55 /// Ignore - Ignore the argument (treat as void). Useful for void and
57 Ignore,
127 return ABIArgInfo(Ignore);
166 bool isIgnore() const { return TheKind == Ignore; }
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/util/
H A DValPixConverterTest.java19 import org.junit.Ignore;
/external/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp95 bool Ignore; variable
96 if (Ops.canConstructFrom(Matcher, Ignore))
/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/third_party/freetype/include/
H A Dfterrdef.h216 FT_ERRORDEF_( Ignore, 0xA2,
/external/vogar/src/vogar/target/junit/
H A DJunit4.java31 import org.junit.Ignore;
68 if (m.isAnnotationPresent(Ignore.class)) {
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp644 TheCondState.Ignore != StartingCondState.Ignore)
1200 if (!TheCondState.Ignore)
1207 if (!TheCondState.Ignore)
1216 if (!TheCondState.Ignore)
1265 // Ignore the statement if in the middle of inactive conditional
1267 if (TheCondState.Ignore) {
1693 // Ignore any trailing characters, they're just comment.
3850 if (TheCondState.Ignore) {
3886 TheCondState.Ignore
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DHttpOverSpdyTest.java54 import org.junit.Ignore;
202 @Test @Ignore public void synchronousSpdyRequest() throws Exception {
264 @Ignore // See https://github.com/square/okhttp/issues/578
/external/clang/lib/CodeGen/
H A DCGExprComplex.cpp989 bool Ignore = TestAndClearIgnoreReal(); local
990 (void)Ignore;
991 assert (Ignore == false && "init list ignored");
992 Ignore = TestAndClearIgnoreImag();
993 (void)Ignore;
994 assert (Ignore == false && "init list ignored");
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestAutoAST.java30 import org.junit.Ignore;
368 @Ignore
H A DTestTreeGrammarRewriteAST.java36 import org.junit.Ignore;
873 @Ignore

Completed in 959 milliseconds

123