Searched refs:Value (Results 1 - 25 of 169) sorted by relevance

1234567

/openjdk7/langtools/test/tools/javac/generics/6372782/
H A DAdditionDefined.java24 public interface AdditionDefined<E extends Value> {
H A DMultiplicationDefined.java24 public interface MultiplicationDefined<E extends Value> {
H A DAdditiveClosure.java24 public interface AdditiveClosure<E extends Value>
H A DRing.java24 public interface Ring<E extends Value>
H A DValue.java24 public interface Value<E extends Value<E, P, V>, interface in inherits:Element
/openjdk7/langtools/test/tools/javadoc/annotations/shortcuts/pkg1/
H A DValue.java26 public @interface Value { interface
H A DA.java26 @Value("there is only one")
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest8013557.java37 return new Bean(new Value("something"));
42 return new Bean(new Value());
46 public Value value;
49 this.value = new Value();
52 public Bean(Value value) {
56 public void setValue(Value value) {
60 public Value getValue() {
65 public static class Value { class in class:Test8013557
68 public Value() { method in class:Test8013557.Value
72 public Value(Strin method in class:Test8013557.Value
[all...]
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkBuilder.hpp58 llvm::Value* CreateAddressOfStructEntry(llvm::Value* base,
62 llvm::LoadInst* CreateValueOfStructEntry(llvm::Value* base,
69 llvm::LoadInst* CreateArrayLength(llvm::Value* arrayoop);
70 llvm::Value* CreateArrayAddress(llvm::Value* arrayoop,
74 llvm::Value* index,
76 llvm::Value* CreateArrayAddress(llvm::Value* arrayoop,
79 llvm::Value* inde
[all...]
H A DsharkBuilder.cpp48 Value* SharkBuilder::CreateAddressOfStructEntry(Value* base,
55 LoadInst* SharkBuilder::CreateValueOfStructEntry(Value* base,
67 LoadInst* SharkBuilder::CreateArrayLength(Value* arrayoop) {
73 Value* SharkBuilder::CreateArrayAddress(Value* arrayoop,
77 Value* index,
79 Value* offset = CreateIntCast(index, SharkType::intptr_type(), false);
93 Value* SharkBuilder::CreateArrayAddress(Value* arrayoo
[all...]
H A DsharkStack.hpp41 SharkFunction* function, llvm::Value* method);
43 SharkNativeWrapper* wrapper, llvm::Value* method);
50 void initialize(llvm::Value* method);
53 void CreateStackOverflowCheck(llvm::Value* sp);
72 llvm::Value* zero_stack() const {
79 llvm::Value* stack_base() const {
86 llvm::Value* stack_pointer_addr() const {
93 llvm::Value* frame_pointer_addr() const {
105 llvm::StoreInst* CreateStoreStackPointer(llvm::Value* value) {
111 llvm::StoreInst* CreateStoreFramePointer(llvm::Value* valu
[all...]
H A DsharkValue.hpp96 virtual llvm::Value* jint_value() const;
97 virtual llvm::Value* jlong_value() const;
98 virtual llvm::Value* jfloat_value() const;
99 virtual llvm::Value* jdouble_value() const;
100 virtual llvm::Value* jobject_value() const;
101 virtual llvm::Value* jarray_value() const;
106 static SharkValue* create_jint(llvm::Value* value, bool zero_checked) {
110 static SharkValue* create_jlong(llvm::Value* value, bool zero_checked) {
114 static SharkValue* create_jfloat(llvm::Value* value) {
118 static SharkValue* create_jdouble(llvm::Value* valu
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DArrayReference.java32 * Each array component is mirrored by a {@link Value} object.
55 * @return the {@link Value} at the given index.
63 Value getValue(int index);
68 * @return a list of {@link Value} objects, one for each array
72 List<Value> getValues();
80 * @return a list of {@link Value} objects, one for each requested
98 List<Value> getValues(int index, int length);
128 void setValue(int index, Value value)
145 * @param values a list of {@link Value} objects to be placed
159 void setValues(List<? extends Value> value
[all...]
H A DValue.java53 * The following table illustrates which subinterfaces of Value
56 * instance of a subinterface of Value">
63 * <TH id="type" align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH>
115 * <TH id="type2" align="left">{@link Type} of value<br>{@link #type() Value.type()}</TH>
171 public interface Value extends Mirror interface in inherits:Mirror
H A DVoidValue.java35 public interface VoidValue extends Value {
H A DObjectReference.java58 public interface ObjectReference extends Value
89 * @return the {@link Value} of the instance field.
93 Value getValue(Field sig);
104 * their {@link Value}.
108 Map<Field,Value> getValues(List<? extends Field> fields);
136 void setValue(Field field, Value value)
241 * @param arguments the list of {@link Value} arguments bound to the
245 * @return a {@link Value} mirror of the invoked method's return value.
271 Value invokeMethod(ThreadReference thread, Method method,
272 List<? extends Value> argument
[all...]
H A DPrimitiveValue.java38 public interface PrimitiveValue extends Value
H A DStackFrame.java164 * Gets the {@link Value} of a {@link LocalVariable} in this frame.
169 * @return the {@link Value} of the instance field.
176 Value getValue(LocalVariable variable);
185 * its {@link Value}
192 Map<LocalVariable,Value> getValues(List<? extends LocalVariable> variables);
195 * Sets the {@link Value} of a {@link LocalVariable} in this frame.
220 void setValue(LocalVariable variable, Value value)
227 * @return a list containing a {@link Value} object for each argument
237 List<Value> getArgumentValues();
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6369051.java33 class Value<T> { class
37 class IntegerValue extends Value<Integer> {
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunHints.java82 if (val instanceof Value) {
83 return ((Value)val).isCompatibleKey(this);
96 public static class Value { class in class:SunHints
101 private static Value[][] ValueObjects =
102 new Value[NUM_KEYS][VALS_PER_KEY];
105 Value value) {
114 public static Value get(int keyindex, int valueindex) {
120 * subclass of Value maintains its own unique domain of integer
124 public Value(SunHints.Key key, int index, String description) { method in class:SunHints.Value
142 * Returns a string representation of this Value
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DValueImpl.java29 abstract class ValueImpl extends MirrorImpl implements Value {
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DMethodExitEvent.java62 * @return a {@link Value} which mirrors the value to be returned.
72 public Value returnValue();
H A DModificationWatchpointEvent.java44 * Value that will be assigned to the field when the instruction
47 Value valueToBe();
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.hpp52 Value check(ValueTag tag, Value t) {
57 Value check(ValueTag tag, Value t, Value h) {
107 Value local_at(int i) const {
108 Value x = _locals.at(i);
114 void store_local(int i, Value x) {
118 Value prev = _locals.at(i - 1);
132 Value stack_a
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DValueImpl.java30 abstract class ValueImpl extends MirrorImpl implements Value {
36 static ValueImpl prepareForAssignment(Value value,
52 static byte typeValueKey(Value val) {

Completed in 123 milliseconds

1234567