Home
last modified time | relevance | path

Searched refs:SHIFT_LEFT (Results 1 – 7 of 7) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DSpecificIntegerValue.java253 return new CompositeIntegerValue(this, CompositeIntegerValue.SHIFT_LEFT, other); in shiftLeft()
268 return new CompositeIntegerValue(other, CompositeIntegerValue.SHIFT_LEFT, this); in shiftLeftOf()
283 return new CompositeLongValue(other, CompositeLongValue.SHIFT_LEFT, this); in shiftLeftOf()
DCompositeIntegerValue.java36 public static final byte SHIFT_LEFT = '<'; field in CompositeIntegerValue
DCompositeLongValue.java36 public static final byte SHIFT_LEFT = '<'; field in CompositeLongValue
DSpecificLongValue.java198 return new CompositeLongValue(this, CompositeLongValue.SHIFT_LEFT, other); in shiftLeft()
/external/dexmaker/src/main/java/com/google/dexmaker/
DBinaryOp.java97 SHIFT_LEFT() { in SHIFT_LEFT() enumConstant
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/
DConsoleActivity.java92 private static final int SHIFT_LEFT = 0; field in ConsoleActivity
215 shiftCurrentTerminal(SHIFT_LEFT); in closeBridge()
371 shiftCurrentTerminal(SHIFT_LEFT); in onCreate()
844 if (direction == SHIFT_LEFT) { in shiftCurrentTerminal()
/external/dexmaker/src/test/java/com/google/dexmaker/
DDexMakerTest.java779 Method shiftLeft = binaryOpMethod(int.class, int.class, BinaryOp.SHIFT_LEFT); in testIntBinaryOps()
830 Method shiftLeft = binaryOpMethod(long.class, int.class, BinaryOp.SHIFT_LEFT); in testLongBinaryOps()