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

/external/webkit/Source/WebCore/xml/
H A DXPathExpressionNode.cpp38 EvaluationContext& Expression::evaluationContext()
44 Expression::Expression() function in class:WebCore::XPath::Expression
51 Expression::~Expression()
H A DXPathExpressionNode.h58 class Expression : public ParseNode { class in namespace:WebCore::XPath
59 WTF_MAKE_NONCOPYABLE(Expression); WTF_MAKE_FAST_ALLOCATED;
63 Expression();
64 virtual ~Expression();
68 void addSubExpression(Expression* expr)
87 Expression* subExpr(unsigned i) { return m_subExpressions[i]; }
88 const Expression* subExpr(unsigned i) const { return m_subExpressions[i]; }
91 Vector<Expression*> m_subExpressions;
/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/AST/
H A DTemplateBase.h63 Expression, enumerator in enum:clang::TemplateArgument::ArgKind
167 TemplateArgument(Expr *E) : Kind(Expression) {
272 if (Kind != Expression)
321 Expr *Expression; member in union:clang::TemplateArgumentLocInfo::__anon3314
338 TemplateArgumentLocInfo(Expr *E) : Expression(E) {}
355 return Expression;
393 assert(Argument.getKind() == TemplateArgument::Expression);
431 assert(Argument.getKind() == TemplateArgument::Expression);
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1857 if (const Expr* Expression = Node.getIdx())
1858 return InnerMatcher.matches(*Expression, Finder, Builder);
1874 if (const Expr* Expression = Node.getBase())
1875 return InnerMatcher.matches(*Expression, Finder, Builder);
2056 Expr *Expression = Node.getTrueExpr(); local
2057 return (Expression != NULL &&
2058 InnerMatcher.matches(*Expression, Finder, Builder));
2069 Expr *Expression = Node.getFalseExpr(); local
2070 return (Expression != NULL &&
2071 InnerMatcher.matches(*Expression, Finde
[all...]
/external/v8/src/
H A Dpreparser.h224 class Expression;
263 friend class Expression;
273 class Expression { class in class:v8::preparser::PreParser
275 static Expression Default() {
276 return Expression(kUnknownExpression);
279 static Expression FromIdentifier(Identifier id) {
280 return Expression(kIdentifierFlag | (id.type_ << kIdentifierShift));
283 static Expression StringLiteral() {
284 return Expression(kUnknownStringLiteral);
287 static Expression UseStrictStringLitera
384 explicit Expression(int expression_code) : code_(expression_code) { } function in class:v8::preparser::PreParser::Expression
[all...]
H A Dast.h128 class Expression;
224 virtual Expression* AsExpression() { return NULL; }
296 class Expression: public AstNode { class in namespace:v8::internal
315 virtual Expression* AsExpression() { return this; }
361 explicit Expression(Isolate* isolate) function in class:v8::internal::Expression
715 void Initialize(Expression* cond, Statement* body) {
720 Expression* cond() const { return cond_; }
744 Expression* cond_;
755 void Initialize(Expression* cond, Statement* body) {
760 Expression* con
[all...]
/external/webkit/Source/JavaScriptCore/parser/
H A DSyntaxChecker.h79 typedef ExpressionType Expression; typedef in class:JSC::SyntaxChecker
H A DASTBuilder.h93 typedef ExpressionNode* Expression; typedef in class:JSC::ASTBuilder
/external/v8/tools/
H A Dtest.py762 class Expression(object): class in inherits:object
766 class Constant(Expression):
775 class Variable(Expression):
788 class Outcome(Expression):
850 class Operation(Expression):
1046 """Parses a logical expression into an Expression object"""
/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 ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/llvm/lib/Transforms/Scalar/
H A DGVN.cpp76 struct Expression { struct in namespace:__anon9681
81 Expression(uint32_t o = ~2U) : opcode(o) { } function in struct:__anon9681::Expression
83 bool operator==(const Expression &other) const {
95 friend hash_code hash_value(const Expression &Value) {
104 DenseMap<Expression, uint32_t> expressionNumbering;
111 Expression create_expression(Instruction* I);
112 Expression create_cmp_expression(unsigned Opcode,
115 Expression create_extractvalue_expression(ExtractValueInst* EI);
136 template <> struct DenseMapInfo<Expression> {
137 static inline Expression getEmptyKe
[all...]
/external/clang/lib/CodeGen/
H A DCGObjC.cpp557 Expression enumerator in enum:__anon3597::PropertyImplStrategy::StrategyKind
623 Kind = Expression;
644 Kind = Expression;
651 Kind = Expression;
661 Kind = Expression;
889 case PropertyImplStrategy::Expression:
1170 case PropertyImplStrategy::Expression:

Completed in 1776 milliseconds