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

1 2 3 4 5 6 7 8 910

  /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...]
  /external/doclava/src/com/google/doclava/
FieldInfo.java 35 boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue,
38 isPackagePrivate, isPrivate, isFinal, isStatic, isSynthetic, chooseKind(isFinal, isStatic, constantValue),
43 mConstantValue = constantValue;
53 static String chooseKind(boolean isFinal, boolean isStatic, Object constantValue)
55 return isConstant(isFinal, isStatic, constantValue) ? "constant" : "field";
68 static boolean isConstant(boolean isFinal, boolean isStatic, Object constantValue)
78 return isFinal && isStatic && (constantValue != null);
93 public Object constantValue() {
387 data.setValue(base + ".constantValue.dec", Doclava.escape(dec));
388 data.setValue(base + ".constantValue.hex", Doclava.escape(hex))
    [all...]
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...]
AndroidAuxSource.java 55 if (String.valueOf(field.constantValue()).equals(expected)) {
165 if (String.valueOf(field.constantValue()).equals(expected)) {
227 candidates.put(String.valueOf(field.constantValue()), field);
  /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-3957855/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-3960126/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-3977809/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-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-3957855/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-3960126/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-3977809/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-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...]
  /build/make/tools/droiddoc/templates-ndk/
class.cs 531 <?cs if:subcount(field.constantValue) ?>
535 <?cs if:field.constantValue.isString ?>
536 <?cs var:field.constantValue.str ?>
538 <?cs var:field.constantValue.dec ?>
539 (<?cs var:field.constantValue.hex ?>)
  /build/make/tools/droiddoc/templates-sac/
class.cs 512 <?cs if:subcount(field.constantValue) ?>
516 <?cs if:field.constantValue.isString ?>
517 <?cs var:field.constantValue.str ?>
519 <?cs var:field.constantValue.dec ?>
520 (<?cs var:field.constantValue.hex ?>)
  /external/doclava/res/assets/templates/
class.cs 501 <?cs if:subcount(field.constantValue) ?>
505 <?cs if:field.constantValue.isString ?>
506 <?cs var:field.constantValue.str ?>
508 <?cs var:field.constantValue.dec ?>
509 (<?cs var:field.constantValue.hex ?>)
  /external/doclava/res/assets/templates-sdk/
class.cs 148 <?cs if:subcount(field.constantValue) ?>
150 <?cs if:field.constantValue.isString ?>
151 <?cs var:field.constantValue.str ?>
153 <?cs var:field.constantValue.dec ?>
154 (<?cs var:field.constantValue.hex ?>)

Completed in 951 milliseconds

1 2 3 4 5 6 7 8 910