HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 451 - 475 of 11458) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue16804.go 8 // rather than expression
issue19667.go 13 } // ERROR "unexpected }, expecting expression"
issue7525.go 14 a [unsafe.Sizeof(x.a)]int // ERROR "array bound|typechecking loop|invalid expression"
issue7996.go 7 // /tmp/x.go:5: illegal constant expression: bool == interface {}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
pr18347.s 6 // type of expression. Other ways of creating symbols
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/elf/
symtab.d 5 #name: .set with expression
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
rotX.l 4 .*.s:[[:digit:]]+: Error: [Bb]ad or irreducible absolute expression
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mt/
badoffsetlow.s 2 ; a signed quantity. Also tests expression parsing.
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sparc/
pr19910-1.s 4 # U suffix should not prevent evaluation of the expression.
  /external/libxml2/result/XPath/tests/
mixedpat 3 Expression: s
12 Expression: s|p1/s
25 Expression: s|/root/p1/s
38 Expression: /root/p1/s|s
51 Expression: //s
68 Expression: //s|p1
86 Expression: p1|//s
simpleabbr 3 Expression: /EXAMPLE
15 Expression: /EXAMPLE/head
21 Expression: /EXAMPLE/chapter[1]
27 Expression: //p
34 Expression: //chapter/image
43 Expression: //p/text()
52 Expression: //p/text()[position()=1]
61 Expression: //p/text()[position()=last()]
70 Expression: (//p/text())[position()=1]
77 Expression: (//p/text())[position()=last()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
regex_constants.h 38 * A facility for performing regular expression pattern matching.
51 * @name 5.1 Regular Expression Syntax Options
89 * Specifies that when a regular expression is matched against a character
90 * container sequence, no sub-expression matches are to be stored in the
96 * Specifies that the regular expression engine should pay more attention to
98 * speed with which regular expression objects are constructed. Otherwise
110 * Specifies that the grammar recognized by the regular expression engine is
115 * POSIX regular expression grammar.
120 * Specifies that the grammar recognized by the regular expression engine is
129 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
regex_constants.h 38 * A facility for performing regular expression pattern matching.
51 * @name 5.1 Regular Expression Syntax Options
89 * Specifies that when a regular expression is matched against a character
90 * container sequence, no sub-expression matches are to be stored in the
96 * Specifies that the regular expression engine should pay more attention to
98 * speed with which regular expression objects are constructed. Otherwise
110 * Specifies that the grammar recognized by the regular expression engine is
115 * POSIX regular expression grammar.
120 * Specifies that the grammar recognized by the regular expression engine is
129 * Specifies that the grammar recognized by the regular expression engine i
    [all...]
  /build/blueprint/parser/
ast.go 42 Value Expression
43 OrigValue Expression
94 Value Expression
110 // An Expression is a Value in a Property or Assignment. It can be a literal (String or Bool), a
113 type Expression interface {
115 // Copy returns a copy of the Expression that will not affect the original if mutated
116 Copy() Expression
118 // Type returns the underlying Type enum of the Expression if it were to be evalutated
120 // Eval returns an expression that is fully evaluated to a simple type (List, Map, String, or
122 Eval() Expression
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 23 import org.apache.xpath.Expression;
59 * @param owner The owner of the expression, to which the expression can
74 // * @param owner The owner of the expression, to which the expression can
87 * proper unique component for predicates, and that the expression will
88 * be called also for whatever type Expression is.
90 * @param owner The owner of the expression, to which the expression can
95 public boolean visitPredicate(ExpressionOwner owner, Expression pred
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1.cpp 6 // In a class member access expression (5.2.5), if the . or -> token is
10 // looked up in the class of the object expression. If the identifier is not
11 // found, it is then looked up in the context of the entire postfix-expression
13 // the object expression finds a template, the name is also looked up in the
14 // context of the entire postfix-expression and
16 // expression is used, otherwise
17 // -- if the name is found in the context of the entire postfix-expression
19 // object expression is used, otherwise
21 // entity as the one found in the class of the object expression,
49 // expected-warning@-2 {{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}
    [all...]
  /external/clang/test/OpenMP/
single_misc_messages.c 83 // expected-error@+2 {{expected expression}}
89 // expected-error@+1 2 {{expected expression}}
93 // expected-error@+1 2 {{expected expression}}
97 // expected-error@+1 {{expected expression}}
101 // expected-error@+1 {{expected expression}}
125 // expected-error@+1 {{expected expression}}
131 // expected-error@+1 2 {{expected expression}}
135 // expected-error@+1 2 {{expected expression}}
139 // expected-error@+1 {{expected expression}}
143 // expected-error@+1 {{expected expression}}
    [all...]
  /external/clang/test/Parser/
cxx1z-fold-expressions.cpp 14 template<int ...N> void bad2() { (2 * N + ... + 1); } // expected-error {{expression not permitted as operand}}
15 template<int ...N> void bad3() { (2 + N * ... * 1); } // expected-error {{expression not permitted as operand}}
16 template<int ...N, int ...M> void bad4(int (&...x)[N]) { (N + M * ... * 1); } // expected-error {{expression not permitted as operand}}
20 template<int ...N> void bad5() { N + ...; } // expected-error {{expected expression}} expected-error +{{}}
21 template<int ...N> void bad6() { ... + N; } // expected-error {{expected expression}}
22 template<int ...N> void bad7() { N + ... + N; } // expected-error {{expected expression}} expected-error +{{}}
25 template<int ...N> int bad8() { return (N + ... * 3); } // expected-error {{operators in fold expression must be the same}}
26 template<int ...N> int bad9() { return (3 + ... * N); } // expected-error {{operators in fold expression must be the same}}
28 template<int ...N> int bad11() { return (N + ... 0); } // expected-error {{expected a foldable binary operator}} expected-error {{expected expression}}
29 template<int ...N> int bad12() { return (... N); } // expected-error {{expected expression}}
    [all...]
  /external/eigen/Eigen/src/Core/
CwiseUnaryOp.h 38 * \brief Generic expression where a coefficient-wise unary operator is applied to an expression
41 * \tparam XprType the type of the expression to which we are applying the unary operator
43 * This class represents an expression where a unary operator is applied to an expression.
44 * It is the return type of all operations taking exactly 1 input expression, regardless of the
45 * presence of other inputs such as scalars. For example, the operator* in the expression 3*matrix
46 * is considered unary, because only the right-hand side is an expression, and its
77 /** \returns the nested expression */
82 /** \returns the nested expression */
    [all...]
  /external/skia/src/sksl/ir/
SkSLSwizzle.h 24 static const Type& get_type(const Context& context, Expression& value, size_t count) {
84 struct Swizzle : public Expression {
85 Swizzle(const Context& context, std::unique_ptr<Expression> base, std::vector<int> components)
92 std::unique_ptr<Expression> constantPropagate(const IRGenerator& irGenerator,
94 if (fBase->fKind == Expression::kConstructor_Kind && fBase->isConstant()) {
96 ASSERT(fBase->fKind == Expression::kConstructor_Kind);
100 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
106 return std::unique_ptr<Expression>(new FloatLiteral(irGenerator.fContext,
126 std::unique_ptr<Expression> fBase;
129 typedef Expression INHERITED
    [all...]
  /external/skqp/src/sksl/ir/
SkSLSwizzle.h 24 static const Type& get_type(const Context& context, Expression& value, size_t count) {
84 struct Swizzle : public Expression {
85 Swizzle(const Context& context, std::unique_ptr<Expression> base, std::vector<int> components)
92 std::unique_ptr<Expression> constantPropagate(const IRGenerator& irGenerator,
94 if (fBase->fKind == Expression::kConstructor_Kind && fBase->isConstant()) {
96 ASSERT(fBase->fKind == Expression::kConstructor_Kind);
100 return std::unique_ptr<Expression>(new IntLiteral(irGenerator.fContext,
106 return std::unique_ptr<Expression>(new FloatLiteral(irGenerator.fContext,
126 std::unique_ptr<Expression> fBase;
129 typedef Expression INHERITED
    [all...]
  /external/clang/test/CXX/expr/expr.mptr.oper/
p6-0x.cpp 9 // In a .* expression whose object expression is an rvalue, the
11 // function with ref-qualifier &. In a ->* expression or in a .*
12 // expression whose object expression is an lvalue, the program is
  /external/clang/test/Sema/
block-call.c 16 const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int (^)()'}}
25 int * (^IPCC2) () = IPCC; // expected-error {{incompatible block pointer types initializing 'int *(^)()' with an expression of type 'int *const (^)()'}}
33 int (^IPCC6) (int, char (^CArg) (float)) = IPCC4; // expected-error {{incompatible block pointer types initializing 'int (^)(int, char (^)(float))' with an expression of type 'int (^)(int, char (^)(double))'}}
38 int (^y)() = 3; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
40 int (^z)() = a+4; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/javaparser_expected_output/
com_github_javaparser_ast_expr_AssignExpr.txt 3 superclass: com.github.javaparser.ast.expr.Expression
20 Line 84) target ==> com.github.javaparser.ast.expr.Expression
21 Line 88) value ==> com.github.javaparser.ast.expr.Expression
23 Line 96) this.target = target ==> com.github.javaparser.ast.expr.Expression
25 Line 101) this.value = value ==> com.github.javaparser.ast.expr.Expression
com_github_javaparser_ast_expr_BinaryExpr.txt 3 superclass: com.github.javaparser.ast.expr.Expression
19 Line 87) left ==> com.github.javaparser.ast.expr.Expression
21 Line 95) right ==> com.github.javaparser.ast.expr.Expression
22 Line 99) this.left = left ==> com.github.javaparser.ast.expr.Expression
25 Line 108) this.right = right ==> com.github.javaparser.ast.expr.Expression

Completed in 616 milliseconds

<<11121314151617181920>>