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

1 2 34 5 6 7 8 9

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
value.pxi 38 elif isinstance(value, Expression):
40 yasm_expr_copy((<Expression>value).expr), sz)
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObject.java 29 import org.apache.xpath.Expression;
48 public class XObject extends Expression implements Serializable, Cloneable
743 * @see Expression#deepEquals(Expression)
745 public boolean deepEquals(Expression expr)
750 // If equals at the expression level calls deepEquals, I think we're
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 29 import org.apache.xpath.Expression;
83 * for each redundent expression, and then rewriting the redundent
84 * expression to be a variable reference.
99 * for each redundent expression, and then rewriting the redundent
100 * expression to be a variable reference.
113 * for each redundent expression, and then rewriting the redundent
114 * expression to be a variable reference.
145 * Eliminate the shared partial paths in the expression list.
280 * Tell what line number belongs to a given expression.
282 protected void diagnoseLineNumber(Expression expr
    [all...]
  /external/chromium_org/v8/src/
typing.cc 146 RECURSE(Visit(stmt->expression()));
186 stmt->expression()->RecordToBooleanTypeFeedback(oracle());
188 RECURSE(Visit(stmt->expression()));
194 RECURSE(stmt->expression());
212 Expression* label = clause->label();
423 ZoneList<Expression*>* values = expr->values();
425 Expression* value = values->at(i);
454 Expression* rhs =
469 RECURSE(Visit(expr->expression()));
510 RECURSE(Visit(expr->expression()));
    [all...]
rewriter.cc 56 Expression* SetResult(Expression* value) {
87 // a variable declaration with initialization expression is 'undefined'
104 if (!is_set_ && !node->expression()->IsThrow()) {
105 node->set_expression(SetResult(node->expression()));
hydrogen.h 654 // environment is the outer environment but the top expression stack
723 // True if index is included in the expression stack part of the environment.
763 bool IsEffect() const { return kind_ == Expression::kEffect; }
764 bool IsValue() const { return kind_ == Expression::kValue; }
765 bool IsTest() const { return kind_ == Expression::kTest; }
795 AstContext(HOptimizedGraphBuilder* owner, Expression::Context kind);
810 Expression::Context kind_;
819 : AstContext(owner, Expression::kEffect) {
836 : AstContext(owner, Expression::kValue), flag_(flag) {
858 Expression* condition
    [all...]
full-codegen.cc 27 void BreakableStatementChecker::Check(Expression* expr) {
83 // Check if expression is breakable.
84 Visit(stmt->expression());
108 // Return is breakable if the expression is.
109 Visit(stmt->expression());
114 Visit(stmt->expression());
119 // Switch statements breakable if the tag expression is.
131 // Mark while statements breakable if the condition expression is.
137 // Mark for statements breakable if the condition expression is.
145 // Mark for in statements breakable if the enumerable expression is
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 77 /// as an efficient mechanism to determine the expression-wise equivalence of
80 struct Expression {
85 Expression(uint32_t o = ~2U) : opcode(o) { }
87 bool operator==(const Expression &other) const {
99 friend hash_code hash_value(const Expression &Value) {
108 DenseMap<Expression, uint32_t> expressionNumbering;
115 Expression create_expression(Instruction* I);
116 Expression create_cmp_expression(unsigned Opcode,
119 Expression create_extractvalue_expression(ExtractValueInst* EI);
140 template <> struct DenseMapInfo<Expression> {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
AddSuppressAnnotation.java 47 import org.eclipse.jdt.core.dom.Expression;
184 Expression existingValue = existing.getValue();
265 Expression value = createLiteral(ast);
271 Expression value = createLiteral(ast);
286 private Expression createLiteral(AST ast) {
287 Expression value;
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
NodeTest.java 25 import org.apache.xpath.Expression;
38 public class NodeTest extends Expression
216 * @see Expression#deepEquals(Expression)
218 public boolean deepEquals(Expression expr)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathGrammar.y 64 blink::XPath::Expression* expr;
66 WillBeHeapVector<OwnPtrWillBeMember<blink::XPath::Expression> >* argList;
390 $$ = new WillBeHeapVector<OwnPtrWillBeMember<Expression> >;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
suffix.hpp 865 # define BOOST_NOEXCEPT_EXPR(Expression) false
869 # define BOOST_NOEXCEPT_EXPR(Expression) noexcept((Expression))
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 482 /// \brief Matches a sugar TemplateArgument that refers to a certain expression.
495 if (Node.getKind() == TemplateArgument::Expression)
672 /// of the sub-expression's evaluation.
760 /// Example matches the implicit this expression in "return i".
839 /// default value of the second parameter in the call expression f(42)
    [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc 637 void FullCodeGenerator::DoTest(Expression* condition,
717 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
970 // Compile the label expression.
    [all...]
  /external/chromium_org/v8/src/x87/
full-codegen-x87.cc 634 void FullCodeGenerator::DoTest(Expression* condition,
714 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
959 // Compile the label expression.
    [all...]
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc 693 void FullCodeGenerator::DoTest(Expression* condition,
775 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
    [all...]
  /external/chromium_org/v8/src/arm64/
full-codegen-arm64.cc 683 void FullCodeGenerator::DoTest(Expression* condition,
767 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
    [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc 681 void FullCodeGenerator::DoTest(Expression* condition,
765 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
    [all...]
  /external/chromium_org/v8/src/mips64/
full-codegen-mips64.cc 677 void FullCodeGenerator::DoTest(Expression* condition,
761 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
    [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc 658 void FullCodeGenerator::DoTest(Expression* condition,
738 void FullCodeGenerator::PrepareForBailoutBeforeSplit(Expression* expr,
    [all...]
  /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)
  /frameworks/base/tools/aidl/
generate_java_rpc.cpp 35 static void generate_write_to_data(Type* t, StatementBlock* addTo, Expression* k, Variable* v,
88 DispatcherClass(const interface_type* iface, Expression* target);
102 Expression* targetExpression;
108 DispatcherClass::DispatcherClass(const interface_type* iface, Expression* target)
159 ifs->expression = new MethodCall(new StringLiteralExpression(method->name.data), "equals",
279 s->expression = new Comparison(this->resultData, "!=", NULL_VALUE);
368 Expression*
606 Expression* k = new StringLiteralExpression(key);
618 generate_write_to_data(Type* t, StatementBlock* addTo, Expression* k, Variable* v, Variable* data)
711 Expression* resultParameter
    [all...]
  /external/deqp/framework/randomshaders/
rsgBuiltinFunctions.hpp 36 class UnaryBuiltinVecFunc : public Expression
42 Expression* createNextChild (GeneratorState& state);
54 Expression* m_child;
85 Expression* UnaryBuiltinVecFunc<GetValueRangeWeight, ComputeValueRange, Evaluate>::createNextChild (GeneratorState& state)
90 m_child = Expression::createRandom(state, m_inValueRange);

Completed in 620 milliseconds

1 2 34 5 6 7 8 9