HomeSort by relevance Sort by last modified time
    Searched refs:UnaryOperation (Results 1 - 25 of 46) sorted by null

1 2

  /external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/
AccessorTestGenerator.java 40 private static class UnaryOperation {
42 public UnaryOperation(String name) {
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("postdec"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 29 public class String extends UnaryOperation
Bool.java 30 public class Bool extends UnaryOperation
Neg.java 30 public class Neg extends UnaryOperation
Number.java 30 public class Number extends UnaryOperation
UnaryOperation.java 19 * $Id: UnaryOperation.java 468655 2006-10-28 07:12:06Z minchau $
32 public abstract class UnaryOperation extends Expression implements ExpressionOwner
156 if(!m_right.deepEquals(((UnaryOperation)expr).m_right))
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 29 import org.apache.xpath.operations.UnaryOperation;
123 public boolean visitUnaryOperation(ExpressionOwner owner, UnaryOperation op)
  /external/v8/src/interpreter/
bytecode-generator.h 61 void VisitVoid(UnaryOperation* expr);
62 void VisitTypeOf(UnaryOperation* expr);
63 void VisitNot(UnaryOperation* expr);
64 void VisitDelete(UnaryOperation* expr);
bytecode-generator.cc     [all...]
  /external/v8/src/ast/
ast-expression-visitor.cc 105 void AstExpressionVisitor::VisitUnaryOperation(UnaryOperation* expr) {
ast-numbering.cc 237 void AstNumberingVisitor::VisitUnaryOperation(UnaryOperation* node) {
239 node->set_base_id(ReserveIdRange(UnaryOperation::num_ids()));
ast-literal-reindexer.cc 110 void AstLiteralReindexer::VisitUnaryOperation(UnaryOperation* node) {
ast.cc 617 void UnaryOperation::RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) {
638 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
666 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
    [all...]
ast-expression-rewriter.cc 325 void AstExpressionRewriter::VisitUnaryOperation(UnaryOperation* node) {
prettyprinter.cc 357 void CallPrinter::VisitUnaryOperation(UnaryOperation* node) {
896 void PrettyPrinter::VisitUnaryOperation(UnaryOperation* node) {
    [all...]
ast.h 83 V(UnaryOperation) \
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 426 void VisitDelete(UnaryOperation* expr);
427 void VisitVoid(UnaryOperation* expr);
428 void VisitTypeof(UnaryOperation* expr);
429 void VisitNot(UnaryOperation* expr);
ast-loop-assignment-analyzer.cc 186 void ALAA::VisitUnaryOperation(UnaryOperation* e) { Visit(e->expression()); }
ast-graph-builder.cc     [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 58 import org.apache.xpath.operations.UnaryOperation;
231 private Expression compileUnary(UnaryOperation unary, int opPos)
    [all...]
  /external/v8/src/crankshaft/x87/
lithium-x87.h     [all...]
  /external/v8/src/crankshaft/
hydrogen.h     [all...]
typing.cc 581 void AstTyper::VisitUnaryOperation(UnaryOperation* expr) {
  /external/v8/src/parsing/
pattern-rewriter.cc 784 NOT_A_PATTERN(UnaryOperation)
  /external/v8/src/crankshaft/arm/
lithium-arm.h     [all...]

Completed in 1684 milliseconds

1 2