Home
last modified time | relevance | path

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

/prebuilts/go/linux-x86/src/cmd/compile/internal/ir/
Dexpr.go470 type ParenExpr struct { struct
471 miniExpr
472 X Node
482 func (n *ParenExpr) Implicit() bool { return n.flags&miniExprImplicit != 0 }
483 func (n *ParenExpr) SetImplicit(b bool) { n.flags.set(miniExprImplicit, b) }
/prebuilts/clang/host/linux-x86/clang-r522817/include/clang/AST/
DComputeDependence.h27 class ParenExpr; variable
DExpr.h2161 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function
2169 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
/prebuilts/clang/host/linux-x86/clang-r530567/include/clang/AST/
DComputeDependence.h27 class ParenExpr; variable
DExpr.h2133 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function
2141 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
/prebuilts/clang/host/linux-x86/clang-r547379/include/clang/AST/
DComputeDependence.h27 class ParenExpr; variable
DExpr.h2139 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function
2147 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
/prebuilts/clang/host/linux-x86/clang-r536225/include/clang/AST/
DComputeDependence.h27 class ParenExpr; variable
DExpr.h2134 ParenExpr(SourceLocation l, SourceLocation r, Expr *val) in ParenExpr() function
2142 explicit ParenExpr(EmptyShell Empty) in ParenExpr() function
/prebuilts/go/linux-x86/src/go/ast/
Dast.go324 ParenExpr struct { struct
325 Lparen token.Pos // position of "("
326 X Expr // parenthesized expression
327 Rparen token.Pos // position of ")"
491 func (x *ParenExpr) Pos() token.Pos { return x.Lparen }
525 func (x *ParenExpr) End() token.Pos { return x.Rparen + 1 }
556 func (*ParenExpr) exprNode() {}
/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
Dnodes.go185 ParenExpr struct { struct
186 X Expr
187 expr