HomeSort by relevance Sort by last modified time
    Searched full:expression (Results 476 - 500 of 6680) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/test/fixedbugs/
issue6703g.go 7 // Check for cycles in an embedded method expression.
issue6703h.go 7 // Check for cycles when calling an embedded method expression.
issue6703s.go 7 // Check for cycles in a pointer method expression.
issue6703t.go 7 // Check for cycles in the call of a pointer method expression.
  /toolchain/binutils/binutils-2.25/gas/
gdbinit.in 25 Print *$ as a symbolS, including expression value.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/all/
fwdexp.d 2 #name: forward expression
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
complex.d 4 # Test complex expression parsing
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
shift32-3.d 4 #name: Shift expression, local but undefined symbol, 32-bit ABI.
shift64-3.d 4 #name: Shift expression, local but undefined symbol, 64-bit ABI.
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t015calc.g 16 evaluate returns [result]: r=expression {result = r;};
18 expression returns [result]: r=mult (
38 | '(' r=expression {result = r;} ')'
  /external/antlr/antlr-3.4/runtime/Python/tests/
t015calc.g 19 evaluate returns [result]: r=expression {result = r};
21 expression returns [result]: r=mult (
42 | '(' r=expression {result = r} ')'
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 29 * XObject or a String containing an expression.
104 /** Field m_expression: Stored expression value of this argument.
111 * Get the value expression for this argument.
113 * @return String containing the expression previously stored into this
123 * Set the value expression for this argument.
125 * @param expr String containing the expression to be stored as this
176 * value (either expression string or value XObject). isVisible
191 * Construct a parameter argument that contains an expression.
194 * @param expression String to be stored as this argument's value expression
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p2-generic-lambda-1y.cpp 19 int i2 = sizeof([](auto a, auto b)->void{}(3, '4')); // expected-error{{lambda expression in an unevaluated operand}} \
21 const std::type_info &ti1 = typeid([](auto &a) -> P& { static P p; return p; }(i)); // expected-warning {{expression with side effects will be evaluated despite being used as an operand to 'typeid'}}
22 const std::type_info &ti2 = typeid([](auto) -> int { return i; }(i)); // expected-error{{lambda expression in an unevaluated operand}}\
  /external/clang/test/FixIt/
fixit-class-method-messaging.m 19 // expected-note {{receiver expression is here}}
22 // expected-note {{receiver expression is here}}
25 // expected-note {{receiver expression is here}}
  /external/clang/test/Parser/
objc-try-catch-1.m 31 // expected-warning {{expression result unused}}
37 @throw (4,3,proc()); // expected-warning {{expression result unused}} \
38 // expected-warning {{expression result unused}}
  /external/clang/test/SemaCXX/
constant-expression.cpp 7 // An integral constant-expression can involve only literals, enumerators,
91 case (1/0, 1): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
92 case (int)(1/0, 2.0): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
93 case __imag(1/0): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
94 case (int)__imag((double)(1/0)): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
103 S<p> s; // expected-error {{not an integral constant expression}}
107 // recurse2 cannot be used in a constant expression because it is not
108 // initialized by a constant expression. The same expression appearing later in
109 // the TU would be a constant expression, but here it is not
    [all...]
new-delete-0x.cpp 26 expected-error {{a lambda expression may not appear inside of a constant expression}}
38 delete []{ return (int*)0; }(); // expected-error {{expected expression}}
  /external/clang/test/SemaObjC/
comptypes-10.m 19 NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying>'}}
20 NSObject *Init1 = bar; // expected-warning {{initializing 'NSObject *' with an expression of incompatible type 'id<NSCopying>'}}
33 NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying,NSPROTO,NSPROTO2>'}}
  /external/eigen/Eigen/src/Core/
Random.h 29 /** \returns a random matrix expression
41 * This expression has the "evaluate before nesting" flag so that it will be evaluated into
42 * a temporary matrix whenever it is nested in a larger expression. This prevents unexpected
54 /** \returns a random vector expression
68 * This expression has the "evaluate before nesting" flag so that it will be evaluated into
69 * a temporary vector whenever it is nested in a larger expression. This prevents unexpected
81 /** \returns a fixed-size random matrix or vector expression
89 * This expression has the "evaluate before nesting" flag so that it will be evaluated into
90 * a temporary matrix whenever it is nested in a larger expression. This prevents unexpected
102 /** Sets all coefficients in this expression to random values
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/test/java/org/jacoco/examples/parser/
ExpressionParserTest.java 50 private static void assertExpression(final String expression,
52 final ExpressionParser parser = new ExpressionParser(expression);
54 assertEquals("expression", expected, actual, 0.0);
  /external/libxml2/result/XPath/tests/
idsimple 3 Expression: //*[@id="root"]
18 Expression: //*[@id="chapter2"]
27 Expression: //*[@id="chapter5"]
nssimple 3 Expression: /doc/elem/namespace::node()/..
10 Expression: /doc/elem/namespace::*/self::node()[true()]
18 Expression: //*[namespace::ns1]
  /external/llvm/lib/CodeGen/AsmPrinter/
DebugLocEntry.h 34 : Expression(Expr), EntryKind(E_Integer) {
38 : Expression(Expr), EntryKind(E_ConstantFP) {
42 : Expression(Expr), EntryKind(E_ConstantInt) {
46 : Expression(Expr), EntryKind(E_Location), Loc(Loc) {
50 /// Any complex address location expression for this Value.
51 const DIExpression *Expression;
76 const DIExpression *getExpression() const { return Expression; }
98 auto *Expr = cast_or_null<DIExpression>(Values[0].Expression);
99 auto *NextExpr = cast_or_null<DIExpression>(Next.Values[0].Expression);
145 /// \brief Lower this entry into a DWARF expression
    [all...]
  /external/llvm/test/Analysis/ScalarEvolution/
scev-invalid.ll 5 ; Indvars creates a SCEV expression for the loop's back edge taken
9 ; When loop-unroll asks for the expression, it contains a NULL
12 ; forgetMemoizedResults should invalidate the backedge taken count expression.
  /external/v8/src/ast/
ast-expression-rewriter.h 18 // VisitExpression on each expression node.
32 void VisitExpressions(ZoneList<Expression*>* expressions) override;
37 virtual bool RewriteExpression(Expression* expr) = 0;

Completed in 237 milliseconds

<<11121314151617181920>>