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 | 219 type Variable struct { struct 220 Name string 221 NamePos scanner.Position 222 Value Expression 225 func (x *Variable) Pos() scanner.Position { return x.NamePos } 226 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) } 228 func (x *Variable) Copy() Expression { 233 func (x *Variable) Eval() Expression { 237 func (x *Variable) String() string { 241 func (x *Variable) Type() Type { return x.Value.Type() }
|
/build/soong/android/ |
D | singleton.go | 36 Variable(pctx PackageContext, name, value string) methodSpec 132 func (s *singletonContextAdaptor) Variable(pctx PackageContext, name, value string) { func
|
D | module.go | 207 Variable(pctx PackageContext, name, value string) methodSpec 1607 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func
|
/build/blueprint/ |
D | singleton_ctx.go | 63 Variable(pctx PackageContext, name, value string) methodSpec 216 func (s *singletonContext) Variable(pctx PackageContext, name, value string) { func
|
D | scope.go | 27 type Variable interface { interface
|
D | module_ctx.go | 304 Variable(pctx PackageContext, name, value string) methodSpec 661 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func
|
/build/soong/androidmk/androidmk/ |
D | android.go | 607 func varLiteralName(variable mkparser.Variable) string {
|