HomeSort by relevance Sort by last modified time
    Searched defs:constant (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/emma/core/java12/com/vladium/jcd/cls/constant/
CONSTANT_literal_info.java 9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
ICONSTANTVisitor.java 9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx);
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx);
25 Object visit (CONSTANT_Methodref_info constant, Object ctx);
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx);
28 Object visit (CONSTANT_Double_info constant, Object ctx);
29 Object visit (CONSTANT_Float_info constant, Object ctx);
30 Object visit (CONSTANT_Integer_info constant, Object ctx);
31 Object visit (CONSTANT_Long_info constant, Object ctx)
    [all...]
CONSTANT_ref_info.java 9 package com.vladium.jcd.cls.constant;
18 * Abstract base for all CONSTANT_XXXref_info structures. They all have a constant
22 * The value of the class_index item must be a valid index into the constant pool
23 * table. The constant pool entry at that index must be a {@link CONSTANT_Class_info}
CONSTANT_Class_info.java 9 package com.vladium.jcd.cls.constant;
21 * The value of the name_index item must be a valid index into the constant pool
22 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
50 * Returns the JVM class name within the constant pool context of 'cls'
53 * @param cls class that contains this constant
CONSTANT_Double_info.java 9 package com.vladium.jcd.cls.constant;
CONSTANT_Fieldref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_Float_info.java 9 package com.vladium.jcd.cls.constant;
22 * the float constant in IEEE 754 floating-point "single format" bit layout.
CONSTANT_Integer_info.java 9 package com.vladium.jcd.cls.constant;
22 * the int constant. The bytes of the value are stored in big-endian (high byte
CONSTANT_InterfaceMethodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_Long_info.java 9 package com.vladium.jcd.cls.constant;
22 * together contain the value of the long constant
CONSTANT_Methodref_info.java 9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
CONSTANT_NameAndType_info.java 9 package com.vladium.jcd.cls.constant;
22 * The value of the name_index item must be a valid index into the constant pool
23 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
27 * The value of the descriptor_index item must be a valid index into the constant
28 * pool table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
CONSTANT_String_info.java 9 package com.vladium.jcd.cls.constant;
18 * The CONSTANT_String_info structure is used to represent constant objects of
21 * The value of the string_index item must be a valid index into the constant pool
22 * table. The constant pool entry at that index must be a {@link CONSTANT_Utf8_info}
CONSTANT_Utf8_info.java 9 package com.vladium.jcd.cls.constant;
18 * The CONSTANT_Utf8_info structure is used to represent constant string values.<P>
  /external/skia/src/animator/
SkDisplayNumber.cpp 43 SkScalar constant; local
46 constant = SK_ScalarMax;
49 constant = SK_ScalarMin;
52 constant = -SK_ScalarInfinity;
55 constant = SK_ScalarNaN;
58 constant = SK_ScalarInfinity;
64 value->fOperand.fScalar = constant;
  /external/proguard/src/proguard/classfile/constant/
Constant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
32 public abstract class Constant implements VisitorAccepter
46 * Returns the constant pool info tag that specifies the entry type.
FieldrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a field reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
InterfaceMethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a interface method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
MethodrefConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a method reference constant in the constant pool.
43 * @param u2classIndex the index of the class in the constant pool.
44 * @param u2nameAndTypeIndex the index of the name and type entry in the constant pool.
60 // Implementations for Constant.
ClassConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a class constant in the constant pool.
32 public class ClassConstant extends Constant
62 * @param u2nameIndex the index of the name in the constant pool.
82 // Implementations for Constant.
DoubleConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
31 public class DoubleConstant extends Constant
71 // Implementations for Constant.
  /external/proguard/src/proguard/classfile/constant/visitor/
AllConstantVisitor.java 21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
ExceptClassConstantFilter.java 21 package proguard.classfile.constant.visitor;
28 import proguard.classfile.constant.ClassConstant;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
  /external/proguard/src/proguard/obfuscate/
NameAndTypeShrinker.java 24 import proguard.classfile.constant.Constant;
30 * This ClassVisitor removes NameAndType constant pool entries
47 // Shift the used constant pool entries together, filling out the
54 // Remap all constant pool references.
69 * from the given constant pool.
72 private int shrinkConstantPool(Constant[] constantPool, int length)
84 // Shift the used constant pool entries together.
89 Constant constant = constantPool[index] local
    [all...]
Utf8Shrinker.java 24 import proguard.classfile.constant.Constant;
30 * This ClassVisitor removes UTF-8 constant pool entries that are not marked
47 // Shift the used constant pool entries together, filling out the
53 // Remap all constant pool references.
68 * from the given constant pool.
71 private int shrinkConstantPool(Constant[] constantPool, int length)
82 // Shift the used constant pool entries together.
87 Constant constant = constantPool[index] local
    [all...]

Completed in 197 milliseconds

1 2 3 4