/external/proguard/src/proguard/optimize/evaluation/ |
D | SimpleEnumUseChecker.java | 158 …partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] in more general ar… in visitSimpleInstruction() 159 … partialEvaluator.getStackBefore(offset).getTop(2).referenceValue().getType()+"]"); in visitSimpleInstruction() 178 …partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as more general ty… in visitSimpleInstruction() 195 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as monitor"); in visitSimpleInstruction() 241 …s ["+partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue().getType()+".… in visitConstantInstruction() 282 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+ in visitConstantInstruction() 304 … partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+ in visitConstantInstruction() 332 …zz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"]… in visitBranchInstruction() 337 …zz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(1).referenceValue().getType()+"]… in visitBranchInstruction() 395 … partialEvaluator.getStackBefore(invocationOffset).getTop(stackEntryIndex).referenceValue(); in visitParameter() [all …]
|
D | SimpleEnumUseSimplifier.java | 505 ReferenceValue referenceValue = in isPushingSimpleEnum() local 506 partialEvaluator.getStackAfter(offset).getTop(0).referenceValue(); in isPushingSimpleEnum() 508 Clazz referencedClass = referenceValue.getReferencedClass(); in isPushingSimpleEnum() 511 !ClassUtil.isInternalArrayType(referenceValue.getType()); in isPushingSimpleEnum() 531 ReferenceValue referenceValue = in isPoppingSimpleEnum() local 532 partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue(); in isPoppingSimpleEnum() 534 return isSimpleEnum(referenceValue.getReferencedClass()) && in isPoppingSimpleEnum() 535 !ClassUtil.isInternalArrayType(referenceValue.getType()); in isPoppingSimpleEnum() 545 ReferenceValue referenceValue = in isPoppingSimpleEnumType() local 546 partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue(); in isPoppingSimpleEnumType() [all …]
|
D | EvaluationSimplifier.java | 881 ReferenceValue referenceValue = in replaceSimpleEnumSwitchInstruction() local 882 partialEvaluator.getStackBefore(producerOffset).getTop(1).referenceValue(); in replaceSimpleEnumSwitchInstruction() 884 if (referenceValue.isParticular()) in replaceSimpleEnumSwitchInstruction() 892 referenceValue); in replaceSimpleEnumSwitchInstruction() 968 ReferenceValue referenceValue = in replaceSimpleEnumSwitchInstruction() local 969 partialEvaluator.getStackBefore(producerOffset).getTop(1).referenceValue(); in replaceSimpleEnumSwitchInstruction() 971 if (referenceValue.isParticular()) in replaceSimpleEnumSwitchInstruction() 979 referenceValue); in replaceSimpleEnumSwitchInstruction()
|
D | SimpleEnumArrayPropagator.java | 69 array.referenceValue().arrayLength( in visitProgramMethod()
|
D | EvaluationShrinker.java | 2092 (valueAfter.referenceValue().isNull() == Value.ALWAYS || in isVariableInitialization() 2093 !valueAfter.referenceValue().getType().equals(valueBefore.referenceValue().getType()))) in isVariableInitialization()
|
/external/proguard/src/proguard/evaluation/ |
D | Processor.java | 548 ReferenceValue referenceValue = stack.apop(); in visitSimpleInstruction() local 549 stack.push(referenceValue.arrayLength(valueFactory)); in visitSimpleInstruction() 595 … stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue()); in visitConstantInstruction() 600 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction() local 602 stack.push(valueFactory.createArrayReferenceValue(referenceValue.internalType(), in visitConstantInstruction() 603 … referenceValue.getReferencedClass(), in visitConstantInstruction() 614 …ull() == Value.NEVER ? constantValueFactory.constantValue(clazz, constantIndex).referenceValue() : in visitConstantInstruction() 615 …constantValueFactory.constantValue(clazz, constantIndex).referenceValue().generalize(valueFactory.… in visitConstantInstruction() 621 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction() local 623 int instanceOf = stack.apop().instanceOf(referenceValue.getType(), in visitConstantInstruction() [all …]
|
D | Variables.java | 263 return load(index).referenceValue(); in aload()
|
D | Stack.java | 330 return pop().referenceValue(); in apop()
|
/external/proguard/src/proguard/preverify/ |
D | CodePreverifier.java | 429 ReferenceValue referenceValue = value.referenceValue(); in correspondingVerificationType() local 430 if (referenceValue.isNull() == Value.ALWAYS) in correspondingVerificationType() 475 …return VerificationTypeFactory.createObjectType(createClassConstant(programClass, referenceValue)); in correspondingVerificationType() 487 ReferenceValue referenceValue) in createClassConstant() argument 489 return new ConstantPoolEditor(programClass).addClassConstant(referenceValue.getType(), in createClassConstant() 490 … referenceValue.getReferencedClass()); in createClassConstant()
|
/external/proguard/src/proguard/evaluation/value/ |
D | TypedReferenceValue.java | 193 true).referenceValue(); in referenceArrayLoad() 459 private static ReferenceValue typedReferenceValue(TypedReferenceValue referenceValue, in typedReferenceValue() argument 462 return referenceValue.getClass() == TypedReferenceValue.class ? in typedReferenceValue() 463 referenceValue.generalizeMayBeNull(mayBeNull) : in typedReferenceValue() 464 new TypedReferenceValue(referenceValue.type, in typedReferenceValue() 465 referenceValue.referencedClass, in typedReferenceValue()
|
D | ReferenceValue.java | 291 public final ReferenceValue referenceValue() in referenceValue() method in ReferenceValue 298 return this.generalize(other.referenceValue()); in generalize()
|
D | Value.java | 95 public ReferenceValue referenceValue() in referenceValue() method in Value
|
D | DetailedArrayReferenceValue.java | 121 value.referenceValue() : in referenceArrayLoad()
|
/external/proguard/src/proguard/optimize/ |
D | MemberDescriptorSpecializer.java | 76 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass(); in visitProgramField() 116 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass(); in visitProgramMethod()
|
/external/deqp/modules/gles2/functional/ |
D | es2fIntegerStateQueryTests.cpp | 1338 const int referenceValue = alignments[ndx]; in test() local 1340 glPixelStorei(m_testTargetName, referenceValue); in test() 1343 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1379 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1382 if (referenceValue == GL_SRC_ALPHA_SATURATE && in test() 1386 SetBlendFunc(referenceValue); in test() 1389 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1477 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1479 SetBlendEquation(referenceValue); in test() 1482 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test()
|
D | es2fFloatStateQueryTests.cpp | 56 const GLuint64 referenceValue = (GLint64)((f * double(0xFFFFFFFFULL) - 1) / 2); in expandGLFloatToInteger() local 57 return referenceValue; in expandGLFloatToInteger()
|
/external/deqp/modules/gles3/functional/ |
D | es3fIntegerStateQueryTests.cpp | 1620 const int referenceValue = rnd.getInt(0, 64000); in test() local 1622 glPixelStorei(m_testTargetName, referenceValue); in test() 1625 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1655 const int referenceValue = alignments[ndx]; in test() local 1657 glPixelStorei(m_testTargetName, referenceValue); in test() 1660 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1696 const GLenum referenceValue = blendFuncValues[ndx]; in test() local 1698 SetBlendFunc(referenceValue); in test() 1701 m_verifier->verifyInteger(m_testCtx, m_testTargetName, referenceValue); in test() 1789 const GLenum referenceValue = blendFuncValues[ndx]; in test() local [all …]
|
D | es3fFloatStateQueryTests.cpp | 56 const GLuint64 referenceValue = (GLint64)(f * 2147483647.0); in expandGLFloatToInteger() local 57 return referenceValue; in expandGLFloatToInteger()
|
/external/deqp/modules/gles31/functional/ |
D | es31fTextureBorderClampTests.cpp | 1127 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsets(samplerParams.sampler, texCoord.x()… in verifyTextureGatherResult() local 1128 …const tcu::Vec4 referencePixel = referenceValue * samplerParams.colorScale + samplerParams.color… in verifyTextureGatherResult() 1132 reference.setPixel(px, py, gls::TextureTestUtil::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherResult() 1193 …const tcu::Vec4 referenceValue = effectiveView.gatherOffsetsCompare(samplerParams.sampler, refZ,… in verifyTextureGatherCmpResult() local 1196 reference.setPixel(px, py, gls::TextureTestUtil::toRGBAMasked(referenceValue, fbColormask)); in verifyTextureGatherCmpResult() 1198 if (tcu::boolAny(tcu::logicalAnd(colorMask, tcu::notEqual(referenceValue, resultValue)))) in verifyTextureGatherCmpResult()
|
/external/guava/guava/src/com/google/common/collect/ |
D | MapMakerInternalMap.java | 297 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 310 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 323 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 337 abstract <K, V> ValueReference<K, V> referenceValue( in referenceValue() method in MapMakerInternalMap.Strength 1847 return valueStrength.referenceValue(segmentFor(hash), entry, value); in newValueReference() 2160 ValueReference<K, V> valueReference = map.valueStrength.referenceValue(this, entry, value); in setValue()
|
/external/guava/guava/src/com/google/common/cache/ |
D | LocalCache.java | 383 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 398 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 414 <K, V> ValueReference<K, V> referenceValue( in referenceValue() method 431 abstract <K, V> ValueReference<K, V> referenceValue( in referenceValue() method in LocalCache.Strength 1833 return valueStrength.referenceValue(segmentFor(hash), entry, checkNotNull(value), weight); in newValueReference() 2164 map.valueStrength.referenceValue(this, entry, value, weight); in setValue()
|
/external/owasp/sanitizer/lib/guava-libraries/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/owasp/sanitizer/distrib/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/vogar/lib/ |
D | guava.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/proguard/lib/ |
D | proguard.jar | META-INF/
META-INF/MANIFEST.MF
proguard/optimize/WriteOnlyFieldFilter.class
WriteOnlyFieldFilter ... |