HomeSort by relevance Sort by last modified time
    Searched defs:after (Results 26 - 50 of 1096) sorted by null

12 3 4 5 6 7 8 91011>>

  /cts/tests/openglperf2/jni/reference/scene/flocking/
WaterMeshNode.cpp 68 void WaterMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) { function in class:WaterMeshNode
  /external/junit/src/main/java/org/junit/rules/
ExternalResource.java 23 * protected void after() {
50 after(); method
59 * @throws Throwable if setup fails (which will disable {@code after}
68 protected void after() {
  /external/linux-kselftest/tools/testing/selftests/powerpc/pmu/ebb/
pmae_handling_test.c 29 static uint64_t before, after; variable
49 after = mfspr(SPRN_MMCR0);
50 if (before != after)
90 printf("Saw MMCR0 before 0x%lx after 0x%lx\n", before, after);
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
Consumer.java 25 * {@code after} operation. If performing either operation throws an exception, it is relayed to
27 * {@code after} operation will not be performed.
29 * @param after the operation to perform after this operation
31 * {@code after} operation
32 * @throws NullPointerException if {@code after} is null
34 default Consumer<T> andThen(Consumer<? super T> after) {
35 Objects.requireNonNull(after);
38 after.accept(t);
  /external/testng/src/test/java/test/configuration/
ConfigurationDisabledSampleTest.java 17 public void after() { method in class:ConfigurationDisabledSampleTest
ConfigurationGroups5SampleTest.java 44 public void after() { method in class:ConfigurationGroups5SampleTest
45 log("after");
ConfigurationGroups6SampleTest.java 39 public void after() { method in class:ConfigurationGroups6SampleTest
40 log("after");
  /external/valgrind/none/tests/ppc64/
std_reg_imm.c 47 char after[6]; member in struct:__anon43098
  /frameworks/base/core/tests/coretests/src/android/content/pm/
AndroidTestRunnerSplitUpdaterTest.java 40 PackageBuilder after = builder() local
43 checkBackwardsCompatibility(before, after);
52 PackageBuilder after = builder() local
56 checkBackwardsCompatibility(before, after);
59 private void checkBackwardsCompatibility(PackageBuilder before, PackageBuilder after) {
60 checkBackwardsCompatibility(before, after, AndroidTestRunnerSplitUpdater::new);
  /libcore/ojluni/src/main/java/java/util/function/
BiConsumer.java 57 * operation followed by the {@code after} operation. If performing either
60 * the {@code after} operation will not be performed.
62 * @param after the operation to perform after this operation
64 * operation followed by the {@code after} operation
65 * @throws NullPointerException if {@code after} is null
67 default BiConsumer<T, U> andThen(BiConsumer<? super T, ? super U> after) {
68 Objects.requireNonNull(after);
72 after.accept(l, r);
Consumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default Consumer<T> andThen(Consumer<? super T> after) {
64 Objects.requireNonNull(after);
65 return (T t) -> { accept(t); after.accept(t); };
DoubleConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default DoubleConsumer andThen(DoubleConsumer after) {
64 Objects.requireNonNull(after);
65 return (double t) -> { accept(t); after.accept(t); };
IntConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default IntConsumer andThen(IntConsumer after) {
64 Objects.requireNonNull(after);
65 return (int t) -> { accept(t); after.accept(t); };
LongConsumer.java 53 * operation followed by the {@code after} operation. If performing either
56 * the {@code after} operation will not be performed.
58 * @param after the operation to perform after this operation
60 * operation followed by the {@code after} operation
61 * @throws NullPointerException if {@code after} is null
63 default LongConsumer andThen(LongConsumer after) {
64 Objects.requireNonNull(after);
65 return (long t) -> { accept(t); after.accept(t); };
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ValuesDeltaTests.java 44 final ContentValues after = new ContentValues(); local
45 after.put(Phone.NUMBER, TEST_PHONE_NUMBER_2);
47 final ValuesDelta values = ValuesDelta.fromAfter(after);
  /external/curl/tests/libtest/
lib1501.c 67 struct timeval after; local
92 after = tutil_tvnow();
93 e = tutil_tvdiff(after, before);
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/
NodeGenerator.java 32 after(); method
41 protected void after() throws Exception { method in class:NodeGenerator
  /external/mesa3d/src/compiler/nir/
nir_control_flow.h 53 /** puts a control flow node immediately after another control flow node */
55 nir_cf_node_insert_after(nir_cf_node *node, nir_cf_node *after)
57 nir_cf_node_insert(nir_after_cf_node(node), after); local
94 * 1) After an if statement, if neither branch ends in a jump.
95 * 2) After a loop, if there are multiple break's.
102 * extracting all the phi nodes after it is not allowed, and neither is
115 * uses after all is said and done. Either the caller must ensure that this
  /external/mockito/src/test/java/org/mockito/internal/progress/
ThreadSafeMockingProgressTest.java 7 import org.junit.After;
21 @After
22 public void after() { method in class:ThreadSafeMockingProgressTest
  /external/mockito/src/test/java/org/mockitousage/misuse/
RestrictedObjectMethodsTest.java 8 import org.junit.After;
26 @After
27 public void after() { method in class:RestrictedObjectMethodsTest
  /external/pdfium/fxjs/xfa/
cjx_break.cpp 15 void CJX_Break::after(CFXJSE_Value* pValue, function in class:CJX_Break
  /external/python/cpython2/Lib/idlelib/idle_test/
test_parenmatch.py 20 def after(self, *args, **kwargs): member in class:Mock
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
pad_op.cc 64 int after = pad_literal.Get<int32>({i, 1}); variable
65 OP_REQUIRES(ctx, before >= 0 && after >= 0,
67 before, " ", after));
69 dim->set_edge_padding_high(after);
  /external/testng/src/test/java/test/inject/
InjectAfterMethodWithTestResultSampleTest.java 39 public void after(Method m, ITestResult r) { method in class:InjectAfterMethodWithTestResultSampleTest
InjectBeforeAndAfterMethodsWithTestResultSampleTest.java 44 public void after(Method m, ITestResult r) { method in class:InjectBeforeAndAfterMethodsWithTestResultSampleTest

Completed in 732 milliseconds

12 3 4 5 6 7 8 91011>>