Searched defs:Variable (Results 1 – 8 of 8) sorted by relevance
/build/soong/androidmk/parser/ |
D | ast.go | 100 type Variable struct { struct 101 Name *MakeString 104 func (x *Variable) Pos() Pos { return x.Name.Pos() } 105 func (x *Variable) End() Pos { return x.Name.End() } 107 func (x *Variable) Dump() string {
|
/build/blueprint/parser/ |
D | ast.go | 216 type Variable struct { struct 217 Name string 218 NamePos scanner.Position 219 Value Expression 222 func (x *Variable) Pos() scanner.Position { return x.NamePos } 223 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } 225 func (x *Variable) Copy() Expression { 230 func (x *Variable) Eval() Expression { 234 func (x *Variable) String() string { 238 func (x *Variable) Type() Type { return x.Value.Type() }
|
/build/soong/android/ |
D | singleton.go | 37 Variable(pctx PackageContext, name, value string) methodSpec 125 func (s *singletonContextAdaptor) Variable(pctx PackageContext, name, value string) { func
|
D | module.go | 160 Variable(pctx PackageContext, name, value string) methodSpec 966 func (a *androidModuleContext) Variable(pctx PackageContext, name, value string) { func
|
/build/blueprint/ |
D | singleton_ctx.go | 42 Variable(pctx PackageContext, name, value string) methodSpec 149 func (s *singletonContext) Variable(pctx PackageContext, name, value string) { func
|
D | scope.go | 27 type Variable interface { interface
|
D | module_ctx.go | 175 Variable(pctx PackageContext, name, value string) methodSpec 498 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func
|
/build/soong/androidmk/cmd/androidmk/ |
D | android.go | 598 func varLiteralName(variable mkparser.Variable) string {
|