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

1 2 3 4 5 6 7 8 91011

  /dalvik/dexgen/src/com/android/dexgen/rop/
AttConstantValue.java 27 * Attribute class for standard {@code ConstantValue} attributes.
31 public static final String ATTRIBUTE_NAME = "ConstantValue";
34 private final TypedConstant constantValue;
39 * @param constantValue {@code non-null;} the constant value, which must
44 public AttConstantValue(TypedConstant constantValue) {
47 if (!((constantValue instanceof CstString) ||
48 (constantValue instanceof CstInteger) ||
49 (constantValue instanceof CstLong) ||
50 (constantValue instanceof CstFloat) ||
51 (constantValue instanceof CstDouble)))
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
AttConstantValue.java 27 * Attribute class for standard {@code ConstantValue} attributes.
31 public static final String ATTRIBUTE_NAME = "ConstantValue";
34 private final TypedConstant constantValue;
39 * @param constantValue {@code non-null;} the constant value, which must
44 public AttConstantValue(TypedConstant constantValue) {
47 if (!((constantValue instanceof CstString) ||
48 (constantValue instanceof CstInteger) ||
49 (constantValue instanceof CstLong) ||
50 (constantValue instanceof CstFloat) ||
51 (constantValue instanceof CstDouble)))
    [all...]
  /external/smali/dexlib2/src/main/ragel/
SyntheticAccessorFSM.rl 85 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);
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
SyntheticAccessorFSM.java 234 long constantValue = 0;
336 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
344 constantValue = ((WideLiteralInstruction)instructions.get(p)).getWideLiteral();
472 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
478 accessorType = getIncrementType(mathOp, mathType, constantValue, putRegister, returnRegister);
513 private static int getIncrementType(int mathOp, int mathType, long constantValue, int putRegister,
522 if (constantValue == 1) {
524 } else if (constantValue == -1) {
532 float val = Float.intBitsToFloat((int)constantValue);
543 double val = Double.longBitsToDouble(constantValue);
    [all...]
  /tools/metalava/src/main/java/com/android/tools/metalava/model/text/
TextFieldItem.kt 38 private val constantValue: Any?,
70 override fun initialValue(requireConstant: Boolean): Any? = constantValue
  /external/doclava/src/com/google/doclava/
FieldInfo.java 37 boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue,
40 isPackagePrivate, isPrivate, isFinal, isStatic, isSynthetic, chooseKind(isFinal, isStatic, constantValue),
45 mConstantValue = constantValue;
58 static String chooseKind(boolean isFinal, boolean isStatic, Object constantValue)
60 return isConstant(isFinal, isStatic, constantValue) ? "constant" : "field";
108 static boolean isConstant(boolean isFinal, boolean isStatic, Object constantValue)
118 return isFinal && isStatic && (constantValue != null);
133 public Object constantValue() {
427 data.setValue(base + ".constantValue.dec", Doclava.escape(dec));
428 data.setValue(base + ".constantValue.hex", Doclava.escape(hex))
    [all...]
AndroidAuxSource.java 56 if (String.valueOf(field.constantValue()).equals(expected)) {
173 if (String.valueOf(field.constantValue()).equals(expected)) {
205 if (String.valueOf(field.constantValue()).equals(expected)) {
277 candidates.put(String.valueOf(field.constantValue()), field);
282 candidates.put(String.valueOf(field.constantValue()), field);
InfoBuilder.java 165 if (f.constantValue() != null) {
166 System.out.println(": " + f.constantValue());
187 if (f.constantValue() != null) {
188 System.out.println(": " + f.constantValue());
688 Object constantValue = null;
747 // get the constantValue
748 constantValue = parseExpression(tmp);
759 newType, commentAndPosition.getCommentText(), constantValue,
777 Object constantValue = null;
785 return constantValue;
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 113 protected int constantValue = INVALID_PRED_VALUE;
115 public Predicate(int constantValue) {
117 this.constantValue=constantValue;
134 this.constantValue = p.constantValue;
148 if (this.constantValue != other.constantValue){
152 if (this.constantValue != INVALID_PRED_VALUE){
160 if (constantValue != INVALID_PRED_VALUE)
    [all...]
  /external/proguard/src/proguard/evaluation/
ConstantValueFactory.java 54 public Value constantValue(Clazz clazz,
Processor.java 579 stack.push(classConstantValueFactory.constantValue(clazz, constantIndex));
595 stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue());
600 ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).referenceValue();
614 castValue.isNull() == Value.NEVER ? constantValueFactory.constantValue(clazz, constantIndex).referenceValue() :
615 constantValueFactory.constantValue(clazz, constantIndex).referenceValue().generalize(valueFactory.createReferenceValueNull());
621 ReferenceValue referenceValue = constantValueFactory.constantValue(clazz, constantIndex).referenceValue();
641 stack.push(constantValueFactory.constantValue(clazz, constantIndex).referenceValue());
    [all...]
  /external/proguard/src/proguard/optimize/info/
FieldOptimizationInfo.java 168 value = CONSTANT_VALUE_FACTORY.constantValue(clazz, constantValueAttribute.u2constantValueIndex);
  /frameworks/data-binding/compilerCommon/
BindingExpression.g4 34 : ',' 'default' '=' constantValue
37 constantValue
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 357 BindingExpressionParser.ConstantValueContext constantValue = defaults
358 .constantValue();
359 BindingExpressionParser.LiteralContext literal = constantValue.literal();
377 return constantValue.getText();
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 556 Constant *ConstantValue = nullptr;
560 ConstantExpression(Constant *constantValue)
561 : Expression(ET_Constant), ConstantValue(constantValue) {}
569 Constant *getConstantValue() const { return ConstantValue; }
570 void setConstantValue(Constant *V) { ConstantValue = V; }
574 return ConstantValue == OC.ConstantValue;
579 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Transforms/Scalar/
GVNExpression.h 589 Constant *ConstantValue = nullptr;
593 ConstantExpression(Constant *constantValue)
594 : Expression(ET_Constant), ConstantValue(constantValue) {}
602 Constant *getConstantValue() const { return ConstantValue; }
603 void setConstantValue(Constant *V) { ConstantValue = V; }
607 return ConstantValue == OC.ConstantValue;
612 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Transforms/Scalar/
GVNExpression.h 589 Constant *ConstantValue = nullptr;
593 ConstantExpression(Constant *constantValue)
594 : Expression(ET_Constant), ConstantValue(constantValue) {}
602 Constant *getConstantValue() const { return ConstantValue; }
603 void setConstantValue(Constant *V) { ConstantValue = V; }
607 return ConstantValue == OC.ConstantValue;
612 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Transforms/Scalar/
GVNExpression.h 587 Constant *ConstantValue = nullptr;
591 ConstantExpression(Constant *constantValue)
592 : Expression(ET_Constant), ConstantValue(constantValue) {}
600 Constant *getConstantValue() const { return ConstantValue; }
601 void setConstantValue(Constant *V) { ConstantValue = V; }
605 return ConstantValue == OC.ConstantValue;
610 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Transforms/Scalar/
GVNExpression.h 587 Constant *ConstantValue = nullptr;
591 ConstantExpression(Constant *constantValue)
592 : Expression(ET_Constant), ConstantValue(constantValue) {}
600 Constant *getConstantValue() const { return ConstantValue; }
601 void setConstantValue(Constant *V) { ConstantValue = V; }
605 return ConstantValue == OC.ConstantValue;
610 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Transforms/Scalar/
GVNExpression.h 587 Constant *ConstantValue = nullptr;
591 ConstantExpression(Constant *constantValue)
592 : Expression(ET_Constant), ConstantValue(constantValue) {}
600 Constant *getConstantValue() const { return ConstantValue; }
601 void setConstantValue(Constant *V) { ConstantValue = V; }
605 return ConstantValue == OC.ConstantValue;
610 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Transforms/Scalar/
GVNExpression.h 587 Constant *ConstantValue = nullptr;
591 ConstantExpression(Constant *constantValue)
592 : Expression(ET_Constant), ConstantValue(constantValue) {}
600 Constant *getConstantValue() const { return ConstantValue; }
601 void setConstantValue(Constant *V) { ConstantValue = V; }
605 return ConstantValue == OC.ConstantValue;
610 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 556 Constant *ConstantValue = nullptr;
560 ConstantExpression(Constant *constantValue)
561 : Expression(ET_Constant), ConstantValue(constantValue) {}
569 Constant *getConstantValue() const { return ConstantValue; }
570 void setConstantValue(Constant *V) { ConstantValue = V; }
574 return ConstantValue == OC.ConstantValue;
579 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Transforms/Scalar/
GVNExpression.h 589 Constant *ConstantValue = nullptr;
593 ConstantExpression(Constant *constantValue)
594 : Expression(ET_Constant), ConstantValue(constantValue) {}
602 Constant *getConstantValue() const { return ConstantValue; }
603 void setConstantValue(Constant *V) { ConstantValue = V; }
607 return ConstantValue == OC.ConstantValue;
612 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Transforms/Scalar/
GVNExpression.h 589 Constant *ConstantValue = nullptr;
593 ConstantExpression(Constant *constantValue)
594 : Expression(ET_Constant), ConstantValue(constantValue) {}
602 Constant *getConstantValue() const { return ConstantValue; }
603 void setConstantValue(Constant *V) { ConstantValue = V; }
607 return ConstantValue == OC.ConstantValue;
612 ConstantValue->getType(), ConstantValue);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Transforms/Scalar/
GVNExpression.h 587 Constant *ConstantValue = nullptr;
591 ConstantExpression(Constant *constantValue)
592 : Expression(ET_Constant), ConstantValue(constantValue) {}
600 Constant *getConstantValue() const { return ConstantValue; }
601 void setConstantValue(Constant *V) { ConstantValue = V; }
605 return ConstantValue == OC.ConstantValue;
610 ConstantValue->getType(), ConstantValue);
    [all...]

Completed in 846 milliseconds

1 2 3 4 5 6 7 8 91011