HomeSort by relevance Sort by last modified time
    Searched refs:referenceValue (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/proguard/src/proguard/optimize/evaluation/
SimpleEnumUseChecker.java 158 partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] in more general array ["+
159 partialEvaluator.getStackBefore(offset).getTop(2).referenceValue().getType()+"]");
178 partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as more general type");
195 partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as monitor");
241 System.out.println("SimpleEnumUseChecker: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"] calls ["+partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue().getType()+"."+invokedMethodName+"]");
282 partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+
304 partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] as ["+
332 System.out.println("SimpleEnumUseChecker: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(0).referenceValue().getType()+"] to plain type");
337 System.out.println("SimpleEnumUseChecker: ["+clazz.getName()+"."+method.getName(clazz)+method.getDescriptor(clazz)+"] compares ["+partialEvaluator.getStackBefore(offset).getTop(1).referenceValue().getType()+"] to plain type");
394 ReferenceValue poppedValue
    [all...]
SimpleEnumArrayPropagator.java 69 array.referenceValue().arrayLength(
SimpleEnumUseSimplifier.java 505 ReferenceValue referenceValue =
506 partialEvaluator.getStackAfter(offset).getTop(0).referenceValue();
508 Clazz referencedClass = referenceValue.getReferencedClass();
511 !ClassUtil.isInternalArrayType(referenceValue.getType());
531 ReferenceValue referenceValue =
532 partialEvaluator.getStackBefore(offset).getTop(stackEntryIndex).referenceValue();
534 return isSimpleEnum(referenceValue.getReferencedClass()) &&
535 !ClassUtil.isInternalArrayType(referenceValue.getType())
    [all...]
EvaluationSimplifier.java     [all...]
EvaluationShrinker.java     [all...]
  /external/proguard/src/proguard/evaluation/value/
Value.java 93 * Returns this Value as a ReferenceValue.
95 public ReferenceValue referenceValue()
ReferenceValue.java 30 public abstract class ReferenceValue extends Category1Value
59 * Returns a generalization of this ReferenceValue that may be null,
62 public abstract ReferenceValue generalizeMayBeNull(boolean mayBeNull);
118 public abstract ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory);
133 * Returns the generalization of this ReferenceValue and the given other
134 * ReferenceValue.
136 public abstract ReferenceValue generalize(ReferenceValue other);
140 * Returns whether this ReferenceValue is equal to the given other
141 * ReferenceValue
    [all...]
TypedReferenceValue.java 30 * This ReferenceValue represents a partially evaluated reference value.
37 public class TypedReferenceValue extends ReferenceValue
60 // Implementations for ReferenceValue.
74 // Implementations of unary methods of ReferenceValue.
178 public ReferenceValue generalizeMayBeNull(boolean mayBeNull)
186 public ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
193 true).referenceValue();
197 // Implementations of binary methods of ReferenceValue.
199 public ReferenceValue generalize(ReferenceValue other
    [all...]
DetailedArrayReferenceValue.java 79 // Implementations for ReferenceValue.
117 public ReferenceValue referenceArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
121 value.referenceValue() :
171 // Implementations of binary methods of ReferenceValue.
173 public ReferenceValue generalize(ReferenceValue other)
179 public int equal(ReferenceValue other)
185 // // Implementations of binary ReferenceValue methods with
188 // public ReferenceValue generalize(IdentifiedReferenceValue other)
200 // // Implementations of binary ReferenceValue methods wit
    [all...]
  /external/proguard/src/proguard/optimize/
MemberDescriptorSpecializer.java 76 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass();
116 Clazz referencedClass = parameterValue.referenceValue().getReferencedClass();
  /external/deqp/framework/opengl/
gluShaderLibrary.hpp 84 int referenceValue;
88 , referenceValue (0)
94 , referenceValue (referenceValue_)
gluShaderLibrary.cpp 301 static CaseRequirement createLimitRequirement (deUint32 enumName, int referenceValue)
305 req.requiredCap = RequiredCapability(enumName, referenceValue);
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 429 ReferenceValue referenceValue = value.referenceValue();
430 if (referenceValue.isNull() == Value.ALWAYS)
475 return VerificationTypeFactory.createObjectType(createClassConstant(programClass, referenceValue));
487 ReferenceValue referenceValue)
489 return new ConstantPoolEditor(programClass).addClassConstant(referenceValue.getType(),
490 referenceValue.getReferencedClass());
  /external/proguard/src/proguard/evaluation/
Processor.java 124 ReferenceValue arrayReference = stack.apop();
131 ReferenceValue arrayReference = stack.apop();
138 ReferenceValue arrayReference = stack.apop();
145 ReferenceValue arrayReference = stack.apop();
152 ReferenceValue arrayReference = stack.apop();
163 ReferenceValue arrayReference = stack.apop();
171 ReferenceValue arrayReference = stack.apop();
179 ReferenceValue arrayReference = stack.apop();
187 ReferenceValue arrayReference = stack.apop();
195 ReferenceValue arrayReference = stack.apop()
    [all...]
Variables.java 259 * Loads the ReferenceValue from the variable with the given index.
261 public ReferenceValue aload(int index)
263 return load(index).referenceValue();
Stack.java 326 * Pops the top ReferenceValue from the stack.
328 public ReferenceValue apop()
330 return pop().referenceValue();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParserTest.java 248 String referenceValue = map.get(name);
249 assertNotNull(referenceValue);
250 assertEquals(referenceValue, value);
  /external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
vktSparseResourcesImageSparseResidency.cpp 681 const tcu::UVec4 referenceValue = tcu::UVec4(offsetX % 127u, offsetY % 127u, offsetZ % 127u, 1u);
684 if (memcmp(&outputValue, &referenceValue, sizeof(deUint32) * getNumUsedChannels(m_format)))
699 const tcu::UVec4 referenceValue = tcu::UVec4(0u, 0u, 0u, 0u);
702 if (memcmp(&outputValue, &referenceValue, sizeof(deUint32) * getNumUsedChannels(m_format)))
721 const tcu::UVec4 referenceValue = tcu::UVec4(offsetX % 127u, offsetY % 127u, offsetZ % 127u, 1u);
724 if (memcmp(&outputValue, &referenceValue, sizeof(deUint32) * getNumUsedChannels(m_format)))
    [all...]
  /external/deqp/modules/gles2/functional/
es2fIntegerStateQueryTests.cpp     [all...]
es2fFloatStateQueryTests.cpp 56 const GLuint64 referenceValue = (GLint64)((f * double(0xFFFFFFFFULL) - 1) / 2);
57 return referenceValue;
    [all...]
  /external/deqp/modules/gles3/functional/
es3fIntegerStateQueryTests.cpp     [all...]
es3fFloatStateQueryTests.cpp 56 const GLuint64 referenceValue = (GLint64)(f * 2147483647.0);
57 return referenceValue;
    [all...]
  /external/deqp/modules/gles31/functional/
es31fTextureBorderClampTests.cpp     [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 380 <K, V> ValueReference<K, V> referenceValue(
395 <K, V> ValueReference<K, V> referenceValue(
411 <K, V> ValueReference<K, V> referenceValue(
428 abstract <K, V> ValueReference<K, V> referenceValue(
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 297 <K, V> ValueReference<K, V> referenceValue(
310 <K, V> ValueReference<K, V> referenceValue(
323 <K, V> ValueReference<K, V> referenceValue(
337 abstract <K, V> ValueReference<K, V> referenceValue(
    [all...]

Completed in 320 milliseconds

1 2 3 4 5