HomeSort by relevance Sort by last modified time
    Searched defs:After (Results 1 - 25 of 43) sorted by null

1 2

  /external/junit/src/main/java/org/junit/
After.java 10 * after the test runs. Annotating a <code>public void</code> method
11 * 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 {
  /external/mockito/src/main/java/org/mockito/verification/
After.java 17 public class After extends VerificationWrapper<VerificationOverTimeImpl> implements VerificationAfterDelay {
25 public After(long delayMillis, VerificationMode verificationMode) {
29 After(long pollingPeriod, long delayMillis, VerificationMode verificationMode) {
33 After(VerificationOverTimeImpl verificationOverTime) {
39 return new After(wrappedVerification.copyWithVerificationMode(verificationMode));
  /prebuilts/go/darwin-x86/src/time/
sleep.go 58 // To prevent a timer created with NewTimer from firing after a call to Stop,
82 // the current time on its channel after at least duration d.
97 // Reset changes the timer to expire after duration d.
144 // After waits for the duration to elapse and then sends the current time
150 func After(d Duration) <-chan Time {
time.go 20 // Time instants can be compared using the Before, After, and Equal methods.
65 // After reports whether the time instant t is after u.
66 func (t Time) After(u Time) bool {
383 // they are after the last Thursday of the year and
740 // After leap day; pretend it wasn't there.
850 // 1678 or after 2262). Note that this means the result of calling UnixNano
    [all...]
  /prebuilts/go/linux-x86/src/time/
sleep.go 58 // To prevent a timer created with NewTimer from firing after a call to Stop,
82 // the current time on its channel after at least duration d.
97 // Reset changes the timer to expire after duration d.
144 // After waits for the duration to elapse and then sends the current time
150 func After(d Duration) <-chan Time {
time.go 20 // Time instants can be compared using the Before, After, and Equal methods.
65 // After reports whether the time instant t is after u.
66 func (t Time) After(u Time) bool {
383 // they are after the last Thursday of the year and
740 // After leap day; pretend it wasn't there.
850 // 1678 or after 2262). Note that this means the result of calling UnixNano
    [all...]
  /external/clang/include/clang/Lex/
HeaderSearchOptions.h 40 After ///< Like System, but searched after the system directories.
127 /// \brief The time (in seconds) after which an unused module file will be
  /external/llvm/include/llvm/Transforms/IPO/
WholeProgramDevirt.h 35 // pack constant values compactly before and after each virtual table.
84 // The bits that will be stored before and after a particular vtable.
98 // The bit vector that will be laid out after the vtable.
99 AccumBitVector After;
143 // The minimum byte offset after the address point. This covers the bytes in
144 // the vtable object after the address point (e.g. the vtable for the current
156 // The number of bytes allocated (for the vtable plus the byte array) after
159 return minAfterBytes() + TM->Bits->After.Bytes.size();
168 // Set the bit at position Pos after the address point to RetVal.
171 TM->Bits->After.setBit(Pos - 8 * minAfterBytes(), RetVal)
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/PiSmmCore/
PiSmmCore.h 91 BOOLEAN After;
859 not need to handle Before or After, as it is not valid to call this
  /external/clang/test/CodeGen/
xcore-stringtype.c 180 // 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];
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/
DxeMain.h 189 BOOLEAN After;
499 not need to handle Before or After, as it is not valid to call this
518 state of Before, After, and SOR dependencies. If DriverEntry->Before
519 or DriverEntry->After is set it will never be cleared. If SOR is set
    [all...]
  /external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
llvm.ml 242 | After of 'b
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
    [all...]
llvm.mli 292 (** [After b] and [At_start a] specify positions from the end of the ['b] list
297 | After of 'b
    [all...]
  /external/clang/lib/Lex/
Lexer.cpp 89 // We are not after parsing a #.
92 // We are not after parsing #include.
282 /// after trigraph expansion and escaped-newline folding. In particular, this
323 /// after trigraph expansion and escaped-newline folding. In particular, this
375 // NOTE: this can be checked even after testing for an IdentifierInfo.
751 /// is generally used when a diagnostic needs to point just after a
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 50 // Suggest fixit for "<::" after a cast.
103 /// \brief Emits an error for a left parentheses after a double colon.
105 /// When a '(' is found after a '::', emit an error. Attempt to fix the token
169 /// the nested-name-specifier after parsing it.
306 // 'identifier <' after it.
438 // If the token after the colon isn't an identifier, it's still an
746 const Token After = GetLookAheadToken(2);
751 (After.is(tok::r_square) ||
752 After.is(tok::comma))) ||
754 After.is(tok::r_square)))
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 313 | After of 'b
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)
    [all...]
llvm.mli 375 (** [After b] and [At_start a] specify positions from the end of the ['b] list
380 | After of 'b
396 The handler will receive the reason for termination as a string. After
    [all...]
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]
SemaDeclCXX.cpp     [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.11/
junit-4.11.jar 

Completed in 560 milliseconds

1 2