/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}
|
/external/skia/src/animator/ |
SkDisplayNumber.cpp | 35 SkScalar constant; local 38 constant = SK_ScalarMax; 41 constant = SK_ScalarMin; 44 constant = -SK_ScalarInfinity; 47 constant = SK_ScalarNaN; 50 constant = SK_ScalarInfinity; 56 value->fOperand.fScalar = constant;
|
/external/clang/test/Misc/ |
ast-dump-templates.cpp | 7 int constant; member in struct:foo
|
/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.
|
/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...] |
/external/webkit/Source/JavaScriptCore/dfg/ |
DFGByteCodeParser.cpp | 77 // Is this a constant? 79 unsigned constant = operand - FirstConstantRegisterIndex; local 80 ASSERT(constant < m_constants.size()); 81 return getJSConstant(constant); 280 // Used in implementing get, above, where the operand is a constant. 281 NodeIndex getInt32Constant(int32_t value, unsigned constant) 283 NodeIndex index = m_constants[constant].asInt32; 286 NodeIndex resultIndex = addToGraph(Int32Constant, OpInfo(constant)); 288 m_constants[constant].asInt32 = resultIndex; 291 NodeIndex getDoubleConstant(double value, unsigned constant) [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
FieldId.java | 36 final CstFieldRef constant; field in class:FieldId 46 this.constant = new CstFieldRef(declaringType.constant, nat);
|