HomeSort by relevance Sort by last modified time
    Searched refs:Ignore (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/llvm/include/llvm/MC/MCParser/
AsmCond.h 19 /// processing. Ignore can be either true or false. When true we are ignoring
33 bool Ignore;
35 AsmCond() : TheCond(NoCond), CondMet(false), Ignore(false) {}
  /external/junit/src/org/junit/internal/builders/
IgnoredBuilder.java 6 import org.junit.Ignore;
13 if (testClass.getAnnotation(Ignore.class) != null)
  /external/junit/src/org/junit/
Ignore.java 10 * {@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 {
  /external/junit/src/org/junit/internal/runners/
TestMethod.java 9 import org.junit.Ignore;
30 return fMethod.getAnnotation(Ignore.class) != null;
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
AndroidTestSuite.java 22 import org.junit.Ignore;
36 @Ignore
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/http/
URLEncodingTest.java 32 import org.junit.Ignore;
48 @Test @Ignore public void lenientUrlToUri() throws Exception {
101 @Test @Ignore public void lenientUrlToUriNul() throws Exception {
  /frameworks/compile/mclinker/lib/LD/
DiagnosticInfos.cpp 118 severity = DiagnosticEngine::Ignore;
130 severity = DiagnosticEngine::Ignore;
136 severity = DiagnosticEngine::Ignore;
142 severity = DiagnosticEngine::Ignore;
ELFObjectReader.cpp 104 // ignore the section if the LDSection* in input context is NULL
129 // ignore all the members in this group (set Ignore)
138 pInput.context()->getSection(value[index])->setKind(LDFileFormat::Ignore);
151 if (NULL == link_sect || LDFileFormat::Ignore == link_sect->kind()) {
155 (*section)->setKind(LDFileFormat::Ignore);
175 (*section)->setKind(LDFileFormat::Ignore);
219 // ignore
222 case LDFileFormat::Ignore:
281 if (LDFileFormat::Ignore == (*rs)->kind()
    [all...]
ELFReaderIf.cpp 59 LDFileFormat::Ignore == pInput.context()->getSection(pShndx)->kind())
123 if (LDFileFormat::Ignore == sect_hdr->kind())
LDSection.cpp 26 m_Kind(LDFileFormat::Ignore),
TextDiagnosticPrinter.cpp 98 case DiagnosticEngine::Ignore: {
102 m_OStream << "Ignore: ";
  /external/junit/src/junit/framework/
JUnit4TestAdapter.java 5 import org.junit.Ignore;
70 return description.getAnnotation(Ignore.class) != null;
  /external/clang/lib/CodeGen/
ABIInfo.h 58 /// Ignore - Ignore the argument (treat as void). Useful for void and
60 Ignore,
103 return ABIArgInfo(Ignore, 0, 0, false, false, false, false, 0);
127 bool isIgnore() const { return TheKind == Ignore; }
CGExprComplex.cpp 749 bool Ignore = TestAndClearIgnoreReal();
750 (void)Ignore;
751 assert (Ignore == false && "init list ignored");
752 Ignore = TestAndClearIgnoreImag();
753 (void)Ignore;
754 assert (Ignore == false && "init list ignored");
  /external/markdown/markdown/extensions/
abbr.py 11 ... Some text with an ABBR and a REF. Ignore REFERENCE and ref.
17 u'<p>Some text with an <abbr title="Abbreviation">ABBR</abbr> and a <abbr title="Abbreviation Reference">REF</abbr>. Ignore REFERENCE and ref.</p>'
  /frameworks/compile/mclinker/include/mcld/LD/
LDFileFormat.h 45 Ignore
DiagnosticEngine.h 47 Ignore,
  /frameworks/compile/mclinker/include/mcld/Support/
MsgHandling.h 37 MsgHandler ignore(unsigned int pID);
74 inline mcld::MsgHandler mcld::ignore(unsigned int pID) function in class:mcld
76 return getDiagnosticEngine().report(pID, DiagnosticEngine::Ignore);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentActivityTest.java 14 import org.junit.Ignore;
76 @Ignore("Seems to be broken by 'Android Support' rev 8")
  /frameworks/compile/mclinker/lib/Fragment/
FragmentLinker.cpp 103 // 1. its section kind is changed to Ignore. (The target section is a
107 if (LDFileFormat::Ignore == (*rs)->kind() || !(*rs)->hasRelocData())
151 // 1. its section kind is changed to Ignore. (The target section is a
155 if (LDFileFormat::Ignore == (*rs)->kind() || !(*rs)->hasRelocData())
  /libcore/
NativeCode.mk 105 # Ignore "note: the mangling of 'va_list' has changed in GCC 4.4"
132 # Ignore "note: the mangling of 'va_list' has changed in GCC 4.4"
  /external/freetype/include/freetype/
fterrdef.h 214 FT_ERRORDEF_( Ignore, 0xA2, \
215 "ignore" )
  /external/junit/src/org/junit/runners/
BlockJUnit4ClassRunner.java 9 import org.junit.Ignore;
65 if (method.getAnnotation(Ignore.class) != null) {
  /external/clang/lib/Analysis/
UninitializedValues.cpp 311 Ignore
343 return Ignore;
387 // Ignore the evaluation of a DeclRefExpr on the LHS of an assignment. If this
395 classify(BO->getLHS(), Ignore);
412 classify(*I, Ignore);
423 classify(CSE->getSubExpr(), Ignore);
657 case ClassifyRefs::Ignore:
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 625 TheCondState.Ignore != StartingCondState.Ignore)
    [all...]

Completed in 664 milliseconds

1 2 3