Home
last modified time | relevance | path

Searched defs:Variable (Results 1 – 5 of 5) sorted by relevance

/build/soong/androidmk/parser/
Dast.go86 type Variable struct { struct
87 Name *MakeString
90 func (x *Variable) Pos() Pos { return x.Name.Pos() }
91 func (x *Variable) End() Pos { return x.Name.End() }
93 func (x *Variable) Dump() string {
/build/blueprint/parser/
Dast.go213 type Variable struct { struct
214 Name string
215 NamePos scanner.Position
216 Value Expression
219 func (x *Variable) Pos() scanner.Position { return x.NamePos }
220 func (x *Variable) End() scanner.Position { return x.NamePos }
222 func (x *Variable) Copy() Expression {
227 func (x *Variable) Eval() Expression {
231 func (x *Variable) String() string {
235 func (x *Variable) Type() Type { return x.Value.Type() }
/build/blueprint/
Dsingleton_ctx.go39 Variable(pctx PackageContext, name, value string) methodSpec
135 func (s *singletonContext) Variable(pctx PackageContext, name, value string) { func
Dscope.go27 type Variable interface { interface
Dmodule_ctx.go165 Variable(pctx PackageContext, name, value string) methodSpec
437 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func