Searched defs:UnaryOperation (Results 1 - 3 of 3) sorted by relevance

/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 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/chromium_org/v8/src/
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)

Completed in 218 milliseconds