Searched defs:ob (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jdk/src/share/native/java/lang/ref/
H A DFinalizer.c32 jobject ob)
37 cls = (*env)->GetObjectClass(env, ob);
41 (*env)->CallVoidMethod(env, ob, mid);
31 Java_java_lang_ref_Finalizer_invokeFinalizeMethod(JNIEnv *env, jclass clazz, jobject ob) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/attach/
H A DVirtualMachineDescriptor.java170 * @param ob The object to which this object is to be compared
176 public boolean equals(Object ob) { argument
177 if (ob == this)
179 if (!(ob instanceof VirtualMachineDescriptor))
181 VirtualMachineDescriptor other = (VirtualMachineDescriptor)ob;
H A DVirtualMachine.java606 * @param ob The object to which this object is to be compared
612 public boolean equals(Object ob) { argument
613 if (ob == this)
615 if (!(ob instanceof VirtualMachine))
617 VirtualMachine other = (VirtualMachine)ob;
/openjdk7/jdk/src/share/classes/sun/misc/
H A DCleaner.java129 public static Cleaner create(Object ob, Runnable thunk) { argument
132 return add(new Cleaner(ob, thunk));
H A DJavaNioAccess.java46 * The {@code ob} parameter is an arbitrary object that is attached
49 ByteBuffer newDirectByteBuffer(long addr, int cap, Object ob); argument
H A DLRUCache.java44 abstract protected boolean hasName(V ob, N name); argument
47 Object ob = oa[i];
50 oa[0] = ob;
58 V ob = oa[i];
59 if (ob == null)
61 if (hasName(ob, name)) {
64 return ob;
70 V ob = create(name);
71 oa[oa.length - 1] = ob;
73 return ob;
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DThreadLocalCoders.java54 Object ob = oa[i];
57 oa[0] = ob;
60 abstract boolean hasName(Object ob, Object name); argument
69 Object ob = oa[i];
70 if (ob == null)
72 if (hasName(ob, name)) {
75 return ob;
81 Object ob = create(name);
82 oa[oa.length - 1] = ob;
84 return ob;
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSelectionKey.java381 * @param ob
387 public final Object attach(Object ob) { argument
388 return attachmentUpdater.getAndSet(this, ob);
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DAclEntry.java312 * @param ob the object to which this object is to be compared
318 public boolean equals(Object ob) { argument
319 if (ob == this)
321 if (ob == null || !(ob instanceof AclEntry))
323 AclEntry other = (AclEntry)ob;
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileStore.java198 public boolean equals(Object ob) { argument
199 if (ob == this)
201 if (!(ob instanceof WindowsFileStore))
203 WindowsFileStore other = (WindowsFileStore)ob;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DReflect.java96 static Object invoke(Method m, Object ob, Object[] args) { argument
98 return m.invoke(ob, args);
106 static Object invokeIO(Method m, Object ob, Object[] args) argument
110 return m.invoke(ob, args);
133 static Object get(Object ob, Field f) { argument
135 return f.get(ob);
145 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, va
161 setBoolean(Object ob, Field f, boolean val) argument
[all...]
H A DNativeObject.java147 * @param ob
150 void putObject(int offset, NativeObject ob) { argument
153 putLong(offset, ob.address);
156 putInt(offset, (int)(ob.address & 0x00000000FFFFFFFF));
/openjdk7/jdk/src/share/classes/java/lang/
H A DStringCoding.java69 private static <T> void set(ThreadLocal<SoftReference<T>> tl, T ob) { argument
70 tl.set(new SoftReference<T>(ob));
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileStore.java182 public boolean equals(Object ob) { argument
183 if (ob == this)
185 if (!(ob instanceof UnixFileStore))
187 UnixFileStore other = (UnixFileStore)ob;
H A DUnixPath.java737 public boolean equals(Object ob) { argument
738 if ((ob != null) && (ob instanceof UnixPath)) {
739 return compareTo((Path)ob) == 0;
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCharset.java906 public final boolean equals(Object ob) { argument
907 if (!(ob instanceof Charset))
909 if (this == ob)
911 return name.equals(((Charset)ob).name());
/openjdk7/jdk/test/sun/nio/cs/
H A DFindDecoderBugs.java121 Result(ByteBuffer ib, CharBuffer ob, CoderResult cr) { argument
124 oa = toArray(ob);
126 limit = ob.limit();
194 Result recode(ByteBuffer ib, CharBuffer ob) { argument
198 ob.clear(); // Prepare to write
199 for (int i = 0; i < ob.limit(); i++)
200 ob.put(i, canary);
202 CoderResult cr = coder.decode(ib, ob, false);
204 equal(ob.limit(), ob
[all...]
H A DFindEncoderBugs.java128 Result(CharBuffer ib, ByteBuffer ob, CoderResult cr) { argument
131 oa = toArray(ob);
133 limit = ob.limit();
328 Result recode(CharBuffer ib, ByteBuffer ob) { argument
332 ob.clear(); // Prepare to write
333 for (int i = 0; i < ob.limit(); i++)
334 ob.put(i, canary);
336 CoderResult cr = coder.encode(ib, ob, false);
338 equal(ob.limit(), ob
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGraphicsPrimitive.java537 protected static SurfaceData convertFrom(Blit ob, SurfaceData srcData, argument
541 return convertFrom(ob, srcData,
546 protected static SurfaceData convertFrom(Blit ob, SurfaceData srcData, argument
560 ob.Blit(srcData, dstData, AlphaComposite.Src, null,
565 protected static void convertTo(Blit ob, argument
570 if (ob != null) {
571 ob.Blit(srcImg, dstImg, AlphaComposite.Src, clip,
/openjdk7/jdk/src/share/classes/java/net/
H A DURI.java1415 * @param ob The object to which this object is to be compared
1420 public boolean equals(Object ob) { argument
1421 if (ob == this)
1423 if (!(ob instanceof URI))
1425 URI that = (URI)ob;

Completed in 58 milliseconds