HomeSort by relevance Sort by last modified time
    Searched refs:UnaryOperation (Results 1 - 25 of 47) 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 67 void VisitVoid(UnaryOperation* expr);
68 void VisitTypeOf(UnaryOperation* expr);
69 void VisitNot(UnaryOperation* expr);
70 void VisitDelete(UnaryOperation* expr);
bytecode-generator.cc     [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 433 void VisitDelete(UnaryOperation* expr);
434 void VisitVoid(UnaryOperation* expr);
435 void VisitTypeof(UnaryOperation* expr);
436 void VisitNot(UnaryOperation* expr);
ast-loop-assignment-analyzer.cc 184 void ALAA::VisitUnaryOperation(UnaryOperation* e) { Visit(e->expression()); }
  /hardware/libhardware/modules/sensors/dynamic_sensor/HidUtils/test/
TriStateTest.cpp 184 TEST(TriStateTest, UnaryOperation) {
  /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/ast/
ast-numbering.cc 225 void AstNumberingVisitor::VisitUnaryOperation(UnaryOperation* node) {
227 node->set_base_id(ReserveIdRange(UnaryOperation::num_ids()));
ast-expression-rewriter.cc 309 void AstExpressionRewriter::VisitUnaryOperation(UnaryOperation* node) {
ast-literal-reindexer.cc 100 void AstLiteralReindexer::VisitUnaryOperation(UnaryOperation* node) {
ast.cc 694 void UnaryOperation::RecordToBooleanTypeFeedback(TypeFeedbackOracle* oracle) {
731 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
773 UnaryOperation* maybe_unary = expr->AsUnaryOperation();
    [all...]
ast-traversal-visitor.h 412 void AstTraversalVisitor<Subclass>::VisitUnaryOperation(UnaryOperation* expr) {
prettyprinter.cc 319 void CallPrinter::VisitUnaryOperation(UnaryOperation* node) {
1145 void AstPrinter::VisitUnaryOperation(UnaryOperation* node) {
    [all...]
ast.h 96 V(UnaryOperation) \
    [all...]
  /external/v8/src/asmjs/
asm-typer.h 282 AsmType* ValidateUnaryExpression(UnaryOperation* unop);
  /external/v8/src/crankshaft/x87/
lithium-x87.h     [all...]
  /external/v8/src/crankshaft/
hydrogen.h     [all...]
typing.cc 577 void AstTyper::VisitUnaryOperation(UnaryOperation* expr) {
  /external/v8/src/parsing/
pattern-rewriter.cc 690 NOT_A_PATTERN(UnaryOperation)

Completed in 705 milliseconds

1 2