Searched defs:val (Results 126 - 150 of 430) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DParserActions.java86 IdentifierToken exp[], Node val);
83 defineField(long where, ClassDefinition c, String doc, int mod, Type t, IdentifierToken nm, IdentifierToken args[], IdentifierToken exp[], Node val) argument
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DObjTreeCalls.java64 public Node call(Node val) throws RemoteException; argument
71 public Node call(Node val) throws RemoteException { argument
72 return val;
/openjdk7/jdk/test/java/util/Map/
H A DLockStep.java55 void put(List<Map> maps, Object key, Object val) { argument
57 map.put(key, val);
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpController.java112 private static int getInteger(String val, int dflt, String msg) throws JdpException { argument
114 return (val == null) ? dflt : Integer.parseInt(val);
121 private static InetAddress getInetAddress(String val, InetAddress dflt, String msg) throws JdpException { argument
123 return (val == null) ? dflt : InetAddress.getByName(val);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DReflect.java145 static void set(Object ob, Field f, Object val) { argument
147 f.set(ob, val);
153 static void setInt(Object ob, Field f, int val) { argument
155 f.setInt(ob, val);
161 static void setBoolean(Object ob, Field f, boolean val) { argument
163 f.setBoolean(ob, val);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DWrappedSocket.java148 public void setSoLinger(boolean on, int val) throws SocketException argument
150 socket.setSoLinger(on, val);
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestGetResource2.java157 void expect(boolean val, boolean expect) { argument
158 if (val != expect)
159 error("Unexpected value: " + val + "; expected: " + expect);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDoubleDV.java71 static boolean isPossibleFP(String val) { argument
72 final int length = val.length();
74 char c = val.charAt(i);
103 public boolean equals(Object val) { argument
104 if (val == this)
107 if (!(val instanceof XDouble))
109 XDouble oval = (XDouble)val;
131 public boolean isIdentical (XDouble val) { argument
132 if (val == this) {
136 if (value == val
147 compareTo(XDouble val) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DArg.java85 * @param val an XObject representing the arguments's value.
88 public final void setVal(XObject val) argument
90 m_val = val;
215 * @param val Value of the argument, expressed as an XObject
217 public Arg(QName qname, XObject val) argument
221 m_val = val;
255 * @param val Value of the argument, expressed as an XObject
258 public Arg(QName qname, XObject val, boolean isFromWithParam) argument
262 m_val = val;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXStringForChars.java47 * @param val FastStringBuffer object this will wrap, must be non-null.
51 public XStringForChars(char[] val, int start, int length) argument
53 super(val);
56 if(null == val)
65 * @param val String object this will wrap.
67 private XStringForChars(String val) argument
69 super(val);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/
H A DCacheTable.java38 int val; field in class:CacheTable.Entry
43 val = v;
85 put_table(e.key, e.val);
100 private int hash(int val) { argument
101 return moduloTableSize(val);
103 public final void put(java.lang.Object key, int val) { argument
104 if (put_table(key, val)) {
110 private boolean put_table(java.lang.Object key, int val) { argument
114 if (e.val != val) {
145 containsVal(int val) argument
148 containsOrderedVal(int val) argument
151 getKey(int val) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DVariablePanel.java224 public void doBit(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val) { argument
225 children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
227 public void doInt(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val) { argument
228 children.add(new sun.jvm.hotspot.bugspot.tree.LongTreeNodeAdapter(val, f, true));
230 public void doEnum(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, long val, String enumName) { argument
231 children.add(new sun.jvm.hotspot.bugspot.tree.EnumTreeNodeAdapter(enumName, val, f, true));
233 public void doFloat(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, float val) { argument
234 children.add(new sun.jvm.hotspot.bugspot.tree.FloatTreeNodeAdapter(val, f, true));
236 public void doDouble(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, double val) { argument
237 children.add(new sun.jvm.hotspot.bugspot.tree.DoubleTreeNodeAdapter(val,
239 doPointer(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) argument
242 doArray(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) argument
245 doRef(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) argument
248 doCompound(sun.jvm.hotspot.debugger.cdbg.FieldIdentifier f, Address val) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/tree/
H A DObjectTreeNodeAdapter.java100 public void doBit(FieldIdentifier f, long val) { ++numFields; } argument
101 public void doInt(FieldIdentifier f, long val) { ++numFields; } argument
102 public void doEnum(FieldIdentifier f, long val, String enumName) { ++numFields; } argument
103 public void doFloat(FieldIdentifier f, float val) { ++numFields; } argument
104 public void doDouble(FieldIdentifier f, double val) { ++numFields; } argument
105 public void doPointer(FieldIdentifier f, Address val) { ++numFields; } argument
106 public void doArray(FieldIdentifier f, Address val) { ++numFields; } argument
107 public void doRef(FieldIdentifier f, Address val) { ++numFields; } argument
125 public void doBit(FieldIdentifier f, long val) { argument
127 child = new LongTreeNodeAdapter(val,
132 doInt(FieldIdentifier f, long val) argument
139 doEnum(FieldIdentifier f, long val, String enumName) argument
146 doFloat(FieldIdentifier f, float val) argument
153 doDouble(FieldIdentifier f, double val) argument
160 doPointer(FieldIdentifier f, Address val) argument
167 doArray(FieldIdentifier f, Address val) argument
174 doRef(FieldIdentifier f, Address val) argument
181 doCompound(FieldIdentifier f, Address val) argument
204 doBit(FieldIdentifier f, long val) argument
205 doInt(FieldIdentifier f, long val) argument
206 doEnum(FieldIdentifier f, long val, String enumName) argument
208 doFloat(FieldIdentifier f, float val) argument
209 doDouble(FieldIdentifier f, double val) argument
210 doPointer(FieldIdentifier f, Address val) argument
211 doArray(FieldIdentifier f, Address val) argument
212 doRef(FieldIdentifier f, Address val) argument
213 doCompound(FieldIdentifier f, Address val) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicDebugEvent.java54 public void setWasWrite(boolean val) { wasWrite = val; } argument
H A DBasicEnumType.java71 public void addEnum(String name, long val) { argument
75 enums.add(new Enum(name, val));
82 public String enumNameForValue(long val) { argument
89 if (e.getValue() == val) {
109 long val = a.getCIntegerAt(0, getSize(), isUnsigned());
110 v.doEnum(f, val, enumNameForValue(val));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DStreamMonitor.java52 Trigger(String str, int val) { argument
54 triggerVal = val;
59 Trigger(String[] strs, int val) { argument
61 triggerVal = val;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DDataBuffer.java346 * @param val the data to set the element at the specified index in
351 public void setElem(int i, int val) { argument
352 setElem(0,i,val);
360 * @param val the data to set the element in the specified bank
365 public abstract void setElem(int bank, int i, int val); argument
402 * val to an int and call {@link #setElem(int, int)}. Subclasses
405 * @param val the value to set the element at the specified index in
410 public void setElemFloat(int i, float val) { argument
411 setElem(i,(int)val);
417 * val t
426 setElemFloat(int bank, int i, float val) argument
473 setElemDouble(int i, double val) argument
489 setElemDouble(int bank, int i, double val) argument
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicMarkableReference.java197 private boolean casPair(Pair<V> cmp, Pair<V> val) { argument
198 return UNSAFE.compareAndSwapObject(this, pairOffset, cmp, val);
H A DAtomicStampedReference.java198 private boolean casPair(Pair<V> cmp, Pair<V> val) { argument
199 return UNSAFE.compareAndSwapObject(this, pairOffset, cmp, val);
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttributes.java106 * The attribute specified by attrID and val are added to the newly
111 * @param val The value of the attribute to add. If null, a null
114 public BasicAttributes(String attrID, Object val) { argument
116 this.put(new BasicAttribute(attrID, val));
121 * The attribute specified by attrID and val are added to the newly
129 * @param val The value of the attribute to add. If null, a null
136 public BasicAttributes(String attrID, Object val, boolean ignoreCase) { argument
138 this.put(new BasicAttribute(attrID, val));
174 public Attribute put(String attrID, Object val) { argument
175 return this.put(new BasicAttribute(attrID, val));
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfo.cpp115 ScopeValue* val = read_from(stream); local
116 _field_values.append(val);
/openjdk7/hotspot/src/share/vm/oops/
H A DfieldInfo.hpp59 void set_name_index(u2 val) { _shorts[name_index_offset] = val; } argument
60 void set_signature_index(u2 val) { _shorts[signature_index_offset] = val; } argument
61 void set_initval_index(u2 val) { _shorts[initval_index_offset] = val; } argument
106 void set_access_flags(u2 val) { _shorts[access_flags_offset] = val; } argument
107 void set_offset(u4 val) { argument
108 _shorts[low_offset] = extract_low_short_from_int(val);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibOid.java311 //System.out.println("entering registration for val="
324 //System.out.println("End of trip for val="
330 //System.out.println("Create node for val="
352 //System.out.println("End of trip for val="
358 // System.out.println("Create node for val=" +
369 //System.out.println("Node already registered val=" +
463 private int retrieveIndex(long val) { argument
466 int cursor= (int) val;
490 private int getInsertAt(long val) { argument
493 final int index= (int) val;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java335 private short search(short val, short table[], short size) { argument
337 if (val <= table[i]) { return i; }
H A DUlawCodec.java319 private short search(short val, short table[], short size) { argument
321 if (val <= table[i]) { return i; }

Completed in 137 milliseconds

1234567891011>>