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

12 3 4 5 6 7 8 9

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathVariableReference.h 36 class VariableReference FINAL : public Expression {
XPathParser.h 40 class Expression;
70 PassOwnPtrWillBeRawPtr<Expression> parseStatement(const String& statement, PassRefPtrWillBeRawPtr<XPathNSResolver>, ExceptionState&);
76 RawPtrWillBeMember<Expression> m_topExpr;
85 void registerExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*);
86 void deleteExpressionVector(WillBeHeapVector<OwnPtrWillBeMember<Expression> >*);
124 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors;
XPathPredicate.cpp 48 Expression::trace(visitor);
64 Expression::trace(visitor);
78 NumericOp::NumericOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs)
109 EqTestOp::EqTestOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs)
227 LogicalOp::LogicalOp(Opcode opcode, PassOwnPtrWillBeRawPtr<Expression> lhs, PassOwnPtrWillBeRawPtr<Expression> rhs)
277 Predicate::Predicate(PassOwnPtrWillBeRawPtr<Expression> expr)
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 34 import org.apache.xpath.Expression;
67 * An instance of this class compiles an XPath string expression into
68 * a Expression object. This class compiles the string into a sequence
69 * of operation codes (op map) and then builds from that into an Expression
78 * SourceLocator where the expression is located.
82 * @param locator The location object where the expression lives, which
114 public Expression compile(int opPos) throws TransformerException
119 Expression expr = null;
209 private Expression compileOperation(Operation operation, int opPos)
231 private Expression compileUnary(UnaryOperation unary, int opPos
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
FilterExprIteratorSimple.java 26 import org.apache.xpath.Expression;
40 /** The contained expression. Should be non-null.
42 private Expression m_expr;
63 public FilterExprIteratorSimple(Expression expr)
70 * Initialize the context values for this expression
84 * Execute the expression. Meant for reuse by other FilterExpr iterators
91 Expression expr )
104 // so we have to set up the variable context, execute the expression,
208 * Get the inner contained expression of this filter.
210 public Expression getInnerExpression(
    [all...]
FilterExprWalker.java 26 import org.apache.xpath.Expression;
217 /** The contained expression. Should be non-null.
219 private Expression m_expr;
244 * Get the inner contained expression of this filter.
246 public Expression getInnerExpression()
252 * Set the inner contained expression of this filter.
254 public void setInnerExpression(Expression expr)
302 public Expression getExpression()
308 * @see ExpressionOwner#setExpression(Expression)
310 public void setExpression(Expression exp
    [all...]
OneStepIteratorForward.java 25 import org.apache.xpath.Expression;
48 * location path expression for this itterator.
82 * Initialize the context values for this expression
96 // * Return the first node out of the nodeset, if this expression is
97 // * a nodeset expression. This is the default implementation for
158 * @see Expression#deepEquals(Expression)
160 public boolean deepEquals(Expression expr)
WalkingIterator.java 25 import org.apache.xpath.Expression;
45 * this expression.
144 * Initialize the context values for this expression
177 // expression need to reset the variable stack, while iterators
325 public Expression getExpression()
331 * @see ExpressionOwner#setExpression(Expression)
333 public void setExpression(Expression exp)
340 * @see Expression#deepEquals(Expression)
342 public boolean deepEquals(Expression expr
    [all...]
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...]
PredicatedNodeTest.java 26 import org.apache.xpath.Expression;
138 Expression[] newPredicates = new Expression[count];
179 * Get a predicate expression at the given index.
184 * @return A predicate expression.
186 public Expression getPredicate(int index)
341 // System.out.println("Executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
343 // System.out.println("\nBack from executing predicate expression - waiting count: "+m_lpi.getWaitingCount());
525 * Tell if this expression or it's subexpressions can traverse outside
566 * @see Expression#deepEquals(Expression
    [all...]
  /external/chromium_org/v8/src/
ast.h 115 class Expression;
311 class Expression : public AstNode {
340 // True iff the expression is a literal represented as a smi.
343 // True iff the expression is a string literal.
346 // True iff the expression is the null literal.
349 // True if we can prove that the expression is the undefined literal.
352 // Expression type bounds
356 // Whether the expression is parenthesized
383 Expression(Zone* zone, int pos, IdGen* id_gen)
764 void Initialize(Expression* cond, Statement* body)
1031 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
1086 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
1102 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
1749 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
1847 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
1957 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
2049 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
2237 Expression* expression() const { return expression_; } function in class:v8::internal::FINAL
    [all...]
parser.h 184 // "Adds" an empty expression. Does nothing except consume a
289 // Parser state of containing expression, if any.
296 // Index in captures array of first capture in this sub-expression, if any.
297 // Also the capture index of this sub-expression itself, if group_type
363 typedef v8::internal::Expression* Expression;
369 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
400 // Returns true if the expression is of type "this.foo".
401 static bool IsThisProperty(Expression* expression);
    [all...]
ast.cc 36 bool Expression::IsSmiLiteral() const {
41 bool Expression::IsStringLiteral() const {
46 bool Expression::IsNullLiteral() const {
51 bool Expression::IsUndefinedLiteral(Isolate* isolate) const {
64 : Expression(zone, position, id_gen),
77 : Expression(zone, position, id_gen),
101 Assignment::Assignment(Zone* zone, Token::Value op, Expression* target,
102 Expression* value, int pos, IdGen* id_gen)
103 : Expression(zone, pos, id_gen),
176 Literal* key, Expression* value
659 Expression* expression = expressions->at(i); local
    [all...]
prettyprinter.h 48 virtual void PrintArguments(ZoneList<Expression*>* arguments);
82 void PrintArguments(ZoneList<Expression*>* arguments);
typing.h 51 void NarrowType(Expression* e, Bounds b) {
54 void NarrowLowerType(Expression* e, Type* t) {
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
FunctionPattern.java 25 import org.apache.xpath.Expression;
42 * {@link org.apache.xpath.functions.Function expression}.
46 public FunctionPattern(Expression expr, int axis, int predaxis)
67 * Should be a {@link org.apache.xpath.functions.Function expression}.
70 Expression m_functionExpr;
223 public Expression getExpression()
230 * @see ExpressionOwner#setExpression(Expression)
232 public void setExpression(Expression exp)
UnionPattern.java 23 import org.apache.xpath.Expression;
34 public class UnionPattern extends Expression
55 * Tell if this expression or it's subexpressions can traverse outside
156 public Expression getExpression()
163 * @see ExpressionOwner#setExpression(Expression)
165 public void setExpression(Expression exp)
189 * @see Expression#deepEquals(Expression)
191 public boolean deepEquals(Expression expr)
  /external/deqp/framework/randomshaders/
rsgStatement.hpp 68 Expression* m_expression;
85 Expression* m_expression;
127 Expression* m_condition;
136 // choose to generate AssignOp expression.
140 AssignStatement (const Variable* variable, Expression* value);
150 Expression* m_valueExpr;
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.h 149 void VisitForTest(Expression* expr);
150 void VisitForEffect(Expression* expr);
151 void VisitForValue(Expression* expr);
152 void VisitForValueOrNull(Expression* expr);
153 void VisitForValues(ZoneList<Expression*>* exprs);
173 void VisitForInAssignment(Expression* expr, Node* value);
280 // Each expression in the AST is evaluated in a specific context. This context
284 bool IsEffect() const { return kind_ == Expression::kEffect; }
285 bool IsValue() const { return kind_ == Expression::kValue; }
286 bool IsTest() const { return kind_ == Expression::kTest;
    [all...]
  /frameworks/base/tools/aidl/
AST.cpp 37 WriteArgumentList(FILE* to, const vector<Expression*>& arguments)
95 Expression::~Expression()
177 FieldVariable::FieldVariable(Expression* o, const string& n)
238 StatementBlock::Add(Expression* expression)
240 this->statements.push_back(new ExpressionStatement(expression));
243 ExpressionStatement::ExpressionStatement(Expression* e)
244 :expression(e)
255 this->expression->Write(to)
350 Expression* expression = (Expression*)va_arg(args, void*); local
413 Expression* expression = (Expression*)va_arg(args, void*); local
    [all...]
Type.h 64 virtual void WriteToRpcData(StatementBlock* addTo, Expression* k, Variable* v,
66 virtual void CreateFromRpcData(StatementBlock* addTo, Expression* k, Variable* v,
71 Expression* BuildWriteToParcelFlags(int flags);
117 virtual void WriteToRpcData(StatementBlock* addTo, Expression* k, Variable* v,
119 virtual void CreateFromRpcData(StatementBlock* addTo, Expression* k, Variable* v,
154 virtual void WriteToRpcData(StatementBlock* addTo, Expression* k, Variable* v,
156 virtual void CreateFromRpcData(StatementBlock* addTo, Expression* k, Variable* v,
179 virtual void WriteToRpcData(StatementBlock* addTo, Expression* k, Variable* v,
181 virtual void CreateFromRpcData(StatementBlock* addTo, Expression* k, Variable* v,
207 virtual void WriteToRpcData(StatementBlock* addTo, Expression* k, Variable* v
    [all...]
  /external/eigen/Eigen/src/Core/
Ref.h 22 * \brief A matrix or vector expression mapping an existing expressions
33 * A Ref<> object can represent either a const expression or a l-value:
43 * By default, a Ref<VectorXf> can reference any dense vector expression of float having a contiguous memory layout.
44 * Likewise, a Ref<MatrixXf> can reference any column major dense matrix expression of float whose column's elements are contiguously stored with
48 * In the const case, if the input expression does not match the above requirement, then it is evaluated into a temporary before being passed to the function.
57 * foo2(2*a); // The expression is evaluated into a temporary
160 template<typename Expression>
161 void construct(Expression& expr)
176 if(Expression::IsVectorAtCompileTime && (!PlainObjectType::IsVectorAtCompileTime) && ((Expression::Flags&RowMajorBit)!=(PlainObjectType::Flags&RowMajorBit))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
expr.pxi 57 return Expression(__pass_voidp(expr, Expression))
59 cdef class Expression:
65 if isinstance(op, Expression):
66 self.expr = yasm_expr_copy((<Expression>op).expr)
69 self.expr = <yasm_expr *>__get_voidp(op, Expression)
90 if isinstance(value, Expression):
91 return yasm_expr_expr(yasm_expr_copy((<Expression>value).expr))
120 raise ValueError("not a SEG:OFF expression")
127 raise ValueError("not a WRT expression")
    [all...]
  /external/lldb/source/
Makefile 11 DIRS := API Breakpoint Commands Core DataFormatters Expression Host Interpreter Plugins Symbol Target Utility
  /external/lldb/
Android.mk 18 source/Expression \

Completed in 978 milliseconds

12 3 4 5 6 7 8 9