/external/chromium_org/third_party/android_opengl/ |
README.chromium | 14 - Generalize so that output size is independent of input size.
|
/external/cmockery/cmockery_0_1_2/packages/deb/ |
control | 13 and generalize the process of writing unit tests for C applications.
|
/external/chromium_org/ppapi/proxy/ |
proxy_module.h | 23 // TODO(viettrungluu): Generalize this for use with other plugins if it proves
|
/external/cmockery/cmockery_0_1_2/ |
ChangeLog | 16 A lightweight library to simplify and generalize the process of
|
/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); 345 public final Value generalize(Value other) method in class:DoubleValue 347 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());
|
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
|
IdentifiedReferenceValue.java | 62 public ReferenceValue generalize(ReferenceValue other) method in class:IdentifiedReferenceValue 67 new ReferenceValue(type, referencedClass, mayBeNull).generalize(other);
|
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());
|
/external/proguard/src/proguard/optimize/evaluation/ |
PartialEvaluator.java | 682 boolean variablesChanged = variablesBefore[instructionOffset].generalize(variables, true); 683 boolean stackChanged = stacksBefore[instructionOffset].generalize(stack); 704 // Continue, but generalize the current context. 708 variables.generalize(variablesBefore[instructionOffset], false); 709 stack.generalize(stacksBefore[instructionOffset]); 813 variablesAfter[instructionOffset].generalize(variables, true); method 814 stacksAfter[instructionOffset].generalize(stack); method 823 branchTargetValues[instructionOffset].generalize(branchTargets).instructionOffsetValue(); 929 generalize(subroutinePartialEvaluator, 0, codeAttribute.u4codeLength); method 939 private void generalize(PartialEvaluator other, method in class:PartialEvaluator 974 variablesBefore[offset].generalize(other.variablesBefore[offset], false); method 975 stacksBefore[offset] .generalize(other.stacksBefore[offset]); method 976 variablesAfter[offset] .generalize(other.variablesAfter[offset], false); method 977 stacksAfter[offset] .generalize(other.stacksAfter[offset]); method [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
DrawableImageViewTarget.java | 19 //TODO: Try to generalize this to other sizes/shapes.
|
/external/proguard/src/proguard/evaluation/ |
TracedVariables.java | 115 public boolean generalize(TracedVariables other, method in class:TracedVariables 118 boolean variablesChanged = super.generalize(other, clearConflictingOtherVariables); 119 boolean producersChanged = producerVariables.generalize(other.producerVariables, clearConflictingOtherVariables); 120 /* 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);
|
/external/proguard/src/proguard/optimize/info/ |
FieldOptimizationInfo.java | 121 this.referencedClass.generalize(referencedClass) : 135 this.value.generalize(value) :
|
/external/chromium_org/content/common/ |
one_writer_seqlock.h | 23 // It may make sense to generalize this lock to multiple writers.
|
/external/chromium_org/third_party/libsrtp/srtp/ |
TODO | 54 Improve interface between cipher and rdbx - perhaps generalize rdbx
|
/external/llvm/lib/MC/ |
StringTableBuilder.cpp | 35 // FIXME: Starting with a null byte is ELF specific. Generalize this so we
|
/external/srtp/ |
TODO | 54 Improve interface between cipher and rdbx - perhaps generalize rdbx
|