HomeSort by relevance Sort by last modified time
    Searched full:"$ var" (Results 76 - 100 of 352) sorted by null

1 2 34 5 6 7 8 91011>>

  /build/soong/android/
expand.go 24 // $(var) is passed to Expander(var)
  /external/fio/os/windows/
install.wxs 23 <Directory Id="$(var.ProgramDirectory)">
  /external/googletest/googletest/docs/
PumpManual.md 52 $var n = 3 $$ Defines a meta variable n.
122 | `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. |
145 atomic_code ::= $var id = exp
146 | $var id = [[ code ]]
V1_5_PumpManual.md 52 $var n = 3 $$ Defines a meta variable n.
122 | `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. |
145 atomic_code ::= $var id = exp
146 | $var id = [[ code ]]
V1_6_PumpManual.md 52 $var n = 3 $$ Defines a meta variable n.
122 | `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. |
145 atomic_code ::= $var id = exp
146 | $var id = [[ code ]]
V1_7_PumpManual.md 52 $var n = 3 $$ Defines a meta variable n.
122 | `$var id = exp` | Defines a named constant value. `$id` is valid util the end of the current meta lexical block. |
145 atomic_code ::= $var id = exp
146 | $var id = [[ code ]]
  /external/ImageMagick/m4/
ax_cflags_warn_all.m4 88 case ".$VAR" in
91 *) m4_default($3,[AX_APPEND_FLAG([$VAR], [$1])]) ;;
  /external/abi-dumper/
Makefile.pl 108 if(my $Var = $ENV{"DESTDIR"})
111 $DESTDIR = $Var;
  /prebuilts/go/darwin-x86/test/
escape2.go 199 func (b *Bar2) LeakSelf() { // ERROR "leaking param: b$"
200 b.ii = b.i[0:4] // ERROR "b.i escapes to heap$"
201 }
202
203 func (b *Bar2) LeakSelf2() { // ERROR "leaking param: b$"
204 var
buf []int
327 func (f *Foo) foo47() { // ERROR "leaking param: f$"
328 f.xx = &f.x // ERROR "&f.x escapes to heap$"
329 }
330
331 var
ptrSlice []*int
404 func foo60(i *int) *int { // ERROR "leaking param: i to result ~r1 level=0$"
405 var
a [12]*int
410 func foo60a(i *int) *int { // ERROR "foo60a i does not escape$"
411 var
a [12]*int
496 func foo71(x *int) []*int { // ERROR "leaking param: x$"
497 var
y []*int
502 func foo71a(x int) []*int { // ERROR "moved to heap: x$"
503 var
y []*int
515 var x int // ERROR "moved to heap: x$"
516 var
y [10]*int
634 func myprint1(y *int, x ...interface{}) *interface{} { // ERROR "leaking param: x to result ~r2 level=0$" "myprint1 y does not escape$"
635 return &x[0] // ERROR "&x\[0\] escapes to heap$"
636 }
637
638 func foo75(z *int) { // ERROR "foo75 z does not escape$"
639 myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75 ... argument does not escape$"
640 }
641
642 func foo75a(z *int) { // ERROR "foo75a z does not escape$"
643 myprint1(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75a ... argument does not escape$"
644 }
645
646 func foo75esc(z *int) { // ERROR "leaking param: z$"
647 gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75esc ... argument does not escape$"
648 }
649
650 func foo75aesc(z *int) { // ERROR "foo75aesc z does not escape$"
651 var
ppi **interface{} // assignments to pointer dereferences lose track
688 func foo77b(z []interface{}) { // ERROR "leaking param: z$"
689 var
ppi **interface{}
1185 func foo124(x **int) { // ERROR "foo124 x does not escape$"
1186 var
i int // ERROR "moved to heap: i$
    [all...]
escape2n.go 199 func (b *Bar2) LeakSelf() { // ERROR "leaking param: b$"
200 b.ii = b.i[0:4] // ERROR "b.i escapes to heap$"
201 }
202
203 func (b *Bar2) LeakSelf2() { // ERROR "leaking param: b$"
204 var
buf []int
327 func (f *Foo) foo47() { // ERROR "leaking param: f$"
328 f.xx = &f.x // ERROR "&f.x escapes to heap$"
329 }
330
331 var
ptrSlice []*int
404 func foo60(i *int) *int { // ERROR "leaking param: i to result ~r1 level=0$"
405 var
a [12]*int
410 func foo60a(i *int) *int { // ERROR "foo60a i does not escape$"
411 var
a [12]*int
496 func foo71(x *int) []*int { // ERROR "leaking param: x$"
497 var
y []*int
502 func foo71a(x int) []*int { // ERROR "moved to heap: x$"
503 var
y []*int
515 var x int // ERROR "moved to heap: x$"
516 var
y [10]*int
634 func myprint1(y *int, x ...interface{}) *interface{} { // ERROR "leaking param: x to result ~r2 level=0$" "myprint1 y does not escape$"
635 return &x[0] // ERROR "&x\[0\] escapes to heap$"
636 }
637
638 func foo75(z *int) { // ERROR "foo75 z does not escape$"
639 myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75 ... argument does not escape$"
640 }
641
642 func foo75a(z *int) { // ERROR "foo75a z does not escape$"
643 myprint1(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75a ... argument does not escape$"
644 }
645
646 func foo75esc(z *int) { // ERROR "leaking param: z$"
647 gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75esc ... argument does not escape$"
648 }
649
650 func foo75aesc(z *int) { // ERROR "foo75aesc z does not escape$"
651 var
ppi **interface{} // assignments to pointer dereferences lose track
688 func foo77b(z []interface{}) { // ERROR "leaking param: z$"
689 var
ppi **interface{}
1185 func foo124(x **int) { // ERROR "foo124 x does not escape$"
1186 var
i int // ERROR "moved to heap: i$
    [all...]
  /prebuilts/go/linux-x86/test/
escape2.go 199 func (b *Bar2) LeakSelf() { // ERROR "leaking param: b$"
200 b.ii = b.i[0:4] // ERROR "b.i escapes to heap$"
201 }
202
203 func (b *Bar2) LeakSelf2() { // ERROR "leaking param: b$"
204 var
buf []int
327 func (f *Foo) foo47() { // ERROR "leaking param: f$"
328 f.xx = &f.x // ERROR "&f.x escapes to heap$"
329 }
330
331 var
ptrSlice []*int
404 func foo60(i *int) *int { // ERROR "leaking param: i to result ~r1 level=0$"
405 var
a [12]*int
410 func foo60a(i *int) *int { // ERROR "foo60a i does not escape$"
411 var
a [12]*int
496 func foo71(x *int) []*int { // ERROR "leaking param: x$"
497 var
y []*int
502 func foo71a(x int) []*int { // ERROR "moved to heap: x$"
503 var
y []*int
515 var x int // ERROR "moved to heap: x$"
516 var
y [10]*int
634 func myprint1(y *int, x ...interface{}) *interface{} { // ERROR "leaking param: x to result ~r2 level=0$" "myprint1 y does not escape$"
635 return &x[0] // ERROR "&x\[0\] escapes to heap$"
636 }
637
638 func foo75(z *int) { // ERROR "foo75 z does not escape$"
639 myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75 ... argument does not escape$"
640 }
641
642 func foo75a(z *int) { // ERROR "foo75a z does not escape$"
643 myprint1(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75a ... argument does not escape$"
644 }
645
646 func foo75esc(z *int) { // ERROR "leaking param: z$"
647 gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75esc ... argument does not escape$"
648 }
649
650 func foo75aesc(z *int) { // ERROR "foo75aesc z does not escape$"
651 var
ppi **interface{} // assignments to pointer dereferences lose track
688 func foo77b(z []interface{}) { // ERROR "leaking param: z$"
689 var
ppi **interface{}
1185 func foo124(x **int) { // ERROR "foo124 x does not escape$"
1186 var
i int // ERROR "moved to heap: i$
    [all...]
escape2n.go 199 func (b *Bar2) LeakSelf() { // ERROR "leaking param: b$"
200 b.ii = b.i[0:4] // ERROR "b.i escapes to heap$"
201 }
202
203 func (b *Bar2) LeakSelf2() { // ERROR "leaking param: b$"
204 var
buf []int
327 func (f *Foo) foo47() { // ERROR "leaking param: f$"
328 f.xx = &f.x // ERROR "&f.x escapes to heap$"
329 }
330
331 var
ptrSlice []*int
404 func foo60(i *int) *int { // ERROR "leaking param: i to result ~r1 level=0$"
405 var
a [12]*int
410 func foo60a(i *int) *int { // ERROR "foo60a i does not escape$"
411 var
a [12]*int
496 func foo71(x *int) []*int { // ERROR "leaking param: x$"
497 var
y []*int
502 func foo71a(x int) []*int { // ERROR "moved to heap: x$"
503 var
y []*int
515 var x int // ERROR "moved to heap: x$"
516 var
y [10]*int
634 func myprint1(y *int, x ...interface{}) *interface{} { // ERROR "leaking param: x to result ~r2 level=0$" "myprint1 y does not escape$"
635 return &x[0] // ERROR "&x\[0\] escapes to heap$"
636 }
637
638 func foo75(z *int) { // ERROR "foo75 z does not escape$"
639 myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75 ... argument does not escape$"
640 }
641
642 func foo75a(z *int) { // ERROR "foo75a z does not escape$"
643 myprint1(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75a ... argument does not escape$"
644 }
645
646 func foo75esc(z *int) { // ERROR "leaking param: z$"
647 gxx = myprint(z, 1, 2, 3) // ERROR "1 does not escape" "2 does not escape" "3 does not escape" "foo75esc ... argument does not escape$"
648 }
649
650 func foo75aesc(z *int) { // ERROR "foo75aesc z does not escape$"
651 var
ppi **interface{} // assignments to pointer dereferences lose track
688 func foo77b(z []interface{}) { // ERROR "leaking param: z$"
689 var
ppi **interface{}
1185 func foo124(x **int) { // ERROR "foo124 x does not escape$"
1186 var
i int // ERROR "moved to heap: i$
    [all...]
  /external/llvm/docs/
CMakePrimer.rst 277 message(${var})
286 message(${var})
294 message(${var})
308 message(${var})
317 message(${var})
325 message(${var})
411 message("${var}")
  /external/libvpx/libvpx/build/make/
configure.sh 147 eval $var=$value
155 [ $var = $value ] && return 0
225 if ! disabled $var; then
226 enabled $var || log_echo " enabling $var"
227 enable_feature $var
238 if ! enabled $var; then
239 disabled $var || log_echo " disabling $var"
240 disable_feature $var
    [all...]
  /build/blueprint/proptools/
escape_test.go 47 name: "trailing $",
48 in: `test$`,
49 out: `test$$`,
50 },
51 {
52 name: "leading and trailing $",
53 in: `$test$`,
54 out: `$$test$$`,
55 },
56 }
57
58 var
shellEscapeTestCase = []escapeTestCase{
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
checkextensions.py 49 # Assume $var expands to absolute pathname
  /external/ltp/testcases/kernel/hotplug/cpu_hotplug/functional/
cpuhotplug03.sh 106 echo $! >> /var/run/hotplug4_$$.pid
  /external/webrtc/webrtc/base/
callback.h.pump 65 $var n = 5
sigslottester.h.pump 49 $var n = 5
  /toolchain/binutils/binutils-2.25/config/
proginstall.m4 87 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
  /build/kati/
INTERNALS.md 124 echo $(VAR) # A command
137 $(VAR)
141 *$(VAR)* is evaluated. If *$(VAR)* is a rule statement, the second line is a
175 echo $(VAR)
308 $(VAR)
332 echo $(VAR)
334 echo $(VAR)
  /external/abi-compliance-checker/
Makefile.pl 115 if(my $Var = $ENV{"DESTDIR"})
118 $DESTDIR = $Var;
  /external/curl/tests/
convsrctest.pl 149 my $var = shift @urlvars;
150 s/\"[^\"]*\"/$var/;
getpart.pm 60 my ($var, $cont)=($1, $2);
62 $hash{$var}=$cont;
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 48 ATOMIC_CODE ::= $var ID = EXPRESSION
49 | $var ID = [[ CODE ]]
73 (re.compile(r'\$var\s+'), '$var'),
324 if found.token_type == '$var':
511 elif t == '$var':

Completed in 1096 milliseconds

1 2 34 5 6 7 8 91011>>