HomeSort by relevance Sort by last modified time
    Searched refs:Expression (Results 1 - 25 of 269) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/apache-xml/src/main/java/org/apache/xpath/
ExpressionOwner.java 24 * Classes that implement this interface own an expression, which
30 * Get the raw Expression object that this class wraps.
32 * @return the raw Expression object, which should not normally be null.
34 public Expression getExpression();
37 * Set the raw expression object for this object.
39 * @param exp the raw Expression object, which should not normally be null.
41 public void setExpression(Expression exp);
  /external/v8/src/ast/
ast-expression-visitor.h 18 // VisitExpression on each expression node.
22 AstExpressionVisitor(Isolate* isolate, Expression* root);
23 AstExpressionVisitor(uintptr_t stack_limit, Expression* root);
27 virtual void VisitExpression(Expression* expression) = 0;
34 Expression* root_;
ast-type-bounds.h 5 // A container to associate type bounds with AST Expression nodes.
16 class Expression;
23 Bounds get(Expression* expression) const {
24 ZoneMap<Expression*, Bounds>::const_iterator i =
25 bounds_map_.find(expression);
29 void set(Expression* expression, Bounds bounds) {
30 bounds_map_[expression] = bounds;
34 ZoneMap<Expression*, Bounds> bounds_map_
    [all...]
ast-expression-rewriter.cc 6 #include "src/ast/ast-expression-rewriter.h"
40 ZoneList<Expression*>* expressions) {
44 // undefined expression or literal? Revisit this code if this
47 AST_REWRITE_LIST_ELEMENT(Expression, expressions, i);
86 AST_REWRITE_PROPERTY(Expression, node, expression);
102 AST_REWRITE_PROPERTY(Expression, node, condition);
119 AST_REWRITE_PROPERTY(Expression, node, expression);
124 AST_REWRITE_PROPERTY(Expression, node, expression)
    [all...]
ast.h 107 class Expression;
292 class Expression : public AstNode {
306 // Mark this expression as being in tail position.
309 // True iff the expression is a valid reference expression.
321 // True iff the expression is a class or function expression without
325 // True iff the expression is a literal represented as a smi.
328 // True iff the expression is a string literal.
331 // True iff the expression is the null literal
938 Expression* expression() const { return expression_; } function in class:v8::internal::final
993 Expression* expression() const { return expression_; } function in class:v8::internal::final
1011 Expression* expression() const { return expression_; } function in class:v8::internal::final
1877 Expression* expression() const { return expression_; } function in class:v8::internal::final
2001 Expression* expression() const { return expression_; } function in class:v8::internal::final
2117 Expression* expression() const { return expression_; } function in class:v8::internal::final
2225 Expression* expression() const { return expression_; } function in class:v8::internal::final
2339 Expression* expression() const { return expression_; } function in class:v8::internal::final
2497 Expression* expression() const { return expr_; } function in class:v8::internal::RewritableExpression
2533 Expression* expression() const { return expression_; } function in class:v8::internal::final
    [all...]
  /external/deqp/framework/randomshaders/
rsgExpressionGenerator.hpp 23 * \brief Expression generator.
42 Expression* generate (const ValueRange& valueRange, int initialDepth = 0);
45 void generate (Expression* root);
48 std::vector<Expression*> m_expressionStack;
rsgExpressionGenerator.cpp 21 * \brief Expression generator.
38 Expression* ExpressionGenerator::generate (const ValueRange& valueRange, int initialDepth)
42 Expression* root = Expression::createRandom(m_state, valueRange);
46 // Generate full expression
59 void ExpressionGenerator::generate (Expression* root)
72 Expression* curExpr = m_expressionStack[m_expressionStack.size()-1];
73 Expression* child = curExpr->createNextChild(m_state);
rsgExpression.hpp 50 class Expression
53 virtual ~Expression (void);
56 virtual Expression* createNextChild (GeneratorState& state) = DE_NULL;
62 virtual ExecValueAccess getLValue (void) const { DE_ASSERT(DE_FALSE); throw Exception("Expression::getLValue(): not L-value node"); }
64 static Expression* createRandom (GeneratorState& state, ConstValueRangeAccess valueRange);
65 static Expression* createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange);
68 class VariableAccess : public Expression
73 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
106 class FloatLiteral : public Expression
112 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL;
    [all...]
  /external/v8/src/parsing/
parameter-initializer-rewriter.h 15 Expression* initializer, Scope* old_scope,
parser.h 292 Parameter(const AstRawString* name, Expression* pattern,
293 Expression* initializer, int initializer_end_position,
301 Expression* pattern;
302 Expression* initializer;
335 typedef v8::internal::Expression* Expression;
341 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
361 // Returns true if the expression is of type "this.foo".
362 static bool IsThisProperty(Expression* expression);
    [all...]
  /system/tools/aidl/
ast_java.h 64 struct Expression {
65 virtual ~Expression() = default;
69 struct LiteralExpression : public Expression {
78 struct StringLiteralExpression : public Expression {
86 struct Variable : public Expression {
100 struct FieldVariable : public Expression {
101 Expression* object;
105 FieldVariable(Expression* object, const std::string& name);
138 void Add(Expression* expression);
142 Expression* expression; member in struct:android::aidl::java::ExpressionStatement
225 Expression* expression = nullptr; member in struct:android::aidl::java::Cast
246 Expression* expression = nullptr; member in struct:android::aidl::java::IfStatement
256 Expression* expression; member in struct:android::aidl::java::ReturnStatement
299 Expression* expression; member in struct:android::aidl::java::SwitchStatement
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
UnaryOperation.java 23 import org.apache.xpath.Expression;
32 public abstract class UnaryOperation extends Expression implements ExpressionOwner
38 protected Expression m_right;
56 * Tell if this expression or it's subexpressions can traverse outside
71 * Set the expression operand for the operation.
74 * @param r The expression operand to which the unary operation will be
77 public void setRight(Expression r)
113 /** @return the operand of unary operation, as an Expression.
115 public Expression getOperand(){
134 public Expression getExpression(
    [all...]
Operation.java 23 import org.apache.xpath.Expression;
32 public class Operation extends Expression implements ExpressionOwner
36 /** The left operand expression.
38 protected Expression m_left;
40 /** The right operand expression.
42 protected Expression m_right;
62 * Tell if this expression or it's subexpressions can traverse outside
83 * @param l The left expression operand.
84 * @param r The right expression operand.
86 public void setLeftRight(Expression l, Expression r
    [all...]
VariableSafeAbsRef.java 24 import org.apache.xpath.Expression;
40 * expression with the current context instead.
67 Expression expr = (Expression)xns.getContainedIter();
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
Function2Args.java 24 import org.apache.xpath.Expression;
38 Expression m_arg1;
43 * @return An expression that represents the second argument passed to the
46 public Expression getArg1()
70 * Set an argument expression for a function. This method is called by the
73 * @param arg non-null expression that represents the argument.
78 public void setArg(Expression arg, int argNum)
119 * Tell if this expression or it's subexpressions can traverse outside
135 public Expression getExpression()
142 * @see ExpressionOwner#setExpression(Expression)
    [all...]
Function3Args.java 24 import org.apache.xpath.Expression;
38 Expression m_arg2;
43 * @return An expression that represents the third argument passed to the
46 public Expression getArg2()
69 * Set an argument expression for a function. This method is called by the
72 * @param arg non-null expression that represents the argument.
77 public void setArg(Expression arg, int argNum)
117 * Tell if this expression or it's subexpressions can traverse outside
133 public Expression getExpression()
140 * @see ExpressionOwner#setExpression(Expression)
    [all...]
FunctionOneArg.java 24 import org.apache.xpath.Expression;
38 Expression m_arg0;
43 * @return An expression that represents the first argument passed to the
46 public Expression getArg0()
52 * Set an argument expression for a function. This method is called by the
55 * @param arg non-null expression that represents the argument.
60 public void setArg(Expression arg, int argNum)
98 * Tell if this expression or it's subexpressions can traverse outside
137 public Expression getExpression()
143 * @see ExpressionOwner#setExpression(Expression)
    [all...]
FuncExtFunction.java 26 import org.apache.xpath.Expression;
38 * An object of this class represents an extension call expression. When
39 * the expression executes, it calls ExtensionsTable#extFunction, and then
94 Expression arg = (Expression) m_argVec.elementAt(i);
135 * @return The Expression object at the given index.
137 public Expression getArg(int n) {
139 return (Expression) m_argVec.elementAt(n);
197 Expression arg = (Expression) m_argVec.elementAt(i)
    [all...]
FunctionMultiArgs.java 24 import org.apache.xpath.Expression;
40 Expression[] m_args;
43 * Return an expression array containing arguments at index 3 or greater.
47 public Expression[] getArgs()
53 * Set an argument expression for a function. This method is called by the
56 * @param arg non-null expression that represents the argument.
62 public void setArg(Expression arg, int argNum)
72 m_args = new Expression[1];
79 Expression[] args = new Expression[m_args.length + 1]
    [all...]
Function.java 24 import org.apache.xpath.Expression;
41 public abstract class Function extends Expression
46 * Set an argument expression for a function. This method is called by the
49 * @param arg non-null expression that represents the argument.
55 public void setArg(Expression arg, int argNum)
126 * @see Expression#deepEquals(Expression)
128 public boolean deepEquals(Expression expr)
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprIterator.java 24 import org.apache.xpath.Expression;
32 /** The contained expression. Should be non-null.
34 private Expression m_expr;
55 public FilterExprIterator(Expression expr)
62 * Initialize the context values for this expression
123 * Get the inner contained expression of this filter.
125 public Expression getInnerExpression()
131 * Set the inner contained expression of this filter.
133 public void setInnerExpression(Expression expr)
169 public Expression getExpression(
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
expression.cc 0 // expression.cc -- expressions in linker scripts for gold
47 // When evaluating the value of an expression, we pass in a pointer to
48 // this struct, so that the expression evaluation can find the
51 struct Expression::Expression_eval_info
79 // Evaluate an expression.
82 Expression::eval(const Symbol_table* symtab, const Layout* layout,
89 // Evaluate an expression which may refer to the dot symbol.
92 Expression::eval_with_dot(const Symbol_table* symtab, const Layout* layout,
105 // Evaluate an expression which may or may not refer to the dot
109 Expression::eval_maybe_dot(const Symbol_table* symtab, const Layout* layout
    [all...]
script-sections.h 38 class Expression;
106 add_data(int size, bool is_signed, Expression* val);
110 add_symbol_assignment(const char* name, size_t length, Expression* value,
115 add_dot_assignment(Expression* value);
119 add_assertion(Expression* check, const char* message, size_t messagelen);
123 add_fill(Expression* val);
187 Expression* load_address);
201 // expression refers to an output section which was not actually
213 // Whether we ever saw a SEGMENT_START expression, the presence of which
219 // Set the flag which indicates whether we saw a SEGMENT_START expression
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
XUnresolvedVariableSimple.java 23 import org.apache.xpath.Expression;
31 * Also, it holds an Expression object, instead of an ElemVariable.
55 Expression expr = ((ElemVariable)m_obj).getSelect().getExpression();
  /external/v8/src/
typing-asm.h 136 void VisitExpressionAnnotation(Expression* e, Variable* var, bool is_return);
143 ZoneList<Expression*>* args);
145 Expression* GetReceiverOfPropertyAccess(Expression* expr, const char* name);
146 bool IsMathObject(Expression* expr);
147 bool IsSIMDObject(Expression* expr);
148 bool IsSIMDTypeObject(Expression* expr, const char* name);
149 bool IsStdlibObject(Expression* expr);
165 void SetResult(Expression* expr, Type* type);
166 void IntersectResult(Expression* expr, Type* type)
    [all...]

Completed in 1312 milliseconds

1 2 3 4 5 6 7 8 91011