Home
last modified time | relevance | path

Searched refs:shiftLeftOf (Results 1 – 8 of 8) sorted by relevance

/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java153 public abstract IntegerValue shiftLeftOf(IntegerValue other); in shiftLeftOf() method in IntegerValue
169 public abstract LongValue shiftLeftOf(LongValue other); in shiftLeftOf() method in IntegerValue
357 public IntegerValue shiftLeftOf(UnknownIntegerValue other) in shiftLeftOf() method in IntegerValue
359 return shiftLeftOf((IntegerValue)other); in shiftLeftOf()
382 public LongValue shiftLeftOf(UnknownLongValue other) in shiftLeftOf() method in IntegerValue
384 return shiftLeftOf((LongValue)other); in shiftLeftOf()
601 public IntegerValue shiftLeftOf(SpecificIntegerValue other) in shiftLeftOf() method in IntegerValue
603 return shiftLeftOf((IntegerValue)other); in shiftLeftOf()
626 public LongValue shiftLeftOf(SpecificLongValue other) in shiftLeftOf() method in IntegerValue
628 return shiftLeftOf((LongValue)other); in shiftLeftOf()
[all …]
DSpecificIntegerValue.java121 return other.shiftLeftOf(this); in shiftLeft()
124 public IntegerValue shiftLeftOf(IntegerValue other) in shiftLeftOf() method in SpecificIntegerValue
149 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() method in SpecificIntegerValue
266 public IntegerValue shiftLeftOf(SpecificIntegerValue other) in shiftLeftOf() method in SpecificIntegerValue
281 public LongValue shiftLeftOf(SpecificLongValue other) in shiftLeftOf() method in SpecificIntegerValue
DParticularIntegerValue.java153 return other.shiftLeftOf(this); in shiftLeft()
156 public IntegerValue shiftLeftOf(IntegerValue other) in shiftLeftOf() method in ParticularIntegerValue
181 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() method in ParticularIntegerValue
294 public IntegerValue shiftLeftOf(ParticularIntegerValue other) in shiftLeftOf() method in ParticularIntegerValue
309 public LongValue shiftLeftOf(ParticularLongValue other) in shiftLeftOf() method in ParticularIntegerValue
DUnknownIntegerValue.java126 public IntegerValue shiftLeftOf(IntegerValue other) in shiftLeftOf() method in UnknownIntegerValue
151 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() method in UnknownIntegerValue
DSpecificLongValue.java106 return other.shiftLeftOf(this); in shiftLeft()
DParticularLongValue.java126 return other.shiftLeftOf(this); in shiftLeft()
DLongValue.java152 return other.shiftLeftOf(this); in shiftLeft()
/external/proguard/src/proguard/evaluation/
DProcessor.java376 stack.push(stack.ipop().shiftLeftOf(stack.ipop())); in visitSimpleInstruction()
380 stack.push(stack.ipop().shiftLeftOf(stack.lpop())); in visitSimpleInstruction()