HomeSort by relevance Sort by last modified time
    Searched full:generalize (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/proguard/src/proguard/evaluation/value/
DoubleValue.java 70 public abstract DoubleValue generalize(DoubleValue other); method in class:DoubleValue
138 public DoubleValue generalize(SpecificDoubleValue other) method in class:DoubleValue
140 return generalize((DoubleValue)other);
241 public DoubleValue generalize(ParticularDoubleValue other) method in class:DoubleValue
243 return generalize((SpecificDoubleValue)other);
350 public final Value generalize(Value other) method in class:DoubleValue
352 return this.generalize(other.doubleValue());
FloatValue.java 70 public abstract FloatValue generalize(FloatValue other); method in class:FloatValue
138 public FloatValue generalize(SpecificFloatValue other) method in class:FloatValue
140 return generalize((FloatValue)other);
241 public FloatValue generalize(ParticularFloatValue other) method in class:FloatValue
243 return generalize((SpecificFloatValue)other);
345 public final Value generalize(Value other) method in class:FloatValue
347 return this.generalize(other.floatValue());
ParticularDoubleValue.java 75 public DoubleValue generalize(DoubleValue other) method in class:ParticularDoubleValue
77 return other.generalize(this);
129 public DoubleValue generalize(ParticularDoubleValue other) method in class:ParticularDoubleValue
ParticularFloatValue.java 75 public FloatValue generalize(FloatValue other) method in class:ParticularFloatValue
77 return other.generalize(this);
129 public FloatValue generalize(ParticularFloatValue other) method in class:ParticularFloatValue
SpecificDoubleValue.java 55 public DoubleValue generalize(DoubleValue other) method in class:SpecificDoubleValue
57 return other.generalize(this);
109 public DoubleValue generalize(SpecificDoubleValue other) method in class:SpecificDoubleValue
SpecificFloatValue.java 55 public FloatValue generalize(FloatValue other) method in class:SpecificFloatValue
57 return other.generalize(this);
109 public FloatValue generalize(SpecificFloatValue other) method in class:SpecificFloatValue
ParticularIntegerValue.java 102 public IntegerValue generalize(IntegerValue other) method in class:ParticularIntegerValue
104 return other.generalize(this);
230 public IntegerValue generalize(ParticularIntegerValue other) method in class:ParticularIntegerValue
232 return generalize((SpecificIntegerValue)other);
ParticularLongValue.java 75 public LongValue generalize(LongValue other) method in class:ParticularLongValue
77 return other.generalize(this);
163 public LongValue generalize(ParticularLongValue other) method in class:ParticularLongValue
165 return generalize((SpecificLongValue)other);
LongValue.java 71 public LongValue generalize(LongValue other) method in class:LongValue
73 return other.generalize(this);
227 public LongValue generalize(SpecificLongValue other) method in class:LongValue
383 public LongValue generalize(ParticularLongValue other) method in class:LongValue
385 return generalize((SpecificLongValue)other);
540 public final Value generalize(Value other) method in class:LongValue
542 return this.generalize(other.longValue());
TopValue.java 44 public final Value generalize(Value other) method in class:TopValue
UnknownDoubleValue.java 55 public DoubleValue generalize(DoubleValue other) method in class:UnknownDoubleValue
UnknownFloatValue.java 55 public FloatValue generalize(FloatValue other) method in class:UnknownFloatValue
InstructionOffsetValue.java 144 public final Value generalize(InstructionOffsetValue other) method in class:InstructionOffsetValue
222 public final Value generalize(Value other) method in class:InstructionOffsetValue
224 return this.generalize(other.instructionOffsetValue());
SpecificIntegerValue.java 70 public IntegerValue generalize(IntegerValue other) method in class:SpecificIntegerValue
72 return other.generalize(this);
198 public IntegerValue generalize(SpecificIntegerValue other) method in class:SpecificIntegerValue
SpecificLongValue.java 55 public LongValue generalize(LongValue other) method in class:SpecificLongValue
57 return other.generalize(this);
143 public LongValue generalize(SpecificLongValue other) method in class:SpecificLongValue
IntegerValue.java 85 public abstract IntegerValue generalize(IntegerValue other); method in class:IntegerValue
255 public IntegerValue generalize(UnknownIntegerValue other) method in class:IntegerValue
257 return generalize((IntegerValue)other);
499 public IntegerValue generalize(SpecificIntegerValue other) method in class:IntegerValue
501 return generalize((IntegerValue)other);
743 public IntegerValue generalize(ParticularIntegerValue other) method in class:IntegerValue
745 return generalize((SpecificIntegerValue)other);
988 public final Value generalize(Value other) method in class:IntegerValue
990 return this.generalize(other.integerValue());
UnknownIntegerValue.java 70 public IntegerValue generalize(IntegerValue other) method in class:UnknownIntegerValue
UnknownLongValue.java 55 public LongValue generalize(LongValue other) method in class:UnknownLongValue
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 655 boolean variablesChanged = variablesBefore[instructionOffset].generalize(variables, true);
656 boolean stackChanged = stacksBefore[instructionOffset].generalize(stack);
677 // Continue, but generalize the current context.
681 variables.generalize(variablesBefore[instructionOffset], false);
682 stack.generalize(stacksBefore[instructionOffset]);
792 variablesAfter[instructionOffset].generalize(variables, true); method
793 stacksAfter[instructionOffset].generalize(stack); method
802 branchTargetValues[instructionOffset].generalize(branchTargets).instructionOffsetValue();
818 branchOriginValues[branchTarget].generalize(instructionOffsetValue).instructionOffsetValue();
918 generalize(subroutinePartialEvaluator, 0, codeAttribute.u4codeLength); method
929 private void generalize(PartialEvaluator other, method in class:PartialEvaluator
965 variablesBefore[offset].generalize(other.variablesBefore[offset], false); method
966 stacksBefore[offset] .generalize(other.stacksBefore[offset]); method
967 variablesAfter[offset] .generalize(other.variablesAfter[offset], false); method
968 stacksAfter[offset] .generalize(other.stacksAfter[offset]); method
    [all...]
  /external/proguard/src/proguard/evaluation/
TracedVariables.java 137 public boolean generalize(TracedVariables other, method in class:TracedVariables
140 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables);
141 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables);
142 /* consumerVariables.generalize(other.consumerVariables)*/
TracedStack.java 138 public boolean generalize(TracedStack other) method in class:TracedStack
141 super.generalize(other) |
142 producerStack.generalize(other.producerStack);
Variables.java 113 public boolean generalize(Variables other, method in class:Variables
131 // outside of their scopes. Don't generalize the variable then,
137 Value newValue = thisValue.generalize(otherValue);
BasicBranchUnit.java 104 traceBranchTargets.generalize(new InstructionOffsetValue(branchTarget)).instructionOffsetValue();
  /external/proguard/src/proguard/optimize/info/
FieldOptimizationInfo.java 91 this.referencedClass.generalize(referencedClass) :
105 this.value.generalize(value) :
MethodOptimizationInfo.java 232 parameters[parameterIndex].generalize(parameter) :
248 this.returnValue.generalize(returnValue) :

Completed in 94 milliseconds

1 2 3