Searched refs:receive (Results 1 - 13 of 13) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/go.test/test/chan/
H A Dperm.go8 // receive-only, and bidirectional channels.
38 <-cs // ERROR "receive"
39 x, ok = <-cs // ERROR "receive"
52 case x := <-cs: // ERROR "receive"
56 for _ = range cs {// ERROR "receive"
61 close(cr) // ERROR "receive"
H A Dselect5.go11 // Each test does only one real send or receive at a time, but phrased
148 {{/* Send n, receive it one way or another into x, check that they match. */}}
154 {{/* Blocking or non-blocking, before the receive. */}}
176 {{/* Blocking or non-blocking again, after the receive. */}}
181 {{/* Dummy send, receive to keep compiler from optimizing select. */}}
188 panic("dummy receive")
190 {{/* Nil channel send, receive to keep compiler from optimizing select. */}}
208 {{/* Send n, receive it one way or another into x, check that they match. */}}
223 {{/* Blocking or non-blocking, before the receive. */}}
243 {{/* Blocking or non-blocking again, after the receive
[all...]
H A Dsendstmt.go27 panic("bad receive")
H A Dfifo.go22 print("bad receive\n")
H A Dsieve2.go76 // Use a goroutine to receive values from 'out' and store them
154 // receive from 'primes' much slower than this goroutine
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/bug448.dir/
H A Dpkg2.go5 // Issue 3843: inlining bug due to wrong receive operator precedence.
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/
H A Dconst4.go71 println("BUG: did not receive from c")
79 println("BUG: did not receive from c1")
H A Dclosedchan.go7 // Test close(c), receive of closed channel.
/haiku-buildtools/gcc/zlib/
H A Dmake_vms.com12 $! 0.01 20060120 First version to receive a number
302 $! 0.01 20041206 First version to receive a number
376 $! 0.01 20040223 First version to receive a number
601 $! 0.01 20031020 First version to receive a number
709 $! 0.01 20031029 First version to receive a number
/haiku-buildtools/binutils/zlib/
H A Dmake_vms.com12 $! 0.01 20060120 First version to receive a number
302 $! 0.01 20041206 First version to receive a number
376 $! 0.01 20040223 First version to receive a number
601 $! 0.01 20031020 First version to receive a number
709 $! 0.01 20031029 First version to receive a number
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dparse.cc653 bool receive = true; local
669 receive = false;
691 return Type::make_channel_type(send, receive, element_type);
1819 // See if we need to initialize a pair of values from a receive
1828 Receive_expression* receive = expr->receive_expression(); local
1829 if (receive == NULL)
1834 // This is a receive expression which is being assigned to two
1836 // the receive.
1839 Expression* init = type == NULL ? receive : NULL;
1859 receive
4067 Receive_expression* receive; local
[all...]
H A Dtypes.h541 make_channel_type(bool send, bool receive, Type*);
2599 // Whether this channel can receive data.
2658 // Whether this channel can receive data.
H A Dtypes.cc7096 Type::make_channel_type(bool send, bool receive, Type* element_type) argument
7098 return new Channel_type(send, receive, element_type);

Completed in 112 milliseconds