HomeSort by relevance Sort by last modified time
    Searched refs:fut (Results 1 - 4 of 4) sorted by null

  /libcore/luni/src/test/java/libcore/java/nio/channels/
AsynchronousFileChannelTest.java 210 Future<Integer> fut = afc.read(buf, 0); local
211 assertEquals(4, (int) fut.get());
219 fut = afc.read(buf, 6);
220 assertEquals(2, (int) fut.get());
225 fut = afc.read(buf, 8);
226 assertEquals(-1, (int) fut.get());
228 fut = afc.read(buf, 9);
229 assertEquals(-1, (int) fut.get());
382 Future<Integer> fut = afc.read(buf, 0); local
384 assertEquals(4, (int) fut.get())
480 Future<Integer> fut = afc.read(buf, 0); local
    [all...]
  /external/nanohttpd/websocket/src/test/java/fi/iki/elonen/samples/echo/
SimpleEchoSocket.java 87 Future<Void> fut; local
90 fut = session.getRemote().sendStringByFuture(message);
91 fut.get(5, TimeUnit.SECONDS);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
dom_test.go 176 // verifyDominators verifies that the dominators of fut (function under test)
178 func verifyDominators(t *testing.T, fut fun, domFn domFunc, doms map[string]string) {
180 for n, b := range fut.blocks {
184 calcDom := domFn(fut.f)
187 nblk, ok := fut.blocks[n]
191 dblk, ok := fut.blocks[d]
213 for _, b := range fut.blocks {
441 func generateDominatorMap(fut fun) map[string]string {
443 for n, b := range fut.blocks {
446 referenceDom := dominatorsSimple(fut.f
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
dom_test.go 176 // verifyDominators verifies that the dominators of fut (function under test)
178 func verifyDominators(t *testing.T, fut fun, domFn domFunc, doms map[string]string) {
180 for n, b := range fut.blocks {
184 calcDom := domFn(fut.f)
187 nblk, ok := fut.blocks[n]
191 dblk, ok := fut.blocks[d]
213 for _, b := range fut.blocks {
441 func generateDominatorMap(fut fun) map[string]string {
443 for n, b := range fut.blocks {
446 referenceDom := dominatorsSimple(fut.f
    [all...]

Completed in 456 milliseconds