OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:oprand1
(Results
1 - 4
of
4
) sorted by null
/external/javassist/src/main/javassist/compiler/ast/
Expr.java
43
public static Expr make(int op, ASTree
oprand1
, ASTree oprand2) {
44
return new Expr(op,
oprand1
, new ASTList(oprand2));
47
public static Expr make(int op, ASTree
oprand1
) {
48
return new Expr(op,
oprand1
);
55
public ASTree
oprand1
() { return getLeft(); }
method in class:Expr
/external/javassist/src/main/javassist/compiler/
CodeGen.java
334
atPlusPlus(e.getOperator(), e.
oprand1
(), e, false);
743
ASTree left = expr.
oprand1
();
824
arrayAccess(array.
oprand1
(), array.oprand2());
963
expr.
oprand1
().accept(this);
[
all
...]
TypeChecker.java
214
ASTree left = expr.
oprand1
();
257
atArrayRead(array.
oprand1
(), array.oprand2());
324
ASTree left = expr.
oprand1
();
345
ASTree left = expr.
oprand1
();
514
bexpr.
oprand1
().accept(this);
522
((Expr)expr).
oprand1
().accept(this);
525
bexpr.
oprand1
().accept(this);
539
expr.setLeft(new CastExpr(type2, 0, expr.
oprand1
()));
563
ASTree oprand = expr.
oprand1
();
628
ASTree method = expr.
oprand1
();
[
all
...]
Parser.java
[
all
...]
Completed in 127 milliseconds