HomeSort by relevance Sort by last modified time
    Searched refs:Expression (Results 76 - 100 of 127) sorted by null

1 2 34 5 6

  /external/webkit/Source/WebCore/xml/
XPathGrammar.y 66 Expression* expr;
68 Vector<Expression*>* argList;
392 $$ = new Vector<Expression*>;
XPathStep.cpp 116 EvaluationContext& evaluationContext = Expression::evaluationContext();
202 // An expression without any prefix shouldn't match no-namespace nodes (because HTML5 says so).
217 EvaluationContext& evaluationContext = Expression::evaluationContext();
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
DescendantIterator.java 28 import org.apache.xpath.Expression;
49 * location path expression for this itterator.
255 * Initialize the context values for this expression
286 * Return the first node out of the nodeset, if this expression is
287 * a nodeset expression. This is the default implementation for
366 * @see Expression#deepEquals(Expression)
368 public boolean deepEquals(Expression expr)
WalkerFactory.java 27 import org.apache.xpath.Expression;
    [all...]
  /external/v8/src/
data-flow.h 356 void MarkIfTrivial(Expression* expr);
358 // Visits an expression saving the accumulator before, clearing
360 void ProcessExpression(Expression* expr);
rewriter.cc 67 Expression* SetResult(Expression* value) {
96 // a variable declaration with initialization expression is 'undefined'
107 node->set_expression(SetResult(node->expression()));
scopes.h 185 // Set an expression node that will be executed when the scope is
189 void SetIllegalRedeclaration(Expression* expression);
191 // Visit the illegal redeclaration expression. Do not call if the
372 Expression* illegal_redecl_;
ast.cc 63 return (expression()->AsAssignment() != NULL &&
64 !expression()->AsAssignment()->is_compound())
65 ? expression()->AsAssignment()
71 return expression()->AsCountOperation();
124 Expression* target,
125 Expression* value,
171 ObjectLiteral::Property::Property(Literal* key, Expression* value) {
499 return expression()->IsInlineable();
511 return expression()->IsInlineable();
537 if (!expression()->IsInlineable()) return false
816 Expression* expression = expressions->at(i); local
    [all...]
type-info.cc 92 bool TypeFeedbackOracle::StoreIsMonomorphic(Expression* expr) {
122 Handle<Map> TypeFeedbackOracle::StoreMonomorphicReceiverType(Expression* expr) {
181 Expression* expr) {
codegen.cc 177 bool CodeGenerator::ShouldGenerateLog(Expression* type) {
v8globals.h 128 class Expression;
data-flow.cc 118 // The lhs must be the same variable as in the init expression.
126 // The count operation updates the same variable as in the init expression.
129 if (update->expression()->AsVariableProxy()->AsVariable() != loop_var) {
171 void AssignedVariablesAnalyzer::MarkIfTrivial(Expression* expr) {
183 void AssignedVariablesAnalyzer::ProcessExpression(Expression* expr) {
197 ProcessExpression(stmt->expression());
225 ProcessExpression(stmt->expression());
231 ProcessExpression(stmt->expression());
450 Visit(expr->expression());
463 Visit(expr->expression());
    [all...]
hydrogen.cc     [all...]
prettyprinter.cc 73 Visit(node->expression());
121 Visit(node->expression());
128 Visit(node->expression());
182 // to fix: should use Expression for next
335 Expression* key = node->key();
352 Visit(node->expression());
359 Visit(node->expression());
374 Visit(node->expression());
382 Visit(node->expression());
408 Visit(node->expression());
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 65 /// as an efficient mechanism to determine the expression-wise equivalence of
68 struct Expression {
73 Expression(uint32_t o = ~2U) : opcode(o) { }
75 bool operator==(const Expression &other) const {
90 DenseMap<Expression, uint32_t> expressionNumbering;
97 Expression create_expression(Instruction* I);
98 Expression create_extractvalue_expression(ExtractValueInst* EI);
117 template <> struct DenseMapInfo<Expression> {
118 static inline Expression getEmptyKey() {
122 static inline Expression getTombstoneKey()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathException.java 40 /** The home of the expression that caused the error.
91 * Get the XSLT ElemVariable that this sub-expression references. In order for
109 * Get the first non-Expression parent of this node.
110 * @return null or first ancestor that is not an Expression.
115 while((null != parent) && (parent instanceof Expression))
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncDocument.java 37 import org.apache.xpath.Expression;
82 Expression arg1Expr = this.getArg1();
132 // the node in the stylesheet that contains the expression that
455 * Tell if the expression is a nodeset expression.
456 * @return true if the expression can be represented as a nodeset.
TemplateList.java 32 import org.apache.xpath.Expression;
101 Expression matchExpr = matchXPath.getExpression();
396 Expression ex = matchPat.getStepPattern();
476 * assumes the current node and current expression node have already been
  /frameworks/base/tools/aidl/
Type.cpp 28 Expression* NULL_VALUE;
29 Expression* THIS_VALUE;
30 Expression* SUPER_VALUE;
31 Expression* TRUE_VALUE;
32 Expression* FALSE_VALUE;
252 Expression*
487 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
510 ifpart->expression = new Comparison(new LiteralExpression("0"), "!=",
803 ifpart->expression = new Comparison(v, "!=", NULL_VALUE);
825 ifpart->expression = new Comparison(new LiteralExpression("0"), "!="
    [all...]
  /external/clang/lib/AST/
TypeLoc.cpp 185 // typeof unary-expression
305 case TemplateArgument::Expression:
  /external/webkit/Source/JavaScriptCore/parser/
SyntaxChecker.h 79 typedef ExpressionType Expression;
  /external/v8/tools/
test.py 730 class Expression(object):
734 class Constant(Expression):
743 class Variable(Expression):
756 class Outcome(Expression):
818 class Operation(Expression):
1008 """Parses a logical expression into an Expression object"""
1011 print "Malformed expression: '%s'" % expr
1016 print "Malformed expression: '%s'" % expr
1019 print "Malformed expression: '%s'" % exp
    [all...]
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 135 /// \brief If the given expression is of a form that permits the deduction
189 // If we deduced a constant in one case and either a dependent expression or
192 if (Y.getKind() == TemplateArgument::Expression ||
220 case TemplateArgument::Expression:
221 // If we deduced a dependent expression in one case and either an integral
229 if (Y.getKind() == TemplateArgument::Expression) {
242 // If we deduced a declaration and a dependent expression, keep the
244 if (Y.getKind() == TemplateArgument::Expression)
311 /// from the given type- or value-dependent expression.
323 "Expression template argument must be type- or value-dependent.")
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 65 /// expression when the method has a related result type.
409 /// Use objc_setProperty for the setter, but use expression
416 /// The 'expression' strategy is to emit normal assignment or
418 Expression
461 // TODO: we could actually use setProperty and an expression for non-atomics.
473 // In ARC, if the property is non-atomic, use expression emission,
477 Kind = Expression;
481 // the property isn't atomic, we can use normal expression
494 // If we're not atomic, just use expression accesses.
496 Kind = Expression;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
FunctionTable.java 23 import org.apache.xpath.Expression;

Completed in 2097 milliseconds

1 2 34 5 6