Home
last modified time | relevance | path

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

/build/soong/androidmk/parser/
Dast.go100 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/make/tools/product_config/src/com/android/build/config/
DOutputChecker.java53 public static class Variable { class in OutputChecker
59 public Variable(String name, VarType type, Str original) { in Variable() method in OutputChecker.Variable
63 public Variable(String name, VarType type, Str original, Value updated) { in Variable() method in OutputChecker.Variable
/build/blueprint/parser/
Dast.go243 type Variable struct { struct
244 Name string
245 NamePos scanner.Position
246 Value Expression
249 func (x *Variable) Pos() scanner.Position { return x.NamePos }
250 func (x *Variable) End() scanner.Position { return endPos(x.NamePos, len(x.Name)) }
252 func (x *Variable) Copy() Expression {
257 func (x *Variable) Eval() Expression {
261 func (x *Variable) String() string {
265 func (x *Variable) Type() Type { return x.Value.Type() }
/build/orchestrator/ninja/
Dninja_writer.py32 def add_variable(self, variable: Variable):
Dninja_syntax.py52 class Variable(Node): class
/build/soong/android/
Dsingleton.go50 Variable(pctx PackageContext, name, value string) methodSpec
146 func (s *singletonContextAdaptor) Variable(pctx PackageContext, name, value string) { func
Dmodule.go480 Variable(pctx PackageContext, name, value string) methodSpec
2787 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func
/build/blueprint/
Dsingleton_ctx.go73 Variable(pctx PackageContext, name, value string) methodSpec
239 func (s *singletonContext) Variable(pctx PackageContext, name, value string) { func
Dscope.go27 type Variable interface { interface
Dmodule_ctx.go365 Variable(pctx PackageContext, name, value string) methodSpec
768 func (m *moduleContext) Variable(pctx PackageContext, name, value string) { func
/build/soong/androidmk/androidmk/
Dandroid.go638 func varLiteralName(variable mkparser.Variable) string {