Searched defs:Expression (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/tests/
H A Dtest_bytecode.py2 from yasm import Bytecode, Expression namespace
H A Dtest_expr.py2 from yasm import Expression namespace
7 e1 = Expression(operator.add, 1, 2)
8 e2 = Expression('+', 1, 2)
13 e1 = Expression('/', 15, 5)
H A Dtest_symrec.py2 from yasm import SymbolTable, Expression, YasmError namespace
21 expr = Expression('+', 1, 2)
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathExpressionNode.cpp43 Expression::Expression() function in class:blink::XPath::Expression
50 Expression::~Expression()
54 void Expression::trace(Visitor* visitor)
H A DXPathExpressionNode.h59 class Expression : public ParseNode { class in namespace:blink::XPath
60 WTF_MAKE_NONCOPYABLE(Expression); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
62 Expression();
63 virtual ~Expression();
68 void addSubExpression(PassOwnPtrWillBeRawPtr<Expression> expr)
87 Expression* subExpr(unsigned i) { return m_subExpressions[i].get(); }
88 const Expression* subExpr(unsigned i) const { return m_subExpressions[i].get(); }
91 WillBeHeapVector<OwnPtrWillBeMember<Expression> > m_subExpressions;
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
H A Dexpr.pxi57 return Expression(__pass_voidp(expr, Expression))
59 cdef class Expression: class in inherits:
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))
/external/apache-xml/src/main/java/org/apache/xpath/
H A DExpression.java19 * $Id: Expression.java 468655 2006-10-28 07:12:06Z minchau $
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 class in inherits:java.io.Serializable,ExpressionNode,XPathVisitable
354 public abstract boolean deepEquals(Expression expr);
365 protected final boolean isSameClass(Expression expr)
459 * Get the first non-Expression parent of this node.
460 * @return null or first ancestor that is not an Expression.
465 while((null != parent) && (parent instanceof Expression))
/external/clang/include/clang/Sema/
H A DTemplateDeduction.h53 Expression(nullptr) {}
165 Expr *Expression; member in class:clang::sema::TemplateDeductionInfo
/external/deqp/framework/randomshaders/
H A DrsgExpression.hpp50 class Expression class in namespace:rsg
53 virtual ~Expression (void);
56 virtual Expression* createNextChild (GeneratorState& state) = DE_NULL;
62 virtual ExecValueAccess getLValue (void) const { DE_ASSERT(DE_FALSE); throw Exception("Expression::getLValue(): not L-value node"); }
64 static Expression* createRandom (GeneratorState& state, ConstValueRangeAccess valueRange);
65 static Expression* createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange);
68 class VariableAccess : public Expression
73 Expression* createNextChild (GeneratorState& state) { DE_UNREF(state); return DE_NULL; }
106 class FloatLiteral : public Expression
112 Expression* createNextChil
[all...]
H A DrsgExpression.cpp273 template <class T> Expression* create (GeneratorState& state, ConstValueRangeAccess valueRange) { return new T(state, valueRange); }
278 Expression* (*create) (GeneratorState& state, ConstValueRangeAccess valueRange);
345 Expression::~Expression (void)
349 Expression* Expression::createRandom (GeneratorState& state, ConstValueRangeAccess valueRange)
354 Expression* Expression::createRandomLValue (GeneratorState& state, ConstValueRangeAccess valueRange)
732 for (vector<Expression*>::iterator i = m_inputExpressions.begin(); i != m_inputExpressions.end(); i++)
736 Expression* ConstructorO
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h67 Expression, enumerator in enum:clang::TemplateArgument::ArgKind
192 TypeOrValue.Kind = Expression;
309 assert(getKind() == Expression && "Unexpected kind");
373 Expr *Expression; member in union:clang::TemplateArgumentLocInfo::__anon17532
382 TemplateArgumentLocInfo(Expr *E) : Expression(E) {}
399 return Expression;
437 assert(Argument.getKind() == TemplateArgument::Expression);
475 assert(Argument.getKind() == TemplateArgument::Expression);
/external/chromium_org/v8/src/
H A Dparser.h363 typedef v8::internal::Expression* Expression; typedef in struct:v8::internal::ParserTraits::Type
369 typedef ZoneList<v8::internal::Expression*>* ExpressionList;
401 static bool IsThisProperty(Expression* expression);
403 static bool IsIdentifier(Expression* expression);
409 static const AstRawString* AsIdentifier(Expression* expression) {
427 void PushPropertyName(FuncNameInferrer* fni, Expression* expression);
435 Expression* value = property->value();
445 static void CheckAssigningFunctionLiteralToProperty(Expression* left,
446 Expression* righ
[all...]
H A Dpreparser.h23 // - Return types: For example, Parser functions return Expression* and
48 // typedef Expression;
65 typedef typename Traits::Type::Expression ExpressionT;
1128 typedef PreParserExpression Expression; typedef in struct:v8::internal::PreParserTraits::Type
1412 typedef PreParserExpression Expression; typedef in class:v8::internal::PreParser
1509 Expression ParseConditionalExpression(bool accept_IN, bool* ok);
1510 Expression ParseObjectLiteral(bool* ok);
1511 Expression ParseV8Intrinsic(bool* ok);
1521 Expression ParseFunctionLiteral(
1763 // '(' Expression ')'
[all...]
H A Dast.h115 class Expression;
311 class Expression : public AstNode { class in namespace:v8::internal
352 // Expression type bounds
383 Expression(Zone* zone, int pos, IdGen* id_gen) function in class:v8::internal::Expression
764 void Initialize(Expression* cond, Statement* body) {
769 Expression* cond() const { return cond_; }
784 Expression* cond_;
795 void Initialize(Expression* cond, Statement* body) {
800 Expression* cond() const { return cond_; }
821 Expression* cond
[all...]
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h495 if (Node.getKind() == TemplateArgument::Expression)
2466 if (const Expr* Expression = Node.getIdx())
2467 return InnerMatcher.matches(*Expression, Finder, Builder);
2483 if (const Expr* Expression = Node.getBase())
2484 return InnerMatcher.matches(*Expression, Finder, Builder);
2657 Expr *Expression = Node.getTrueExpr(); local
2658 return (Expression != nullptr &&
2659 InnerMatcher.matches(*Expression, Finder, Builder));
2670 Expr *Expression = Node.getFalseExpr(); local
2671 return (Expression !
[all...]
/external/clang/lib/AST/
H A DASTDiagnostic.cpp444 /// Expression difference, uses Expr
445 Expression, enumerator in enum:__anon17714::TemplateDiff::DiffTree::DiffKind
976 Tree.SetKind(DiffTree::Expression);
1135 case TemplateArgument::Expression:
1159 case TemplateArgument::Expression:
1276 case DiffTree::Expression: {
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp297 Expression, enumerator in enum:__anon26071::PPCOperand::KindTy
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 ||
419 bool isS17Imm() const { return Kind == Expression ||
422 bool isDirectBr() const { return Kind == Expression ||
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.expressions_3.4.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Djavax.servlet.jsp_2.0.0.v200806031607.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE.SF META-INF/ECLIPSE.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata_2.0.0.v20100601.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp761 // Returns true if Expression is loop invariant in LoopNest.
762 bool DependenceAnalysis::isLoopInvariant(const SCEV *Expression, argument
766 return SE->isLoopInvariant(Expression, LoopNest) &&
767 isLoopInvariant(Expression, LoopNest->getParentLoop());
773 // have a level <= CommonLevels and are referred to by the SCEV Expression.
774 void DependenceAnalysis::collectCommonLoops(const SCEV *Expression, argument
779 if (Level <= CommonLevels && !SE->isLoopInvariant(Expression, LoopNest))
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp80 struct Expression { struct in namespace:__anon26280
85 Expression(uint32_t o = ~2U) : opcode(o) { } function in struct:__anon26280::Expression
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> {
141 static inline Expression getEmptyKe
[all...]
/external/clang/lib/CodeGen/
H A DCGObjC.cpp588 Expression enumerator in enum:__anon17841::PropertyImplStrategy::StrategyKind
654 Kind = Expression;
675 Kind = Expression;
682 Kind = Expression;
692 Kind = Expression;
929 case PropertyImplStrategy::Expression:
1214 case PropertyImplStrategy::Expression:
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 2018 milliseconds

12