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

1 2 3 45 6 7 8 9

  /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/chromium_org/tools/gn/
parser.h 37 // Alternative to parsing that assumes the input is an expression.
48 // Parses an expression with the given precedence or higher.
117 FRIEND_TEST_ALL_PREFIXES(Parser, Expression);
  /frameworks/compile/mclinker/include/mcld/Script/
ScriptFile.h 40 Expression, // --defsym
  /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
  /external/chromium_org/v8/src/
scopes.h 187 // Set an expression node that will be executed when the scope is
191 void SetIllegalRedeclaration(Expression* expression);
193 // Visit the illegal redeclaration expression. Do not call if the
460 Expression* illegal_redecl_;
prettyprinter.cc 113 Visit(node->expression());
161 Visit(node->expression());
168 Visit(node->expression());
232 // to fix: should use Expression for next
381 Visit(node->expression());
392 Expression* key = node->key();
409 Visit(node->expression());
416 Visit(node->expression());
434 Visit(node->expression());
442 Visit(node->expression());
    [all...]
preparser.h 23 // - Return types: For example, Parser functions return Expression* and
48 // typedef Expression;
65 typedef typename Traits::Type::Expression ExpressionT;
432 return 0; // 0 precedence will terminate binary expression parsing
501 ExpressionT ParseMemberExpressionContinuation(ExpressionT expression,
510 // Checks if the expression is a valid reference expression (e.g., on the
514 ExpressionT expression,
671 // Bits 0 and 1 are used to identify the type of expression:
698 // Any expression for which IsValidArrowParamList() returns tru
2152 ExpressionT expression = local
2214 ExpressionT expression = Traits::EmptyExpression(); local
2262 ExpressionT expression = this->ParseBinaryExpression(4, accept_IN, CHECK_OK); local
2339 ExpressionT expression = ParseUnaryExpression(CHECK_OK); local
2354 ExpressionT expression = this->ParseUnaryExpression(CHECK_OK); local
2377 ExpressionT expression = this->ParseLeftHandSideExpression(CHECK_OK); local
2669 ExpressionT expression = ParseAssignmentExpression(true, CHECK_OK); local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
ScriptScanner.ll 46 %s EXPRESSION
60 case ScriptFile::Expression:
94 <LDSCRIPT,EXPRESSION>"HIDDEN" { return token::HIDDEN; }
95 <LDSCRIPT,EXPRESSION>"PROVIDE" { return token::PROVIDE; }
96 <LDSCRIPT,EXPRESSION>"PROVIDE_HIDDEN" { return token::PROVIDE_HIDDEN; }
104 <EXPRESSION>"ABSOLUTE" { return token::ABSOLUTE; }
105 <EXPRESSION>"ADDR" { return token::ADDR; }
106 <LDSCRIPT,EXPRESSION>"ALIGN" { return token::ALIGN; }
107 <EXPRESSION>"ALIGNOF" { return token::ALIGNOF; }
108 <EXPRESSION>"BLOCK" { return token::BLOCK;
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 151 // Evaluate an expression containing condition register
209 llvm_unreachable("Invalid expression kind!");
297 Expression,
343 case Expression:
367 assert(Kind == Expression && "Invalid access!");
372 assert(Kind == Expression && "Invalid access!");
407 bool isImm() const override { return Kind == Immediate || Kind == Expression; }
412 bool isU16Imm() const { return Kind == Expression ||
414 bool isS16Imm() const { return Kind == Expression ||
416 bool isS16ImmX4() const { return Kind == Expression ||
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.eclipse.equinox.p2.metadata_2.0.0.v20100601.jar 
  /external/chromium_org/v8/src/compiler/
ast-graph-builder.cc 121 static LhsKind DetermineLhsKind(Expression* expr) {
236 Expression::Context kind)
315 void AstGraphBuilder::VisitForValueOrNull(Expression* expr) {
323 void AstGraphBuilder::VisitForValues(ZoneList<Expression*>* exprs) {
330 void AstGraphBuilder::VisitForValue(Expression* expr) {
338 void AstGraphBuilder::VisitForEffect(Expression* expr) {
346 void AstGraphBuilder::VisitForTest(Expression* expr) {
475 VisitForEffect(stmt->expression());
512 VisitForValue(stmt->expression());
520 VisitForValue(stmt->expression());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathFunctions.cpp 294 void Function::setArguments(WillBeHeapVector<OwnPtrWillBeMember<Expression> >& args)
302 WillBeHeapVector<OwnPtrWillBeMember<Expression> >::iterator end = args.end();
303 for (WillBeHeapVector<OwnPtrWillBeMember<Expression> >::iterator it = args.begin(); it != end; ++it)
730 WillBeHeapVector<OwnPtrWillBeMember<Expression> > args;
734 Function* createFunction(const String& name, WillBeHeapVector<OwnPtrWillBeMember<Expression> >& args)
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 522 /// isLoopInvariant - Returns true if Expression is loop invariant
524 bool isLoopInvariant(const SCEV *Expression, const Loop *LoopNest) const;
533 /// have a level <= CommonLevels and are referred to by the SCEV Expression.
534 void collectCommonLoops(const SCEV *Expression,
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
symrec.pxi 203 if not isinstance(expr, Expression):
206 yasm_expr_copy((<Expression>expr).expr), line))
yasm.pyx 31 Expression objects encapsulate complex expressions containing registers,
  /external/clang/lib/Sema/
SemaTemplateDeduction.cpp 139 /// \brief If the given expression is of a form that permits the deduction
143 // If we are within an alias template, the expression may have undergone
199 // If we deduced a constant in one case and either a dependent expression or
202 if (Y.getKind() == TemplateArgument::Expression ||
230 case TemplateArgument::Expression:
231 // If we deduced a dependent expression in one case and either an integral
239 if (Y.getKind() == TemplateArgument::Expression) {
252 // If we deduced a declaration and a dependent expression, keep the
254 if (Y.getKind() == TemplateArgument::Expression)
273 // If we deduced a null pointer and a dependent expression, keep th
    [all...]
  /external/chromium_org/chrome/third_party/chromevox/chromevox/injected/
mathjax_external_util.js 52 * Rewrites an mfenced expression internally in MathJax to a corresponding mrow.
53 * @param {?string} space The separator expression.
54 * @return {string} The new mrow expression as a string.
155 * expression and an id string.
173 * expression and an id string.
190 * expression and an id string.
396 * Converts an expression into MathML string.
399 * @param {string} math The math Expression.
400 * @param {string} typeString Type of the expression to be converted (e.g.,
407 * parsing the particular expression. This depends on the kind of expression w
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.metadata_2.2.0.v20130523-1557.jar 
  /external/clang/lib/AST/
TypeLoc.cpp 236 // typeof unary-expression
368 case TemplateArgument::Expression:
ASTDiagnostic.cpp 362 OS << "lambda expression";
406 /// Policy - Used during expression printing.
444 /// Expression difference, uses Expr
445 Expression,
472 /// FromExpr, ToExpr - The expression arguments.
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ast.py 42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
50 if isinstance(node_or_string, Expression):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ast.py 42 Safely evaluate an expression node or a string containing a Python
43 expression. The string or node provided may only consist of the following
50 if isinstance(node_or_string, Expression):

Completed in 1753 milliseconds

1 2 3 45 6 7 8 9