Searched defs:Constant (Results 1 - 8 of 8) sorted by relevance

/openjdk7/langtools/test/tools/javac/annotations/neg/
H A DConstant.java30 * @compile/fail Constant.java
33 package Constant; package
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/closure/
H A DConstant.java30 public class Constant implements Closure { class in inherits:Closure
33 public Constant( Object value ) method in class:Constant
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DConstant.java29 public class Constant extends ElementWType<Framework> { class in inherits:ElementWType
30 public Constant(final Node node, final Framework parent) { method in class:Constant
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstant.java71 public abstract class Constant implements Cloneable, Node, Serializable { class in inherits:Cloneable,Node,Serializable
73 * `Constant' objects by their type, i.e., via `instanceof'. In some
82 Constant(byte tag) { this.tag = tag; } method in class:Constant
111 public Constant copy() {
113 return (Constant)super.clone();
127 * @return Constant object
129 static final Constant readConstant(DataInputStream file)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DAttribute.java67 public static class Constant extends Attribute { class in class:Attribute
70 public Constant(Type type, Object value) { method in class:Attribute.Constant
275 void visitConstant(Attribute.Constant value);
/openjdk7/langtools/test/tools/javac/types/
H A DTypeHarness.java275 public Type Constant(byte b) { method in class:TypeHarness.Factory
279 public Type Constant(short s) { method in class:TypeHarness.Factory
283 public Type Constant(int i) { method in class:TypeHarness.Factory
287 public Type Constant(long l) { method in class:TypeHarness.Factory
291 public Type Constant(float f) { method in class:TypeHarness.Factory
295 public Type Constant(double d) { method in class:TypeHarness.Factory
299 public Type Constant(char c) { method in class:TypeHarness.Factory
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java375 final Map<Method,Constant> constants = new HashMap<>();
385 //for (Constant c : cp) System.out.println(" # "+c);
397 Constant con = constants.get(conm);
501 Constant con = scanPattern(m, mark);
542 for (Constant e : cf.pool) {
664 private Constant scanPattern(Method m, char patternMark) {
768 Constant con;
829 } else if (typeArg instanceof Constant) {
830 Constant argCon = (Constant) typeAr
1258 public static class Constant<T> implements Chunk { class in class:Indify
1262 public Constant(int index, byte tag, T item) { method in class:Indify.Constant
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcompile.hpp155 // Constant entry of the constant table.
156 class Constant { class in class:Compile
165 Constant() : _type(T_ILLEGAL), _offset(-1), _freq(0.0f), _can_be_reused(true) { _value.l = 0; } function in class:Compile::Constant
166 Constant(BasicType type, jvalue value, float freq = 0.0f, bool can_be_reused = true) : function in class:Compile::Constant
174 bool operator==(const Constant& other);
192 // Constant table.
195 GrowableArray<Constant> _constants; // Constants of this table.
200 static int qsort_comparator(Constant* a, Constant* b);
226 int find_offset(Constant
[all...]

Completed in 35 milliseconds