Searched refs:get (Results 151 - 175 of 3658) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/net/
H A DCookieStore.java36 * for every incoming HTTP response, and call <tt>CookieStore.get</tt> to
64 * @see #get
83 public List<HttpCookie> get(URI uri); method in interface:CookieStore
/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java112 abstract public V get(Object key); method in class:Dictionary
128 * <code>get</code> method with a <code>key</code> that is equal to
139 * @see java.util.Dictionary#get(java.lang.Object)
/openjdk7/jdk/src/share/classes/javax/management/
H A DQueryEval.java76 return server.get();
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DCompositeData.java66 public Object get(String key) ; method in interface:CompositeData
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DEnumerated.java74 if (getIntTable().get(new Integer(valueIndex)) == null) {
88 if (getIntTable().get(valueIndex) == null) {
103 Integer index = (Integer)getStringTable().get(valueString) ;
182 return (String)getIntTable().get(new Integer(value)) ;
188 * getIntTable().get(x) returns the string form associated
202 * getStringTable().get(s) returns the integer form associated
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DReadBuffer.java45 public void get(long pos, byte[] buf) throws IOException; method in interface:ReadBuffer
/openjdk7/hotspot/src/share/vm/ci/
H A DciConstantPoolCache.hpp47 void* get(int index);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaButtonToggleUI.java37 return aquaToggleButtonUI.get();
H A DAquaInternalFrameBorderMetrics.java52 return isUtility ? legacyUtilityMetrics.get() : legacyStandardMetrics.get();
54 return isUtility ? utilityMetrics.get() : standardMetrics.get();
/openjdk7/hotspot/test/compiler/7009231/
H A DTest7009231.java78 lWord = atomic.get();
81 if ((atomic.get() & lMask) == 0L) {
89 lWord = atomic.get();
92 if ((atomic.get() & lMask) != 0L) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/util/
H A DExistingBlockReference.java42 public JBlock get(boolean create) { method in class:ExistingBlockReference
H A DLazyBlockReference.java46 public JBlock get(boolean create) { method in class:LazyBlockReference
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DPropertySet.java128 // * {@link #get(Object)} and {@link #put(String, Object)} to work faster.
164 assert name.startsWith("get");
191 Object get(PropertySet props); method in interface:PropertySet.Accessor
217 return get(props)!=null;
220 public Object get(PropertySet props) { method in class:PropertySet.FieldAccessor
222 return f.get(props);
267 return get(props)!=null;
270 public Object get(PropertySet props) { method in class:PropertySet.MethodAccessor
310 return get(key)!=null;
317 * This field is typed as {@link Object} to follow the {@link Map#get(Objec
321 public Object get(Object key) { method in class:PropertySet
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachmentSet.java51 Attachment get(String contentId); method in interface:AttachmentSet
/openjdk7/jdk/test/com/sun/jdi/
H A DLaunchCommandLine.java82 String string = ((StringReference)argValues.get(0)).value();
86 string = ((StringReference)argValues.get(1)).value();
90 string = ((StringReference)argValues.get(2)).value();
94 string = ((StringReference)argValues.get(3)).value();
/openjdk7/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DDumpHeap.java40 list.get(0).dumpHeap(argv[0], true);
/openjdk7/jdk/test/java/lang/ThreadLocal/
H A DImmutableLocal.java27 * @summary Confirm ThreadLocal.set() usage is not a side effect of get()
51 System.out.println("cache.get() = " + cache.get());
/openjdk7/jdk/test/java/lang/reflect/Field/4498653/
H A DStaticInitializerTest.java41 if (cl.getDeclaredField("obj").get(null) == null) {
/openjdk7/jdk/test/java/nio/Buffer/
H A DCopyDirectByteMemory.java59 ck(b, b.get(i), (byte)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectCharMemory.java59 ck(b, b.get(i), (char)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectDoubleMemory.java59 ck(b, b.get(i), (double)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectFloatMemory.java59 ck(b, b.get(i), (float)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectIntMemory.java59 ck(b, b.get(i), (int)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectLongMemory.java59 ck(b, b.get(i), (long)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");
H A DCopyDirectShortMemory.java59 ck(b, b.get(i), (short)ic(i + 1));
64 b.get(a);
66 if (a[i] != b.get(i))
68 + a[i] + "' != '" + b.get(i) + "'");

Completed in 140 milliseconds

1234567891011>>