HomeSort by relevance Sort by last modified time
    Searched defs: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/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/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/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...]
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/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...]
  /dalvik/dx/src/com/android/dx/cf/direct/
StdAttributeFactory.java 124 return constantValue(cf, offset, length, observer);
348 * Parses a {@code ConstantValue} attribute.
350 private Attribute constantValue(DirectClassFile cf, int offset, int length,
  /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();
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
binner.cpp 272 float constantValue = 0.0f;
278 constantValue = constTable[backendState.swizzleMap[i].constantSource][comp];
281 constantValue = *(float*)&primId;
288 pAttribStart[comp + v * 4] = constantValue;
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionParser.java 38 "bindingSyntax", "defaults", "constantValue", "lambdaExpression", "lambdaParameters",
211 public ConstantValueContext constantValue() {
246 constantValue();
287 public final ConstantValueContext constantValue() throws RecognitionException {
    [all...]
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.0/
compilerCommon-1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.0-rc5/
compilerCommon-1.0-rc5.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/1.1/
compilerCommon-1.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0/
compilerCommon-2.0.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-alpha9/
compilerCommon-2.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta2/
compilerCommon-2.0.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta5/
compilerCommon-2.0.0-beta5.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta6/
compilerCommon-2.0.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta7/
compilerCommon-2.0.0-beta7.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-rc3/
compilerCommon-2.0.0-rc3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.1.0/
compilerCommon-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.1.0-alpha3/
compilerCommon-2.1.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.1.0-alpha4/
compilerCommon-2.1.0-alpha4.jar 

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 910