Searched refs:UnaryOperation (Results 1 - 25 of 31) sorted by relevance

12

/external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
H A DAccessorTestGenerator.java40 private static class UnaryOperation { class in class:AccessorTestGenerator
42 public UnaryOperation(String name) { method in class:AccessorTestGenerator.UnaryOperation
58 public final UnaryOperation[] unaryOperations;
60 public TypeDef(String name, UnaryOperation[] unaryOperations, BinaryOperation[] binaryOperations) {
67 private static final UnaryOperation[] unaryOperations = new UnaryOperation[] {
68 new UnaryOperation("preinc"),
69 new UnaryOperation("postinc"),
70 new UnaryOperation("predec"),
71 new UnaryOperation("postde
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DString.java29 public class String extends UnaryOperation
H A DBool.java30 public class Bool extends UnaryOperation
H A DNeg.java30 public class Neg extends UnaryOperation
H A DNumber.java30 public class Number extends UnaryOperation
H A DUnaryOperation.java19 * $Id: UnaryOperation.java 468655 2006-10-28 07:12:06Z minchau $
32 public abstract class UnaryOperation extends Expression implements ExpressionOwner class in inherits:Expression,ExpressionOwner
156 if(!m_right.deepEquals(((UnaryOperation)expr).m_right))
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java29 import org.apache.xpath.operations.UnaryOperation;
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op)
/external/chromium_org/v8/src/compiler/
H A Dast-graph-builder.h162 void VisitDelete(UnaryOperation* expr);
163 void VisitVoid(UnaryOperation* expr);
164 void VisitTypeof(UnaryOperation* expr);
165 void VisitNot(UnaryOperation* expr);
H A Dast-graph-builder.cc1357 void AstGraphBuilder::VisitUnaryOperation(UnaryOperation* expr) {
1581 void AstGraphBuilder::VisitDelete(UnaryOperation* expr) {
1604 void AstGraphBuilder::VisitVoid(UnaryOperation* expr) {
1611 void AstGraphBuilder::VisitTypeof(UnaryOperation* expr) {
1628 void AstGraphBuilder::VisitNot(UnaryOperation* expr) {
/external/chromium_org/v8/src/
H A Dast.cc418 void UnaryOperation::RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) {
464 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
492 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
1071 REGULAR_NODE(UnaryOperation)
H A Dast.h94 V(UnaryOperation) \
1952 class UnaryOperation FINAL : public Expression {
1954 DECLARE_NODE_TYPE(UnaryOperation)
1966 UnaryOperation(Zone* zone, Token::Value op, Expression* expression, int pos, function in class:v8::internal::FINAL
3413 UnaryOperation* NewUnaryOperation(Token::Value op,
3416 UnaryOperation* node =
3417 new (zone_) UnaryOperation(zone_, op, expression, pos, id_gen_);
3418 VISIT_AND_RETURN(UnaryOperation, node)
H A Dprettyprinter.cc429 void PrettyPrinter::VisitUnaryOperation(UnaryOperation* node) {
1147 void AstPrinter::VisitUnaryOperation(UnaryOperation* node) {
H A Dhydrogen.h2194 void VisitDelete(UnaryOperation* expr);
2195 void VisitVoid(UnaryOperation* expr);
2196 void VisitTypeof(UnaryOperation* expr);
2197 void VisitNot(UnaryOperation* expr);
H A Dtyping.cc561 void AstTyper::VisitUnaryOperation(UnaryOperation* expr) {
H A Dfull-codegen.cc270 void BreakableStatementChecker::VisitUnaryOperation(UnaryOperation* expr) {
H A Dhydrogen.cc9817 void HOptimizedGraphBuilder::VisitUnaryOperation(UnaryOperation* expr) {
9831 void HOptimizedGraphBuilder::VisitDelete(UnaryOperation* expr) {
9869 void HOptimizedGraphBuilder::VisitVoid(UnaryOperation* expr) {
9875 void HOptimizedGraphBuilder::VisitTypeof(UnaryOperation* expr) {
9883 void HOptimizedGraphBuilder::VisitNot(UnaryOperation* expr) {
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java58 import org.apache.xpath.operations.UnaryOperation;
231 private Expression compileUnary(UnaryOperation unary, int opPos)
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.h2127 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2142 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2504 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
/external/chromium_org/v8/src/arm/
H A Dlithium-arm.h2107 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2123 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
H A Dfull-codegen-arm.cc4220 void FullCodeGenerator::VisitUnaryOperation(UnaryOperation* expr) {
4223 Comment cmnt(masm_, "[ UnaryOperation (DELETE)");
4269 Comment cmnt(masm_, "[ UnaryOperation (VOID)");
4276 Comment cmnt(masm_, "[ UnaryOperation (NOT)");
4315 Comment cmnt(masm_, "[ UnaryOperation (TYPEOF)");
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.h2119 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2134 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.h2071 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2087 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.h2055 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2071 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.h2106 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2121 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.h1386 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)
2957 DECLARE_HYDROGEN_ACCESSOR(UnaryOperation)

Completed in 946 milliseconds

12