HomeSort by relevance Sort by last modified time
    Searched refs:Expression (Results 126 - 150 of 504) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
StepPattern.java 27 import org.apache.xpath.Expression;
182 * @param expr The relative pattern expression.
198 * @return The relative pattern expression.
207 // * @param predicates List of expression objects.
209 // public void setPredicates(Expression[] predicates)
216 * @return List of expression objects.
218 public Expression[] getPredicates()
227 Expression[] m_predicates;
230 * Tell if this expression or it's subexpressions can traverse outside
253 * Get a predicate expression
    [all...]
  /external/v8/src/parsing/
rewriter.cc 54 Expression* SetResult(Expression* value) {
115 Expression* result_proxy = factory()->NewVariableProxy(result_);
116 Expression* undef = factory()->NewUndefinedLiteral(kNoSourcePosition);
117 Expression* assignment = factory()->NewAssignment(Token::ASSIGN, result_proxy,
146 // a variable declaration with initialization expression is 'undefined'
161 node->set_expression(SetResult(node->expression()));
258 Expression* backup_proxy = factory()->NewVariableProxy(backup);
259 Expression* result_proxy = factory()->NewVariableProxy(result_);
260 Expression* save = factory()->NewAssignment
    [all...]
parameter-initializer-rewriter.cc 20 Rewriter(uintptr_t stack_limit, Expression* initializer, Scope* param_scope)
92 Visit(stmt->expression());
99 void ReparentParameterExpressionScope(uintptr_t stack_limit, Expression* expr,
  /external/skia/src/sksl/
SkSLGLSLCodeGenerator.cpp 82 void GLSLCodeGenerator::writeExpression(const Expression& expr, Precedence parentPrecedence) {
84 case Expression::kBinary_Kind:
87 case Expression::kBoolLiteral_Kind:
90 case Expression::kConstructor_Kind:
93 case Expression::kIntLiteral_Kind:
96 case Expression::kFieldAccess_Kind:
99 case Expression::kFloatLiteral_Kind:
102 case Expression::kFunctionCall_Kind:
105 case Expression::kPrefix_Kind:
108 case Expression::kPostfix_Kind
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 33 import org.apache.xpath.Expression;
83 * The "select" expression.
86 protected Expression m_selectExpression = null;
98 * @param xpath The XPath expression for the "select" attribute.
112 * @return The XPath expression for the "select" attribute.
114 public Expression getSelect()
470 public Expression getExpression()
476 * @see ExpressionOwner#setExpression(Expression)
478 public void setExpression(Expression exp)
ElemValueOf.java 29 import org.apache.xpath.Expression;
52 * The select expression to be executed.
65 * The required select attribute is an expression; this expression
86 * The required select attribute is an expression; this expression
198 * Execute the string expression and copy the text to the
200 * The required select attribute is an expression; this expression
233 Expression expr = m_selectExpression.getExpression()
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_algebraic.py 70 return Expression(val, name_base, varset)
71 elif isinstance(val, Expression):
89 % elif isinstance(val, Expression):
117 Expression=Expression)
192 class Expression(Value):
194 Value.__init__(self, name_base, "expression")
209 return srcs + super(Expression, self).render()
276 32-bit result so it could end up replacing a 64-bit expression with one
278 example, consider this expression
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
nmsupp.h 74 extern LPEXPRESSION WINAPI InitializeExpression(LPEXPRESSION Expression);
76 extern LPEXPRESSION WINAPI AndExpression(LPEXPRESSION Expression,LPPATTERNMATCH Pattern);
77 extern LPEXPRESSION WINAPI OrExpression(LPEXPRESSION Expression,LPPATTERNMATCH Pattern);
  /external/apache-xml/src/main/java/org/apache/xpath/
XPath.java 41 * The XPath class wraps an expression object and provides general services
42 * for execution of that expression.
49 /** The top of the expression tree.
51 private Expression m_mainExp;
66 * Get the raw Expression object that this class wraps.
69 * @return the raw Expression object, which should not normally be null.
71 public Expression getExpression()
92 * Set the raw expression object for this object.
95 * @param exp the raw Expression object, which should not normally be null.
97 public void setExpression(Expression exp
    [all...]
Expression.java 19 * $Id: Expression.java 468655 2006-10-28 07:12:06Z minchau $
37 * This abstract class serves as the base for all expression objects. An
38 * Expression can be executed to return a {@link org.apache.xpath.objects.XObject},
45 public abstract class Expression implements java.io.Serializable, ExpressionNode, XPathVisitable
49 * The location where this expression was built from. Need for diagnostic
56 * Tell if this expression or it's subexpressions can traverse outside
67 // * Set the location where this expression was built from.
70 // * @param locator the location where this expression was built from, may be
79 * Execute an expression in the XPath runtime context, and return the
80 * result of the expression
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionPathIterator.java 26 import org.apache.xpath.Expression;
61 * Initialize the context values for this expression
120 if(expr instanceof Expression)
121 ((Expression)expr).exprSetParent(this);
150 * this expression.
171 * this expression.
303 * this expression.
322 * this expression.
465 * path</a> contained in the union expression.
474 * path</a> contained in the union expression
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
PerformanceLib.h 354 then the source code specified by Expression is included in a module.
355 Otherwise, the source specified by Expression is not included in a module.
357 @param Expression Performance measurement source code to include in a module.
360 #define PERF_CODE(Expression) \
362 Expression \
  /device/linaro/bootloader/edk2/OvmfPkg/Library/XenConsoleSerialPortLib/
XenConsoleSerialPortLib.c 32 #define ASSERT(Expression) \
34 if (!(Expression)) { \
  /external/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
188 /// \brief Construct a template argument that is an expression.
191 /// lists used for dependent types and for expression; it will not
194 TypeOrValue.Kind = Expression;
304 /// \brief Retrieve the template argument as an expression.
306 assert(getKind() == Expression && "Unexpected kind");
382 Expr *Expression;
391 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /external/v8/src/ast/
prettyprinter.h 49 void FindArguments(ZoneList<Expression*>* arguments);
89 void PrintArguments(ZoneList<Expression*>* arguments);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
TemplateBase.h 64 /// The template argument is an expression, and we've not resolved it to one
68 /// __uuidof expression (a Microsoft extension).
69 Expression,
185 /// \brief Construct a template argument that is an expression.
188 /// lists used for dependent types and for expression; it will not
191 TypeOrValue.Kind = Expression;
305 /// \brief Retrieve the template argument as an expression.
307 assert(getKind() == Expression && "Unexpected kind");
383 Expr *Expression;
392 TemplateArgumentLocInfo(Expr *E) : Expression(E) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 24 import org.eclipse.jdt.core.dom.Expression;
102 Expression context = methodHasContextArgument(node);
176 Expression left = assignment.getLeftHandSide();
186 * If the expression is part of a method invocation (aka a function call) or a
333 private Expression findContextFieldOrMethod(StringLiteral node) {
338 private Expression findContextFieldOrMethod(ITypeBinding clazzType) {
339 TreeMap<Integer, Expression> results = new TreeMap<Integer, Expression>();
364 * @param results The map that accumulates the rating=>expression results. The lower
370 private void findContextCandidates(TreeMap<Integer, Expression> results
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
Expression.h 19 Get the expression list count.
21 @param Level Which type this expression belong to. Form,
24 @retval >=0 The expression count
76 Get the expression Buffer pointer.
78 @param Level Which type this expression belong to. Form,
81 @retval The start pointer of the expression buffer or NULL.
105 Push the list of map expression onto the Stack
107 @param Pointer Pointer to the list of map expression to be pushed.
119 Push current expression onto the Stack
121 @param Pointer Pointer to current expression.
    [all...]

Completed in 323 milliseconds

1 2 3 4 56 7 8 91011>>