Searched defs:After (Results 1 - 24 of 24) sorted by relevance

/external/junit/src/main/java/org/junit/
H A DAfter.java11 * with <code>&#064;After</code> causes that method to be run after the {@link org.junit.Test} method. All <code>&#064;After</code>
13 * exception. The <code>&#064;After</code> methods declared in superclasses will be run after those of the current
26 * &#064;After public void deleteOutputFile() {
39 public @interface After { interface
/external/mockito/src/main/java/org/mockito/verification/
H A DAfter.java17 public class After extends VerificationWrapper<VerificationOverTimeImpl> implements VerificationAfterDelay { class in inherits:VerificationWrapper,VerificationAfterDelay
25 public After(long delayMillis, VerificationMode verificationMode) { method in class:After
29 After(long pollingPeriod, long delayMillis, VerificationMode verificationMode) { method in class:After
33 After(VerificationOverTimeImpl verificationOverTime) { method in class:After
39 return new After(wrappedVerification.copyWithVerificationMode(verificationMode));
/external/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h99 AccumBitVector After; member in struct:llvm::wholeprogramdevirt::VTableBits
159 return minAfterBytes() + TM->Bits->After.Bytes.size();
171 TM->Bits->After.setBit(Pos - 8 * minAfterBytes(), RetVal);
189 TM->Bits->After.setBE(Pos - 8 * minAfterBytes(), RetVal, Size);
191 TM->Bits->After.setLE(Pos - 8 * minAfterBytes(), RetVal, Size);
/external/clang/include/clang/Lex/
H A DHeaderSearchOptions.h40 After ///< Like System, but searched after the system directories. enumerator in enum:clang::frontend::IncludeDirGroup
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c180 // CHECK: !{{[0-9]+}} = !{[10 x i32]* @After, !"a(10:si)"}
182 extern int After[];
184 int testReDecl() {return After[0] + Before[0];}
185 int After[10]; variable
/external/clang/lib/Lex/
H A DLexer.cpp2921 // (After the LexTokenInternal call, the lexer might be destroyed.)
3424 char After = getCharAndSize(CurPtr+SizeTmp, SizeTmp2); local
3425 if (After == '=') {
3429 } else if (After == '<' && IsStartOfConflictMarker(CurPtr-1)) {
3433 } else if (After == '<' && HandleEndOfConflictMarker(CurPtr-1)) {
3437 } else if (LangOpts.CUDA && After == '<') {
3457 char After = getCharAndSize(CurPtr + SizeTmp + SizeTmp2, SizeTmp3); local
3458 if (After != ':' && After != '>') {
3481 char After local
[all...]
/external/clang/lib/Parse/
H A DParseExprCXX.cpp746 const Token After = GetLookAheadToken(2); local
751 (After.is(tok::r_square) ||
752 After.is(tok::comma))) ||
754 After.is(tok::r_square))) {
760 if (Next.is(tok::identifier) && After.is(tok::identifier)) {
/external/llvm/lib/TableGen/
H A DRecord.cpp341 static Init *fixBitInit(const RecordVal *RV, Init *Before, Init *After) { argument
342 if (RV || !isa<UnsetInit>(After))
343 return After;
/external/swiftshader/third_party/subzero/src/
H A DIceInstARM32.cpp1393 const Variable *After) {
1395 assert(After->hasReg());
1396 return RegNumT::fixme(Before->getRegNum() + 1) == After->getRegNum();
1392 isAssignedConsecutiveRegisters(const Variable *Before, const Variable *After) argument
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml313 | After of 'b Constructor in type:llrev_pos
680 | After bb ->
691 | After bb -> fold_right_global_range f (global_pred bb) e (f bb init)
747 | After fn ->
758 | After fn -> fold_right_function_range f (function_pred fn) e (f fn init)
886 | After p ->
897 | After p -> fold_right_param_range f (f p init) (param_pred p) e
968 | After bb ->
979 | After bb -> fold_right_block_range f (f bb init) (block_pred bb) e
1024 | After
[all...]
H A Dllvm.mli375 (** [After b] and [At_start a] specify positions from the end of the ['b] list
380 | After of 'b Constructor in type:llrev_pos
396 The handler will receive the reason for termination as a string. After
1393 [After gv].
1516 (** [function_pred gv] returns the function list position preceding [After gv].
1611 (** [param_pred gv] returns the function list position preceding [After gv].
1698 (** [block_pred bb] returns the basic block list position preceding [After bb].
1759 (** [instr_pred i] returns the instruction list position preceding [After i].
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm.ml242 | After of 'b Constructor in type:llrev_pos
565 | After bb ->
576 | After bb -> fold_right_global_range f (global_pred bb) e (f bb init)
632 | After fn ->
643 | After fn -> fold_right_function_range f (function_pred fn) e (f fn init)
767 | After p ->
778 | After p -> fold_right_param_range f (f p init) (param_pred p) e
844 | After bb ->
855 | After bb -> fold_right_block_range f (f bb init) (block_pred bb) e
900 | After
[all...]
H A Dllvm.mli292 (** [After b] and [At_start a] specify positions from the end of the ['b] list
297 | After of 'b Constructor in type:llrev_pos
1229 [After gv].
1341 (** [function_pred gv] returns the function list position preceding [After gv].
1433 (** [param_pred gv] returns the function list position preceding [After gv].
1514 (** [block_pred gv] returns the function list position preceding [After gv].
1573 (** [instr_pred i] returns the instruction list position preceding [After i].
/external/clang/lib/Sema/
H A DSemaChecking.cpp5273 SourceLocation After = S.getLocForEndOfToken(E->getLocEnd()); local
5274 Hints.push_back(FixItHint::CreateInsertion(After, ")"));
H A DSemaDeclCXX.cpp2680 /// \brief Enter a new C++ default initializer scope. After calling this, the
7072 static void extendRight(SourceRange &R, SourceRange After) { argument
7073 if (After.isInvalid())
7076 R.setBegin(After.getBegin());
7077 R.setEnd(After.getEnd());
7138 SourceRange Before, After; local
7149 if (TRT) extendRight(After, TRT->getTypeLoc().getSourceRange());
7157 extendRight(After, Chunk.getSourceRange());
7170 extendRight(After, Chunk.EndLoc);
7176 After
7179 DB << Before << After; local
[all...]
/external/pdfium/xfa/fxfa/
H A Dfxfa_basic.h540 After, member in class:XFA_Attribute
/external/annotation-tools/scene-lib/
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/owasp/sanitizer/lib/junit/
H A Djunit-dep.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
H A Djunit.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/libphonenumber/lib/
H A Djunit-4.8.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/external/guice/extensions/persist/lib/
H A Dxwork-2.0.4.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/opensymphony/ com/opensymphony/xwork2/ com/opensymphony/xwork2/config/ ...
/external/guice/extensions/struts2/lib/
H A Dxwork-core-2.2.1.jarMETA-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ...
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 899 milliseconds