HomeSort by relevance Sort by last modified time
    Searched full:after (Results 576 - 600 of 38973) sorted by null

<<21222324252627282930>>

  /libcore/ojluni/src/main/java/java/util/function/
LongUnaryOperator.java 71 * its input, and then applies the {@code after} operator to the result.
75 * @param after the operator to apply after this operator is applied
77 * applies the {@code after} operator
78 * @throws NullPointerException if after is null
82 default LongUnaryOperator andThen(LongUnaryOperator after) {
83 Objects.requireNonNull(after);
84 return (long t) -> after.applyAsLong(applyAsLong(t));
  /packages/apps/Dialer/java/com/android/incallui/video/protocol/res/values/
config.xml 17 <!-- Determines video calls will automatically enter fullscreen mode after the start of the
20 <!-- The number of milliseconds after which a video call will automatically enter fullscreen
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/provisioning/
ProvisioningControllerCallback.java 24 * Method called when the provisioning process was successfully clean up. This can occur after
25 * an error or after the user cancelled progress.
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 53 after=any*
85 after = results.get("after")
86 if after:
87 after = [n.clone() for n in after]
101 if after:
103 new = pytree.Node(syms.power, (new,) + tuple(after))
  /prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/
fix_has_key.py 53 after=any*
85 after = results.get("after")
86 if after:
87 after = [n.clone() for n in after]
101 if after:
103 new = pytree.Node(syms.power, (new,) + tuple(after))
  /prebuilts/go/darwin-x86/src/go/doc/testdata/
d2.go 21 // CAx constants should appear after CBx constants.
28 // VAx variables should appear after VBx variables.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4313.go 15 case c <- x: // should see x = 0, not x = 42 (after makec)
16 case <-makec(&x): // should be evaluated only after c and x on previous line
  /prebuilts/go/linux-x86/src/go/doc/testdata/
d2.go 21 // CAx constants should appear after CBx constants.
28 // VAx variables should appear after VBx variables.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4313.go 15 case c <- x: // should see x = 0, not x = 42 (after makec)
16 case <-makec(&x): // should be evaluated only after c and x on previous line
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 53 after=any*
85 after = results.get("after")
86 if after:
87 after = [n.clone() for n in after]
101 if after:
103 new = pytree.Node(syms.power, (new,) + tuple(after))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 53 after=any*
85 after = results.get("after")
86 if after:
87 after = [n.clone() for n in after]
101 if after:
103 new = pytree.Node(syms.power, (new,) + tuple(after))
  /art/test/446-checker-inliner2/src/
Main.java 23 /// CHECK-START: int Main.inlineInstanceCall(Main) inliner (after)
26 /// CHECK-START: int Main.inlineInstanceCall(Main) inliner (after)
44 /// CHECK-START: int Main.inlineNestedCall() inliner (after)
47 /// CHECK-START: int Main.inlineNestedCall() inliner (after)
  /art/test/477-checker-bound-type/src/
Main.java 20 /// CHECK-START: java.lang.Object Main.boundTypeForIf(java.lang.Object) builder (after)
30 /// CHECK-START: java.lang.Object Main.boundTypeForInstanceOf(java.lang.Object) builder (after)
40 /// CHECK-START: java.lang.Object Main.noBoundTypeForIf(java.lang.Object) builder (after)
50 /// CHECK-START: java.lang.Object Main.noBoundTypeForInstanceOf(java.lang.Object) builder (after)
  /art/test/486-checker-must-do-null-check/src/
Main.java 18 /// CHECK-START: void Main.InstanceOfPreChecked(java.lang.Object) instruction_simplifier (after)
27 /// CHECK-START: void Main.InstanceOf(java.lang.Object) instruction_simplifier (after)
35 /// CHECK-START: void Main.CheckCastPreChecked(java.lang.Object) instruction_simplifier (after)
42 /// CHECK-START: void Main.CheckCast(java.lang.Object) instruction_simplifier (after)
  /art/test/609-checker-inline-interface/src/
Main.java 47 /// CHECK-START: void Main.testInlineInterfaceCall() inliner (after)
50 /// CHECK-START: void Main.testInlineInterfaceCall() inliner (after)
62 /// CHECK-START: void Main.testInterfaceToVirtualCall() inliner (after)
65 /// CHECK-START: void Main.testInterfaceToVirtualCall() inliner (after)
  /dalvik/dx/tests/005-cp-top-down/
info.txt 7 entries that are referred to by other entries always occur after the
  /dalvik/dx/tests/088-ssa-combine-blocks/
info.txt 1 This is a test case for the identical-block combining algorithm, which runs after the SSA optimizer to recombine identical blocks (usually exception handlers) created during edge-splitting.
  /development/samples/browseable/DirectBoot/
_index.jd 11 go off after reboot even before the user enters their credentials.
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Include/Protocol/
CpuIo.h 5 Note: This is a runtime protocol and can be used by runtime drivers after ExitBootServices().
7 and may not be used by runtime drivers after ExitBootServices().
38 // protocol, which means it can be used by runtime drivers after ExitBootServices().
40 // not be used by runtime drivers after ExitBootServices().
  /device/linaro/bootloader/edk2/UefiCpuPkg/PiSmmCpuDxeSmm/X64/
Semaphore.c 3 after SMBASE relocation.
34 can be executed immediately after AP exits SMM to indicate to
35 the BSP that an AP has exited SMM after SMBASE relocation.
39 immediately after AP exits SMM.
  /external/antlr/antlr-3.4/runtime/Perl5/examples/
README 10 After that you need to compile the grammar using ANTLR, for example by using
  /external/antlr/antlr-3.4/runtime/Python/tests/
t050decorate.g 13 self.events.append('after')
t050decorate.py 17 assert parser.events == ['before', 'after']
  /external/autotest/client/site_tests/platform_DaemonsRespawn/
control 11 Fails if kill daemons are not automatically restarted after they are killed.
  /external/autotest/client/site_tests/power_CheckAfterSuspend/
power_CheckAfterSuspend.py 16 """Checks capabilities by running tests after suspend/resume cycle.
29 @param tests: list of client tests to run before/after suspend.
32 otherwise only run tests after suspend.
44 Normally runs each test once after each suspend. If enable_baseline

Completed in 1004 milliseconds

<<21222324252627282930>>