Lines Matching full:does
19 v := reflect.ValueOf(x) // ERROR "x does not escape"
24 v := reflect.ValueOf(x) // ERROR "x does not escape"
29 v := reflect.ValueOf(x) // ERROR "x does not escape"
38 func bytes1(x []byte) byte { // ERROR "x does not escape"
39 v := reflect.ValueOf(x) // ERROR "x does not escape"
50 v := reflect.ValueOf(x) // ERROR "x does not escape"
55 v := reflect.ValueOf(x) // ERROR "x does not escape"
104 v := reflect.ValueOf(x) // ERROR "x does not escape"
109 v := reflect.ValueOf(x) // ERROR "x does not escape"
114 v := reflect.ValueOf(x) // ERROR "x does not escape"
119 v := reflect.ValueOf(x) // ERROR "x does not escape"
124 v := reflect.ValueOf(x) // ERROR "x does not escape"
128 func len1(x []int) int { // ERROR "x does not escape"
129 v := reflect.ValueOf(x) // ERROR "x does not escape"
134 v := reflect.ValueOf(x) // ERROR "x does not escape"
138 func len3(x string) int { // ERROR "x does not escape"
139 v := reflect.ValueOf(x) // ERROR "x does not escape"
143 func len4(x map[int]int) int { // ERROR "x does not escape"
148 func len5(x chan int) int { // ERROR "x does not escape"
153 func cap1(x []int) int { // ERROR "x does not escape"
154 v := reflect.ValueOf(x) // ERROR "x does not escape"
159 v := reflect.ValueOf(x) // ERROR "x does not escape"
163 func cap3(x chan int) int { // ERROR "x does not escape"
168 func setlen(x *[]int, n int) { // ERROR "x does not escape"
173 func setcap(x *[]int, n int) { // ERROR "x does not escape"
195 func elem1(x *int) int { // ERROR "x does not escape"
213 func field1(x S) int { // ERROR "x does not escape"
214 v := reflect.ValueOf(x) // ERROR "x does not escape"
219 v := reflect.ValueOf(x) // ERROR "x does not escape"
223 func numfield(x S) int { // ERROR "x does not escape"
224 v := reflect.ValueOf(x) // ERROR "x does not escape"
228 func index1(x []int) int { // ERROR "x does not escape"
229 v := reflect.ValueOf(x) // ERROR "x does not escape"
235 v := reflect.ValueOf(x) // ERROR "x does not escape"
240 v := reflect.ValueOf(x) // ERROR "x does not escape"
245 v := reflect.ValueOf(x) // ERROR "x does not escape"
249 func index5(x string) byte { // ERROR "x does not escape"
250 v := reflect.ValueOf(x) // ERROR "x does not escape"
258 fv.Call([]reflect.Value{v}) // ERROR "\[\]reflect\.Value{\.\.\.} does not escape"
264 fv.Call([]reflect.Value{v}) // ERROR "\[\]reflect.Value{\.\.\.} does not escape"
272 func nummethod(x S) int { // ERROR "x does not escape"
273 v := reflect.ValueOf(x) // ERROR "x does not escape"
278 func mapindex(m map[string]string, k string) string { // ERROR "m does not escape" "leaking param: …
284 func mapkeys(m map[string]string) []reflect.Value { // ERROR "m does not escape"
303 func mapiter3(m map[string]string, it *reflect.MapIter) { // ERROR "leaking param: m$" "it does not…
308 func recv1(ch chan string) string { // ERROR "ch does not escape"
314 func recv2(ch chan string) string { // ERROR "ch does not escape"
321 func send1(ch chan string, x string) { // ERROR "ch does not escape" "leaking param: x$"
328 func send2(ch chan string, x string) bool { // ERROR "ch does not escape" "leaking param: x$"
334 func close1(ch chan string) { // ERROR "ch does not escape"
342 …_, r, _ := reflect.Select([]reflect.SelectCase{cas}) // ERROR "\[\]reflect.SelectCase{...} does no…
351 reflect.Select([]reflect.SelectCase{cas}) // ERROR "\[\]reflect.SelectCase{...} does not escape"
355 intTyp = reflect.TypeOf(int(0)) // ERROR "0 does not escape"
356 uintTyp = reflect.TypeOf(uint(0)) // ERROR "uint\(0\) does not escape"
357 stringTyp = reflect.TypeOf(string("")) // ERROR ".. does not escape"
358 bytesTyp = reflect.TypeOf([]byte{}) // ERROR "\[\]byte{} does not escape"
388 func set3(v reflect.Value, x int) { // ERROR "v does not escape"
399 func set5(v reflect.Value, x string) { // ERROR "v does not escape" "leaking param: x$"
403 func set6(v reflect.Value, x []byte) { // ERROR "v does not escape" "leaking param: x$"
407 func set7(v reflect.Value, x unsafe.Pointer) { // ERROR "v does not escape" "leaking param: x$"
411 func setmapindex(m map[string]string, k, e string) { // ERROR "m does not escape" "leaking param: k…
419 func mapdelete(m map[string]string, k string) { // ERROR "m does not escape" "leaking param: k$"
426 func setiterkey1(v reflect.Value, it *reflect.MapIter) { // ERROR "leaking param: v$" "it does not …
437 func setitervalue1(v reflect.Value, it *reflect.MapIter) { // ERROR "leaking param: v$" "it does no…
452 rv := reflect.Append(sv, xv) // ERROR "... argument does not escape"
457 func append2(s, x []int) []int { // ERROR "leaking param: s$" "x does not escape"
459 xv := reflect.ValueOf(x) // ERROR "x does not escape"