Searched defs:constant (Results 1 - 25 of 80) sorted by relevance

1234

/external/emma/core/java12/com/vladium/jcd/cls/constant/
H A DICONSTANTVisitor.java9 package com.vladium.jcd.cls.constant;
20 //Object visit (CONSTANT_info constant, Object ctx);
22 Object visit (CONSTANT_Class_info constant, Object ctx); argument
24 Object visit (CONSTANT_InterfaceMethodref_info constant, Object ctx); argument
25 Object visit (CONSTANT_Methodref_info constant, Object ctx); argument
26 Object visit (CONSTANT_Fieldref_info constant, Object ctx); argument
28 Object visit (CONSTANT_Double_info constant, Object ctx); argument
29 Object visit (CONSTANT_Float_info constant, Object ctx); argument
30 Object visit (CONSTANT_Integer_info constant, Object ctx); argument
31 Object visit (CONSTANT_Long_info constant, Objec argument
32 visit(CONSTANT_String_info constant, Object ctx) argument
34 visit(CONSTANT_Utf8_info constant, Object ctx) argument
35 visit(CONSTANT_NameAndType_info constant, Object ctx) argument
[all...]
H A DCONSTANT_literal_info.java9 package com.vladium.jcd.cls.constant;
14 * in the constant pool.
H A DCONSTANT_info.java9 package com.vladium.jcd.cls.constant;
43 * Returns the number of constant pool index slots occupied by this
133 public static String tagToString (final CONSTANT_info constant) argument
135 switch (constant.tag ())
173 default: throw new IllegalStateException ("CONSTANT_info: invalid tag value [" + constant.tag () + ']');
H A DCONSTANT_Fieldref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_InterfaceMethodref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_Methodref_info.java9 package com.vladium.jcd.cls.constant;
17 * This structure is used in the constant pool to represent dynamic references
H A DCONSTANT_ref_info.java9 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}
H A DCONSTANT_Class_info.java9 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
/external/proguard/src/proguard/classfile/constant/visitor/
H A DAllConstantVisitor.java21 package proguard.classfile.constant.visitor;
28 * This ClassVisitor lets a given ConstantVisitor visit all constant pool
H A DExceptClassConstantFilter.java21 package proguard.classfile.constant.visitor;
28 import proguard.classfile.constant.ClassConstant;
29 import proguard.classfile.constant.visitor.ConstantVisitor;
/external/proguard/src/proguard/classfile/visitor/
H A DClassForNameClassVisitor.java24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
31 * constant classes involved in any <code>Class.forName</code> constructs that
58 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
H A DReferencedMemberVisitor.java26 import proguard.classfile.constant.*;
27 import proguard.classfile.constant.visitor.ConstantVisitor;
52 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
/external/skia/src/animator/
H A DSkDisplayNumber.cpp43 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/
H A DClassConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
28 * This Constant represents a class constant in the constant pool.
62 * @param u2nameIndex the index of the name in the constant pool.
H A DConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
46 * Returns the constant pool info tag that specifies the entry type.
H A DDoubleConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a double constant in the constant pool.
H A DFieldrefConstant.java21 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.
H A DFloatConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a float constant in the constant pool.
H A DIntegerConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a integer constant in the constant pool.
H A DInterfaceMethodrefConstant.java21 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.
H A DLongConstant.java21 package proguard.classfile.constant;
24 import proguard.classfile.constant.visitor.ConstantVisitor;
27 * This Constant represents a long constant in the constant pool.
H A DMethodrefConstant.java21 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.
/external/proguard/src/proguard/classfile/util/
H A DStringReferenceInitializer.java24 import proguard.classfile.constant.*;
25 import proguard.classfile.constant.visitor.ConstantVisitor;
29 * it visits. More specifically, it fills out the references of string constant
56 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
/external/proguard/src/proguard/optimize/info/
H A DPackageVisibleMemberInvokingClassMarker.java24 import proguard.classfile.constant.visitor.ConstantVisitor;
25 import proguard.classfile.constant.*;
40 public void visitAnyConstant(Clazz clazz, Constant constant) {} argument
/external/dbus/dbus/
H A Ddbus-string-private.h50 unsigned int constant : 1; /**< String data is not owned by DBusString */ member in struct:__anon1803
88 _dbus_assert (!(real)->constant); \
100 _dbus_assert (!(real)->constant)

Completed in 694 milliseconds

1234