Home
last modified time | relevance | path

Searched refs:constantValue (Results 1 – 17 of 17) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
DSyntheticAccessorFSM.java234 long constantValue = 0; in test() local
336 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral(); in test()
344 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral(); in test()
472 … accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister); in test()
478 … accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister); in test()
513 … private static int getIncrementType(int mathOp, int mathType, long constantValue, int putRegister, in getIncrementType() argument
522 if (constantValue == 1) { in getIncrementType()
524 } else if (constantValue == -1) { in getIncrementType()
532 float val = Float.intBitsToFloat((int)constantValue); in getIncrementType()
543 double val = Double.longBitsToDouble(constantValue); in getIncrementType()
/external/smali/dexlib2/src/main/ragel/
DSyntheticAccessorFSM.rl85 long constantValue = 0;
108 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
114 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
181 … accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
185 … accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
210 … private static int getIncrementType(int mathOp, int mathType, long constantValue, int putRegister,
219 if (constantValue == 1) {
221 } else if (constantValue == -1) {
229 float val = Float.intBitsToFloat((int)constantValue);
240 double val = Double.longBitsToDouble(constantValue);
/external/antlr/tool/src/main/java/org/antlr/analysis/
DSemanticContext.java113 protected int constantValue = INVALID_PRED_VALUE; field in SemanticContext.Predicate
115 public Predicate(int constantValue) { in Predicate() argument
117 this.constantValue=constantValue; in Predicate()
134 this.constantValue = p.constantValue; in Predicate()
149 if (this.constantValue != other.constantValue){ in equals()
153 if (this.constantValue != INVALID_PRED_VALUE){ in equals()
162 if (constantValue != INVALID_PRED_VALUE){ in hashCode()
163 return constantValue; in hashCode()
/external/doclava/src/com/google/doclava/
DFieldInfo.java37 boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, in FieldInfo() argument
40 …gePrivate, isPrivate, isFinal, isStatic, isSynthetic, chooseKind(isFinal, isStatic, constantValue), in FieldInfo()
45 mConstantValue = constantValue; in FieldInfo()
58 static String chooseKind(boolean isFinal, boolean isStatic, Object constantValue) in chooseKind() argument
60 return isConstant(isFinal, isStatic, constantValue) ? "constant" : "field"; in chooseKind()
108 static boolean isConstant(boolean isFinal, boolean isStatic, Object constantValue) in isConstant() argument
118 return isFinal && isStatic && (constantValue != null); in isConstant()
133 public Object constantValue() { in constantValue() method in FieldInfo
DAndroidAuxSource.java56 if (String.valueOf(field.constantValue()).equals(expected)) { in classAuxTags()
173 if (String.valueOf(field.constantValue()).equals(expected)) { in auxTags()
205 if (String.valueOf(field.constantValue()).equals(expected)) { in auxTags()
248 if (String.valueOf(field.constantValue()).equals(value)) { in auxTags()
317 candidates.put(String.valueOf(field.constantValue()), field); in auxTags()
322 candidates.put(String.valueOf(field.constantValue()), field); in auxTags()
DInfoBuilder.java165 if (f.constantValue() != null) { in printClassInfo()
166 System.out.println(": " + f.constantValue()); in printClassInfo()
187 if (f.constantValue() != null) { in printClassInfo()
188 System.out.println(": " + f.constantValue()); in printClassInfo()
688 Object constantValue = null; in buildFields() local
748 constantValue = parseExpression(tmp); in buildFields()
759 newType, commentAndPosition.getCommentText(), constantValue, in buildFields()
777 Object constantValue = null; in parseExpression() local
785 return constantValue; in parseExpression()
792 return constantValue; in parseExpression()
[all …]
DStubs.java851 && field.constantValue() == null) { in writeClass()
967 return (field.isFinal() && field.constantValue() != null) in fieldIsInitialized()
1950 val = fi.constantValue();
DConverter.java564 f.constantValue(), Converter.convertSourcePosition(f.position()),
DDoclava.java1844 Object cValue = field.constantValue(); in writeSdkValues()
/external/proguard/src/proguard/evaluation/
DProcessor.java579 stack.push(classConstantValueFactory.constantValue(clazz, constantIndex)); in visitConstantInstruction()
595 … stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue()); in visitConstantInstruction()
600 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction()
614 …castValue.isNull() == Value.NEVER ? constantValueFactory.constantValue(clazz, constantIndex).refe… in visitConstantInstruction()
615 …constantValueFactory.constantValue(clazz, constantIndex).referenceValue().generalize(valueFactory.… in visitConstantInstruction()
621 …ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).reference… in visitConstantInstruction()
641 … stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue()); in visitConstantInstruction()
DConstantValueFactory.java54 public Value constantValue(Clazz clazz, in constantValue() method in ConstantValueFactory
/external/proguard/src/proguard/optimize/info/
DFieldOptimizationInfo.java168 … value = CONSTANT_VALUE_FACTORY.constantValue(clazz, constantValueAttribute.u2constantValueIndex); in visitConstantValueAttribute()
/external/doclava/res/assets/templates-sdk/
Dclass.cs179 <?cs if:subcount(field.constantValue) ?>
181 <?cs if:field.constantValue.isString ?>
182 <?cs var:field.constantValue.str ?>
184 <?cs var:field.constantValue.dec ?>
185 (<?cs var:field.constantValue.hex ?>)
/external/deqp/framework/opengl/
DgluShaderProgram.cpp136 const glw::GLuint* constantIndex, const glw::GLuint* constantValue) in specialize() argument
144 …l.specializeShader(m_shader, entryPoint, numSpecializationConstants, constantIndex, constantValue); in specialize()
DgluShaderProgram.hpp94 const glw::GLuint* constantIndex, const glw::GLuint* constantValue);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Scalar/
DGVNExpression.h591 ConstantExpression(Constant *constantValue) in ConstantExpression() argument
592 : Expression(ET_Constant), ConstantValue(constantValue) {} in ConstantExpression()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dbinner.cpp193 float constantValue = 0.0f; in ProcessAttributes() local
199 constantValue = constTable[backendState.swizzleMap[i].constantSource][comp]; in ProcessAttributes()
202 constantValue = *(float*)&primId; in ProcessAttributes()
209 pAttribStart[comp + v * 4] = constantValue; in ProcessAttributes()