Home
last modified time | relevance | path

Searched refs:Expression (Results 1 – 25 of 759) sorted by relevance

12345678910>>...31

/external/libxml2/result/XPath/expr/
Dfloats3 Expression: 1
7 Expression: 123
11 Expression: 1.23
15 Expression: 0.123
19 Expression: 4.
23 Expression: .4
27 Expression: 1.23e3
31 Expression: 1.23e-3
35 Expression: 1 div 0
39 Expression: -1 div 0
[all …]
Dcompare3 Expression: 0<0
7 Expression: 0<=0
11 Expression: 0>0
15 Expression: 0>=0
19 Expression: 0<1
23 Expression: 0<=1
27 Expression: 0>1
31 Expression: 0>=1
35 Expression: 1<0
39 Expression: 1<=0
[all …]
Dfunctions3 Expression: true()
7 Expression: false()
11 Expression: number("1.5")
15 Expression: number('abc')
19 Expression: -number('abc')
23 Expression: floor(0.1)
27 Expression: floor(-0.1)
31 Expression: floor(-0)
35 Expression: floor(0)
39 Expression: floor(5.2)
[all …]
Dstrings3 Expression: string(5)
7 Expression: string(0.5)
11 Expression: string(-0.5)
15 Expression: string(true())
19 Expression: string(false())
23 Expression: string(12345678901234567890)
27 Expression: string(-12345678901234567890)
31 Expression: concat("titi","toto")
35 Expression: concat("titi","toto","tata")
39 Expression: concat("titi",'toto')
[all …]
Dequality3 Expression: 1=1
7 Expression: 1!=1
11 Expression: 1=0
15 Expression: 1!=0
19 Expression: true()=true()
23 Expression: true()!=true()
27 Expression: true()=false()
31 Expression: false()!=true()
35 Expression: 'test'='test'
39 Expression: 'test'!='test'
[all …]
Dbase3 Expression: 1
7 Expression: 1+2
11 Expression: 2*3
15 Expression: 1+2*3+4
19 Expression: (1+2)*(3+4)
23 Expression: 1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1+1*1
27 Expression: 0.000000000000000000000000000000000000000000000000001
31 Expression: -0.000000000000000000000000000000000000000000000000001
35 Expression: 1e2147483648
39 Expression: 1e4294967296
[all …]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DReflectionUtil.cs61 ParameterExpression parameter = Expression.Parameter(typeof(IMessage), "p"); in CreateFuncIMessageObject()
62 Expression downcast = Expression.Convert(parameter, method.DeclaringType); in CreateFuncIMessageObject()
63 Expression call = Expression.Call(downcast, method); in CreateFuncIMessageObject()
64 Expression upcast = Expression.Convert(call, typeof(object)); in CreateFuncIMessageObject()
65 return Expression.Lambda<Func<IMessage, object>>(upcast, parameter).Compile(); in CreateFuncIMessageObject()
74 ParameterExpression parameter = Expression.Parameter(typeof(IMessage), "p"); in CreateFuncIMessageT()
75 Expression downcast = Expression.Convert(parameter, method.DeclaringType); in CreateFuncIMessageT()
76 Expression call = Expression.Call(downcast, method); in CreateFuncIMessageT()
77 Expression upcast = Expression.Convert(call, typeof(T)); in CreateFuncIMessageT()
78 return Expression.Lambda<Func<IMessage, T>>(upcast, parameter).Compile(); in CreateFuncIMessageT()
[all …]
/external/v8/src/ast/
Dast.h121 class Expression; variable
189 class Expression : public AstNode {
247 Expression(int pos, NodeType type) : AstNode(pos, type) {} in Expression() function
365 class DoExpression final : public Expression {
374 : Expression(pos, kDoExpression), block_(block), result_(result) { in DoExpression()
499 void Initialize(Expression* cond, Statement* body) { in Initialize()
504 Expression* cond() const { return cond_; } in cond()
514 Expression* cond_;
520 void Initialize(Expression* cond, Statement* body) { in Initialize()
525 Expression* cond() const { return cond_; } in cond()
[all …]
/external/skqp/src/sksl/
DSkSLIRGenerator.h77 std::unique_ptr<Expression> constantFold(const Expression& left,
79 const Expression& right) const;
81 std::unique_ptr<Expression> getArg(int offset, String name) const;
108 std::unique_ptr<Expression> convertExpression(const ASTExpression& expression);
113 std::unique_ptr<Expression> call(int offset,
115 std::vector<std::unique_ptr<Expression>> arguments);
117 const std::vector<std::unique_ptr<Expression>>& arguments);
118 std::unique_ptr<Expression> call(int offset, std::unique_ptr<Expression> function,
119 std::vector<std::unique_ptr<Expression>> arguments);
120 int coercionCost(const Expression& expr, const Type& type);
[all …]
DSkSLCFGGenerator.cpp86 Expression* e) { in tryRemoveExpressionBefore()
87 if (e->fKind == Expression::kTernary_Kind) { in tryRemoveExpressionBefore()
93 Expression* old = (*iter)->expression()->get(); in tryRemoveExpressionBefore()
127 Expression* lvalue) { in tryRemoveLValueBefore()
129 case Expression::kVariableReference_Kind: in tryRemoveLValueBefore()
131 case Expression::kSwizzle_Kind: in tryRemoveLValueBefore()
133 case Expression::kFieldAccess_Kind: in tryRemoveLValueBefore()
135 case Expression::kIndex_Kind: in tryRemoveLValueBefore()
140 case Expression::kTernary_Kind: in tryRemoveLValueBefore()
155 Expression* expr = (*iter)->expression()->get(); in tryRemoveExpression()
[all …]
/external/skia/src/sksl/
DSkSLIRGenerator.h77 std::unique_ptr<Expression> constantFold(const Expression& left,
79 const Expression& right) const;
81 std::unique_ptr<Expression> getArg(int offset, String name) const;
108 std::unique_ptr<Expression> convertExpression(const ASTExpression& expression);
113 std::unique_ptr<Expression> call(int offset,
115 std::vector<std::unique_ptr<Expression>> arguments);
117 const std::vector<std::unique_ptr<Expression>>& arguments);
118 std::unique_ptr<Expression> call(int offset, std::unique_ptr<Expression> function,
119 std::vector<std::unique_ptr<Expression>> arguments);
120 int coercionCost(const Expression& expr, const Type& type);
[all …]
DSkSLCFGGenerator.cpp86 Expression* e) { in tryRemoveExpressionBefore()
87 if (e->fKind == Expression::kTernary_Kind) { in tryRemoveExpressionBefore()
93 Expression* old = (*iter)->expression()->get(); in tryRemoveExpressionBefore()
127 Expression* lvalue) { in tryRemoveLValueBefore()
129 case Expression::kVariableReference_Kind: in tryRemoveLValueBefore()
131 case Expression::kSwizzle_Kind: in tryRemoveLValueBefore()
133 case Expression::kFieldAccess_Kind: in tryRemoveLValueBefore()
135 case Expression::kIndex_Kind: in tryRemoveLValueBefore()
140 case Expression::kTernary_Kind: in tryRemoveLValueBefore()
155 Expression* expr = (*iter)->expression()->get(); in tryRemoveExpression()
[all …]
/external/deqp/framework/randomshaders/
DrsgExpression.hpp50 class Expression class
53 virtual ~Expression (void);
56 virtual Expression* createNextChild (GeneratorState& state) = DE_NULL;
64 static Expression* createRandom (GeneratorState& state, ConstValueRangeAccess valueRange);
65 static Expression* createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange);
68 class VariableAccess : public Expression
73Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; … in createNextChild()
106 class FloatLiteral : public Expression
113 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; } in createNextChild()
125 class IntLiteral : public Expression
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
DConditionalExpr.java30 public final class ConditionalExpr extends Expression {
32 private Expression condition;
34 private Expression thenExpr;
36 private Expression elseExpr;
41 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
47 …ine, int beginColumn, int endLine, int endColumn, Expression condition, Expression thenExpr, Expre… in ConditionalExpr()
64 public Expression getCondition() { in getCondition()
68 public Expression getElseExpr() { in getElseExpr()
72 public Expression getThenExpr() { in getThenExpr()
76 public void setCondition(Expression condition) { in setCondition()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
DConditionalExpr.java31 public final class ConditionalExpr extends Expression {
33 private Expression condition;
35 private Expression thenExpr;
37 private Expression elseExpr;
42 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
48 …public ConditionalExpr(Range range, Expression condition, Expression thenExpr, Expression elseExpr… in ConditionalExpr()
65 public Expression getCondition() { in getCondition()
69 public Expression getElseExpr() { in getElseExpr()
73 public Expression getThenExpr() { in getThenExpr()
77 public ConditionalExpr setCondition(Expression condition) { in setCondition()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h61 class Expression {
68 Expression(ExpressionType ET = ET_Base, unsigned O = ~2U)
70 Expression(const Expression &) = delete;
71 Expression &operator=(const Expression &) = delete;
72 virtual ~Expression();
77 bool operator!=(const Expression &Other) const { return !(*this == Other); }
78 bool operator==(const Expression &Other) const {
101 virtual bool equals(const Expression &Other) const { return true; } in equals()
105 virtual bool exactlyEquals(const Expression &Other) const { in exactlyEquals()
132 inline raw_ostream &operator<<(raw_ostream &OS, const Expression &E) {
[all …]
/external/v8/src/torque/
Dast.h129 struct Expression : AstNode { struct
130 Expression(Kind kind, SourcePosition pos) : AstNode(kind, pos) {} in Expression() argument
131 DEFINE_AST_NODE_INNER_BOILERPLATE(Expression)
134 struct LocationExpression : Expression {
135 LocationExpression(Kind kind, SourcePosition pos) : Expression(kind, pos) {} in LocationExpression()
221 struct CallExpression : Expression {
225 std::vector<Expression*> arguments, in CallExpression()
227 : Expression(kKind, pos), in CallExpression()
234 std::vector<Expression*> arguments;
238 struct StructExpression : Expression {
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DForStmt.java24 import com.github.javaparser.ast.expr.Expression;
35 private List<Expression> init;
37 private Expression compare;
39 private List<Expression> update;
46 public ForStmt(final List<Expression> init, final Expression compare, in ForStmt()
47 final List<Expression> update, final Statement body) { in ForStmt()
56 final List<Expression> init, final Expression compare, in ForStmt()
57 final List<Expression> update, final Statement body) { in ForStmt()
79 public Expression getCompare() { in getCompare()
83 public List<Expression> getInit() { in getInit()
[all …]
DAssertStmt.java24 import com.github.javaparser.ast.expr.Expression;
33 private Expression check;
35 private Expression msg;
40 public AssertStmt(final Expression check) { in AssertStmt()
44 public AssertStmt(final Expression check, final Expression msg) { in AssertStmt()
50 final Expression check, final Expression msg) { in AssertStmt()
66 public Expression getCheck() { in getCheck()
70 public Expression getMessage() { in getMessage()
74 public void setCheck(final Expression check) { in setCheck()
79 public void setMessage(final Expression msg) { in setMessage()
/external/v8/src/parsing/
Dparser.h86 Parameter(const AstRawString* name, Expression* pattern, in Parameter()
87 Expression* initializer, int position, in Parameter()
96 Expression* pattern;
97 Expression* initializer;
122 typedef v8::internal::Expression* Expression;
128 typedef ZonePtrList<v8::internal::Expression>* ExpressionList;
291 Expression* RewriteReturn(Expression* return_value, int pos);
320 Expression* value,
333 V8_INLINE Expression* RewriteClassLiteral(Scope* block_scope,
351 Expression* RewriteDestructuringAssignment(Assignment* assignment);
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DForStmt.java25 import com.github.javaparser.ast.expr.Expression;
39 private List<Expression> init;
41 private Expression compare;
43 private List<Expression> update;
50 public ForStmt(final List<Expression> init, final Expression compare, in ForStmt()
51 final List<Expression> update, final Statement body) { in ForStmt()
59 final List<Expression> init, final Expression compare, in ForStmt()
60 final List<Expression> update, final Statement body) { in ForStmt()
83 public Expression getCompare() { in getCompare()
87 public List<Expression> getInit() { in getInit()
[all …]
DAssertStmt.java25 import com.github.javaparser.ast.expr.Expression;
34 private Expression check;
36 private Expression msg;
41 public AssertStmt(final Expression check) { in AssertStmt()
45 public AssertStmt(final Expression check, final Expression msg) { in AssertStmt()
50 public AssertStmt(final Range range, final Expression check, final Expression msg) { in AssertStmt()
66 public Expression getCheck() { in getCheck()
70 public Expression getMessage() { in getMessage()
74 public AssertStmt setCheck(final Expression check) { in setCheck()
80 public AssertStmt setMessage(final Expression msg) { in setMessage()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
DConditionalExpr.java44 public final class ConditionalExpr extends Expression implements NodeWithCondition<ConditionalExpr>…
46 private Expression condition;
48 private Expression thenExpr;
50 private Expression elseExpr;
57 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
65 …public ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expressio… in ConditionalExpr()
86 public Expression getCondition() { in getCondition()
91 public Expression getElseExpr() { in getElseExpr()
96 public Expression getThenExpr() { in getThenExpr()
101 public ConditionalExpr setCondition(final Expression condition) { in setCondition()
[all …]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
DTensorExecutor.h26 template<typename Expression, typename Device, bool Vectorizable>
30 typedef typename Expression::Index Index;
32 static inline void run(const Expression& expr, const Device& device = Device())
34 TensorEvaluator<Expression, Device> evaluator(expr, device);
48 template<typename Expression>
49 class TensorExecutor<Expression, DefaultDevice, true>
52 typedef typename Expression::Index Index;
54 static inline void run(const Expression& expr, const DefaultDevice& device = DefaultDevice())
56 TensorEvaluator<Expression, DefaultDevice> evaluator(expr, device);
61 …const int PacketSize = unpacket_traits<typename TensorEvaluator<Expression, DefaultDevice>::Packet…
[all …]
/external/skqp/src/sksl/ir/
DSkSLConstructor.h27 struct Constructor : public Expression {
28 Constructor(int offset, const Type& type, std::vector<std::unique_ptr<Expression>> arguments) in Constructor()
32 std::unique_ptr<Expression> constantPropagate(const IRGenerator& irGenerator, in constantPropagate()
34 if (fArguments.size() == 1 && fArguments[0]->fKind == Expression::kIntLiteral_Kind) { in constantPropagate()
39 return std::unique_ptr<Expression>(new FloatLiteral(irGenerator.fContext, in constantPropagate()
46 return std::unique_ptr<Expression>(new IntLiteral(fOffset, in constantPropagate()
63 std::unique_ptr<Expression> clone() const override { in clone()
64 std::vector<std::unique_ptr<Expression>> cloned; in clone()
68 return std::unique_ptr<Expression>(new Constructor(fOffset, fType, std::move(cloned))); in clone()
92 bool compareConstant(const Context& context, const Expression& other) const override { in compareConstant()
[all …]

12345678910>>...31