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

1 2 3 4 5 6 7 8 9

  /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/chromium_org/third_party/WebKit/Source/core/xml/
XPathExpressionNode.cpp 43 Expression::Expression()
50 Expression::~Expression()
54 void Expression::trace(Visitor* visitor)
XPathFunctions.h 36 class Function : public Expression {
38 void setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
42 Expression* arg(int pos) { return subExpr(pos); }
43 const Expression* arg(int pos) const { return subExpr(pos); }
52 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >&);
XPathPredicate.h 37 class Number FINAL : public Expression {
49 class StringExpression FINAL : public Expression {
61 class Negative FINAL : public Expression {
67 class NumericOp FINAL : public Expression {
72 NumericOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
81 class EqTestOp FINAL : public Expression {
84 EqTestOp(Opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs);
94 class LogicalOp FINAL : public Expression {
    [all...]
XPathExpressionNode.h 59 class Expression : public ParseNode {
60 WTF_MAKE_NONCOPYABLE(Expression); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
62 Expression();
63 virtual ~Expression();
68 void addSubExpression(PassOwnPtrWillBeRawPtr<Expression> expr)
87 Expression* subExpr(unsigned i) { return m_subExpressions[i].get(); }
88 const Expression* subExpr(unsigned i) const { return m_subExpressions[i].get(); }
91 WillBeHeapVector<OwnPtrWillBeMember<Expression> > m_subExpressions;
XPathPath.h 40 class Filter FINAL : public Expression {
42 Filter(PassOwnPtrWillBeRawPtr<Expression>, WillBeHeapVector<OwnPtrWillBeMember<Predicate> >&);
51 OwnPtrWillBeMember<Expression> m_expr;
55 class LocationPath FINAL : public Expression {
74 class Path FINAL : public Expression {
76 Path(Expression*, LocationPath*);
85 OwnPtrWillBeMember<Expression> m_filter;
XPathExpression.h 44 class Expression;
56 static PassRefPtrWillBeRawPtr<XPathExpression> createExpression(const String& expression, PassRefPtrWillBeRawPtr<XPathNSResolver>, ExceptionState&);
64 OwnPtrWillBeMember<XPath::Expression> m_topExpression;
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
test_bytecode.py 2 from yasm import Bytecode, Expression
test_expr.py 2 from yasm import Expression
7 e1 = Expression(operator.add, 1, 2)
8 e2 = Expression('+', 1, 2)
13 e1 = Expression('/', 15, 5)
  /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...]
  /frameworks/base/tools/aidl/
AST.h 42 struct Expression
44 virtual ~Expression();
48 struct LiteralExpression : public Expression
58 struct StringLiteralExpression : public Expression
67 struct Variable : public Expression
83 struct FieldVariable : public Expression
85 Expression* object;
89 FieldVariable(Expression* object, const string& name);
126 void Add(Expression* expression);
131 Expression* expression; member in struct:ExpressionStatement
221 Expression* expression; member in struct:Cast
243 Expression* expression; member in struct:IfStatement
254 Expression* expression; member in struct:ReturnStatement
302 Expression* expression; member in struct: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...]
  /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/apache-xml/src/main/java/org/apache/xpath/objects/
XRTreeFragSelectWrapper.java 26 import org.apache.xpath.Expression;
36 public XRTreeFragSelectWrapper(Expression expr)
53 ((Expression)m_obj).fixupVariables(vars, globalsSize);
61 * @return the result of executing the select expression
69 m_selected = ((Expression)m_obj).execute(xctxt);

Completed in 353 milliseconds

1 2 3 4 5 6 7 8 9