Searched refs:Operator (Results 1 – 12 of 12) sorted by relevance
/build/blueprint/parser/ |
D | parser_test.go | 602 Value: &Operator{ 604 Operator: '+', 632 OrigValue: &Operator{ 634 Operator: '+', 669 Value: &Operator{ 674 Value: &Operator{ 676 Operator: '+', 715 Operator: '+', 724 Value: &Operator{ 726 Operator: '+', [all …]
|
D | ast.go | 216 type Operator struct { struct 218 Operator rune member 223 func (x *Operator) Copy() Expression { argument 230 func (x *Operator) Eval() Expression { argument 234 func (x *Operator) Type() Type { argument 238 func (x *Operator) Pos() scanner.Position { return x.Args[0].Pos() } argument 239 func (x *Operator) End() scanner.Position { return x.Args[1].End() } argument 241 func (x *Operator) String() string { argument 242 return fmt.Sprintf("(%s %c %s = %s)@%s", x.Args[0].String(), x.Operator, x.Args[1].String(),
|
D | printer.go | 116 case *Operator: 279 func (p *printer) printOperator(operator *Operator) { 283 func (p *printer) printOperatorInternal(operator *Operator, allowIndent bool) { 286 p.printToken(string(operator.Operator), operator.OperatorPos) 299 if op, isOp := operator.Args[1].(*Operator); isOp {
|
D | sort.go | 179 case *Operator:
|
D | parser.go | 426 return &Operator{ 428 Operator: operator,
|
/build/soong/partner/bpfix/extensions/ |
D | headers.go | 42 if op, ok := e.(*parser.Operator); ok { 43 if op.Operator != '+' { 73 if op, ok := e.(*parser.Operator); ok {
|
/build/soong/androidmk/androidmk/ |
D | android.go | 258 case *bpparser.Operator: 281 expression := val.Copy().(*bpparser.Operator) 333 case *bpparser.Operator: 338 if v.Operator != '+' { 348 if _, ok := firstOperand.(*bpparser.Operator); ok { 499 if exp, ok := val.(*bpparser.Operator); ok && exp.Operator == '+' { 558 case *bpparser.Variable, *bpparser.Operator: 700 exp1, ok := value.(*bpparser.Operator) 705 exp2, ok := exp1.Args[0].(*bpparser.Operator)
|
D | values.go | 57 return &bpparser.Operator{ 58 Operator: '+',
|
D | androidmk.go | 455 val.(*bpparser.Operator).OperatorPos = pos
|
/build/bazel/utils/ |
D | config_setting_boolean_algebra.bzl | 128 fail("Operator must be AND, OR, or NOT, got %s" % op)
|
/build/blueprint/bpmodify/ |
D | bpmodify.go | 233 if _, ok := value.(*parser.Operator); ok {
|
/build/blueprint/proptools/ |
D | unpack.go | 428 case *parser.Operator:
|