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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/editor/
ConstantPoolEditor.java 24 import proguard.classfile.constant.*;
27 * This class can add constant pool entries to a given class.
49 * Finds or creates a IntegerConstant constant pool entry with the given
51 * @return the constant pool index of the Utf8Constant.
56 Constant[] constantPool = targetClass.constantPool;
61 Constant constant = constantPool[index]; local
63 if (constant != null &&
64 constant.getTag() == ClassConstants.CONSTANT_Integer)
66 IntegerConstant integerConstant = (IntegerConstant)constant;
90 Constant constant = constantPool[index]; local
120 Constant constant = constantPool[index]; local
150 Constant constant = constantPool[index]; local
182 Constant constant = constantPool[index]; local
287 Constant constant = constantPool[index]; local
394 Constant constant = constantPool[index]; local
501 Constant constant = constantPool[index]; local
546 Constant constant = constantPool[index]; local
579 Constant constant = constantPool[index]; local
610 Constant constant = constantPool[index]; local
    [all...]
ConstantPoolSorter.java 24 import proguard.classfile.constant.Constant;
31 * This ClassVisitor sorts the constant pool entries of the program classes
32 * that it visits. The sorting order is based on the types of the constant pool
43 private Constant[] newConstantPool = new Constant[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
54 // Sort the constant pool and set up an index map.
59 newConstantPool = new Constant[constantPoolCount];
66 Constant constant = programClass.constantPool[oldIndex] local
92 Constant constant = comparableConstant.getConstant(); local
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CstInsn.java 21 import com.android.dx.rop.cst.Constant;
24 * Instruction which has a single constant argument in addition
28 /** {@code non-null;} the constant argument for this instruction */
29 private final Constant constant; field in class:CstInsn
32 * {@code >= -1;} the constant pool index for {@link #constant}, or
38 * {@code >= -1;} the constant pool index for the class reference in
39 * {@link #constant} if any, or {@code -1} if not yet set
45 * initially unknown ({@code -1}) as is the constant pool index
    [all...]
  /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...]
  /dalvik/dx/src/com/android/dx/rop/cst/
ConstantPool.java 20 * Interface for constant pools, which are, more or less, just lists of
21 * {@link Constant} objects.
25 * Get the "size" of the constant pool. This corresponds to the
27 * always at least one more than the actual size of the constant pool,
35 * Get the {@code n}th entry in the constant pool, which must
38 * @param n {@code n >= 0, n < size();} the constant pool index
43 public Constant get(int n);
46 * Get the {@code n}th entry in the constant pool, which must
50 * @param n {@code n >= 0, n < size();} the constant pool index
55 public Constant get0Ok(int n)
    [all...]
Constant.java 24 public abstract class Constant
25 implements ToHuman, Comparable<Constant> {
27 * Returns {@code true} if this instance is a category-2 constant,
28 * meaning it takes up two slots in the constant pool, or
36 * Returns the human name for the particular type of constant
48 public final int compareTo(Constant other) {
67 protected abstract int compareTo0(Constant other);
  /external/emma/core/java12/com/vladium/jcd/cls/constant/
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...]
  /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;
  /dalvik/dx/src/com/android/dx/rop/code/
CstInsn.java 19 import com.android.dx.rop.cst.Constant;
22 * Instruction which contains an explicit reference to a constant.
26 /** {@code non-null;} the constant */
27 private final Constant cst;
36 * @param cst {@code non-null;} constant
39 RegisterSpecList sources, Constant cst) {
56 * Gets the constant.
58 * @return {@code non-null;} the constant
60 public Constant getConstant() {
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
BridgeConstants.java 20 * Constant definition class.<br>
24 * <li><code>WS_</code> Workspace path constant. Those are absolute paths,
26 * <li><code>OS_</code> OS path constant. These paths are different depending on the platform.</li>
27 * <li><code>FN_</code> File name constant.</li>
28 * <li><code>FD_</code> Folder name constant.</li>
29 * <li><code>EXT_</code> File extension constant. This does NOT include a dot.</li>
30 * <li><code>DOT_</code> File extension constant. This start with a dot.</li>
31 * <li><code>RE_</code> Regexp constant.</li>
32 * <li><code>NS_</code> Namespace constant.</li>
  /libcore/luni/src/main/java/java/awt/font/
TextAttribute.java 42 /** The Constant serialVersionUID. */
46 /** The Constant attrMap. */
106 /** The Constant JUSTIFICATION_indicates the full requested width. */
110 * The Constant JUSTIFICATION_NONE indicates that line is not
141 /** The Constant POSTURE_REGULAR indicates regular posture. */
144 /** The Constant POSTURE_OBLIQUE indicates italic posture. */
151 * The Constant RUN_DIRECTION_LTR indicates left-to-right run
157 * The Constant RUN_DIRECTION_RTL indicates right-to-left run
168 /** The Constant STRIKETHROUGH_ON indicates a single strikethrough. */
174 /** The Constant SUPERSCRIPT_SUB indicates a standard subscript. *
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
SimpleInstruction.java 29 * or constant pool references.
35 public int constant; field in class:SimpleInstruction
54 * Creates a new SimpleInstruction with the given opcode and constant.
56 public SimpleInstruction(byte opcode, int constant)
59 this.constant = constant;
71 this.constant = simpleInstruction.constant;
78 * Return the embedded constant of the given opcode, or 0 if the opcode
155 opcode = (byte)(InstructionConstants.OP_ICONST_0 + constant);
    [all...]
  /dalvik/dx/tests/004-cp-bottom-up/
info.txt 5 The salient bit of parsing tested here is that the constant pool contains
6 at least one valid entry of each possible constant pool type, and that
  /dalvik/dx/tests/005-cp-top-down/
info.txt 5 The salient bit of parsing tested here is that the constant pool contains
6 at least one valid entry of each possible constant pool type, and that
  /external/proguard/src/proguard/classfile/constant/
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.
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.
FloatConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.
31 public class FloatConstant extends Constant
71 // Implementations for Constant.
IntegerConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a integer constant in the constant pool.
31 public class IntegerConstant extends Constant
71 // Implementations for Constant.
LongConstant.java 21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a long constant in the constant pool.
31 public class LongConstant extends Constant
71 // Implementations for Constant.
  /libcore/luni/src/main/java/java/lang/
EnumConstantNotPresentException.java 20 * Thrown if an {@code enum} constant does not exist for a particular name.
36 * missing constant name.
41 * the missing constant name.
45 super("enum constant " + enumType.getName() + "." + constantName + " is missing");
51 * Gets the enum type for which the constant name is missing.
53 * @return the enum type for which a constant name has not been found.
61 * Gets the name of the missing constant.
63 * @return the name of the constant that has not been found in the enum
  /frameworks/base/media/libeffects/lvm/lib/Common/lib/
CompLim.h 44 LVM_INT16 Norm_Attack; /* Attack time constant of the Normaliser integrator */
45 LVM_INT16 Norm_Decay; /* Decay time constant of the Normaliser integrator */
52 LVM_INT16 Comp_Attack_S; /* Attack time constant of the slow integrator */
53 LVM_INT16 Comp_Decay_S; /* Decay time constant of slow the integrator */
54 LVM_INT16 Comp_Attack_F; /* Attack time constant of fast the integrator */
55 LVM_INT16 Comp_Decay_F; /* Decay time constant of fast the integrator */
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
special_function_util.h 62 /// Constant @f$ \pi @f$.
65 /// Constant @f$ \pi / 2 @f$.
68 /// Constant @f$ \pi / 3 @f$.
71 /// Constant @f$ \pi / 4 @f$.
74 /// Constant @f$ 1 / \pi @f$.
77 /// Constant @f$ 2 / \sqrt(\pi) @f$.
80 /// Constant @f$ \sqrt(2) @f$.
83 /// Constant @f$ \sqrt(3) @f$.
86 /// Constant @f$ \sqrt(\pi/2) @f$.
89 /// Constant @f$ 1 / sqrt(2) @f$
    [all...]

Completed in 605 milliseconds

1 2 3 4 5 6 7 8 91011>>