/prebuilts/go/darwin-x86/src/go/ast/ |
ast.go | 30 // of the construct (typically any larger, parenthesized subpart). 273 // A ParenExpr node represents a parenthesized expression. 276 X Expr // parenthesized expression 817 // A Spec node represents a single (non-parenthesized) import, 906 // (Lparen.IsValid()) indicates a parenthesized declaration.
|
/prebuilts/go/linux-x86/src/go/ast/ |
ast.go | 30 // of the construct (typically any larger, parenthesized subpart). 273 // A ParenExpr node represents a parenthesized expression. 276 X Expr // parenthesized expression 817 // A Spec node represents a single (non-parenthesized) import, 906 // (Lparen.IsValid()) indicates a parenthesized declaration.
|
/prebuilts/go/darwin-x86/src/go/types/ |
check.go | 291 // f must be a (possibly parenthesized) identifier denoting a built-in 324 // if x is a parenthesized expression (p.X), update p.X
|
api.go | 143 // For (possibly parenthesized) identifiers denoting built-in 277 // a (possibly parenthesized) built-in function.
|
/prebuilts/go/linux-x86/src/go/types/ |
check.go | 291 // f must be a (possibly parenthesized) identifier denoting a built-in 324 // if x is a parenthesized expression (p.X), update p.X
|
api.go | 143 // For (possibly parenthesized) identifiers denoting built-in 277 // a (possibly parenthesized) built-in function.
|
/prebuilts/go/darwin-x86/test/ |
escape_because.go | 126 // sed RE above assumes that (reason) is the last parenthesized phrase in the line,
|
/prebuilts/go/linux-x86/test/ |
escape_because.go | 126 // sed RE above assumes that (reason) is the last parenthesized phrase in the line,
|
/prebuilts/go/darwin-x86/src/fmt/ |
doc.go | 104 components independently and the result is parenthesized, so %f applied 227 by a single character (the verb) and end with a parenthesized
|
/prebuilts/go/darwin-x86/src/text/template/ |
doc.go | 193 - A parenthesized instance of one the above, for grouping. The result 278 A parenthesized argument.
|
/prebuilts/go/linux-x86/src/fmt/ |
doc.go | 104 components independently and the result is parenthesized, so %f applied 227 by a single character (the verb) and end with a parenthesized
|
/prebuilts/go/linux-x86/src/text/template/ |
doc.go | 193 - A parenthesized instance of one the above, for grouping. The result 278 A parenthesized argument.
|
/external/annotation-tools/annotation-file-utilities/src/annotator/find/ |
ASTPathCriterion.java | 603 case PARENTHESIZED: { 604 ParenthesizedTree parenthesized = (ParenthesizedTree) actualNode; 605 return parenthesized.getExpression(); [all...] |
/prebuilts/go/darwin-x86/src/regexp/ |
regexp.go | 41 // parenthesized subexpressions (also known as capturing groups) within the 44 // the match of the first parenthesized subexpression, and so on. 263 // NumSubexp returns the number of parenthesized subexpressions in this Regexp. 268 // SubexpNames returns the names of the parenthesized subexpressions [all...] |
/prebuilts/go/darwin-x86/src/text/template/parse/ |
lex_test.go | 285 {"field of parenthesized expression", "{{(.X).Y}}", []item{
|
parse_test.go | 449 hasError, `missing value for parenthesized pipeline`},
|
/prebuilts/go/linux-x86/src/regexp/ |
regexp.go | 41 // parenthesized subexpressions (also known as capturing groups) within the 44 // the match of the first parenthesized subexpression, and so on. 263 // NumSubexp returns the number of parenthesized subexpressions in this Regexp. 268 // SubexpNames returns the names of the parenthesized subexpressions [all...] |
/prebuilts/go/linux-x86/src/text/template/parse/ |
lex_test.go | 285 {"field of parenthesized expression", "{{(.X).Y}}", []item{
|
parse_test.go | 449 hasError, `missing value for parenthesized pipeline`},
|
/prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/ |
parser.go | 615 // unaryExpr may have returned a parenthesized composite literal 698 p.error(fmt.Sprintf("expression in %s must not be parenthesized", s.Tok)) 916 // operand may have returned a parenthesized complit [all...] |
/prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/ |
parser.go | 615 // unaryExpr may have returned a parenthesized composite literal 698 p.error(fmt.Sprintf("expression in %s must not be parenthesized", s.Tok)) 916 // operand may have returned a parenthesized complit [all...] |
/external/annotation-tools/scene-lib/src/annotations/io/ |
ASTPath.java | 666 } else if (s.equals("Parenthesized")) { 667 return newASTEntry(Tree.Kind.PARENTHESIZED, 1171 ParenthesizedTree parenthesized = (ParenthesizedTree) actualNode; local [all...] |
/prebuilts/go/darwin-x86/src/builtin/ |
builtin.go | 95 // number of the current const specification in a (usually parenthesized)
|
/prebuilts/go/linux-x86/src/builtin/ |
builtin.go | 95 // number of the current const specification in a (usually parenthesized)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
ast.c | 706 int complex_args = 0, parenthesized = 0;
local 723 if (parenthesized && !complex_args) {
724 ast_error(n, "parenthesized arg with default");
747 parenthesized = 1;
769 if (parenthesized && Py_Py3kWarningFlag &&
770 !ast_warn(c, ch, "parenthesized argument names "
[all...] |