Searched defs:orig (Results 1 - 25 of 32) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DRemoteToCorba.java54 * @param orig The object to turn into a CORBA object. If not Remote,
59 * @return The CORBA object for <tt>orig</tt> or null.
65 public Object getStateToBind(Object orig, Name name, Context ctx, argument
67 if (orig instanceof org.omg.CORBA.Object) {
72 if (orig instanceof Remote) {
79 CorbaUtils.remoteToCorba((Remote)orig, ((CNCtx)ctx)._orb);
/openjdk7/jdk/test/java/util/Hashtable/
H A DSimpleSerialization.java80 private static String getFailureText(final Object orig, final Object copy) { argument
85 printObject(pw, orig).println();
/openjdk7/jdk/test/java/util/Vector/
H A DSimpleSerialization.java69 private static String getFailureText(final Object orig, final Object copy) { argument
75 printObject(pw, orig).println();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DJNDIStateFactoryImpl.java91 * @param orig The object to turn into a CORBA object. If not Remote,
96 * @return The CORBA object for <tt>orig</tt> or null.
102 public Object getStateToBind(Object orig, Name name, Context ctx, argument
105 if (orig instanceof org.omg.CORBA.Object)
106 return orig ;
108 if (!(orig instanceof Remote))
121 stub = PortableRemoteObject.toStub( (Remote)orig ) ;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DFilteredImageSource.java61 * @param orig the specified <code>ImageProducer</code>
66 public FilteredImageSource(ImageProducer orig, ImageFilter imgf) { argument
67 src = orig;
H A DComponentSampleModel.java271 int []orderBands(int orig[], int step) { argument
272 int map[] = new int[orig.length];
273 int ret[] = new int[orig.length];
280 if (orig[map[index]] > orig[map[j]]) {
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DMTSafetyTest.java120 public ColorConvert(BufferedImage orig, ColorConvertOp ccOp) { argument
121 original = orig;
/openjdk7/jdk/test/java/util/EnumMap/
H A DSimpleSerialization.java71 private static String getFailureText(final Object orig, final Object copy) { argument
77 printObject(pw, orig).println();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DSymbolArchive.java49 public SymbolArchive(JavacFileManager fileManager, File orig, ZipFile zdir, RelativeDirectory prefix) throws IOException { argument
51 this.origFile = orig;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/som/cff/
H A DMessages.java333 @orig: original string
338 private static String substituteString(String orig, int paramNum, argument
340 String result = orig;
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DUtil.java289 * @param orig the exception to wrap.
292 public static RemoteException wrapException(Throwable orig) { argument
295 return utilDelegate.wrapException(orig);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ci/
H A DciMethodData.java85 public byte[] orig() { method in class:ciMethodData
86 // fetch the orig methodDataOopDesc data between header and dataSize
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DConnectionMultiplexer.java79 private boolean orig; field in class:ConnectionMultiplexer
109 * @param orig true if this endpoint intiated the underlying
116 boolean orig)
121 this.orig = orig;
269 // The orig flag (copied to the high bit of the ID) is used
272 if (orig)
112 ConnectionMultiplexer( TCPChannel channel, InputStream in, OutputStream out, boolean orig) argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/javax/rmi/CORBA/
H A DUtil.java187 Throwable orig = ((UnknownException)ex).originalEx;
188 if (orig instanceof Error) {
189 return new ServerError("Error occurred in server thread",(Error)orig);
190 } else if (orig instanceof RemoteException) {
192 (Exception)orig);
193 } else if (orig instanceof RuntimeException) {
194 throw (RuntimeException) orig;
654 * @param orig the exception to wrap.
657 public RemoteException wrapException(Throwable orig) argument
659 if (orig instanceo
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java299 public byte[] orig() { method in class:MethodData
300 // fetch the orig methodDataOopDesc data between header and dataSize
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DFilter.java211 static byte[] unescapeFilterValue(byte[] orig, int start, int end) argument
218 dprint("unescape: " , orig, start, end);
225 ch = orig[i];
241 throw new InvalidSearchFilterException("invalid escape sequence: " + orig);
H A DLdapSchemaCtx.java223 final private static Attributes deepClone(Attributes orig) argument
226 NamingEnumeration attrs = orig.getAll();
H A DObj.java290 Reference ref, Attributes attrs, Object orig)
312 if (orig != null && attrs.get(JAVA_ATTRIBUTES[TYPENAME]) != null) {
314 LdapCtxFactory.createTypeNameAttr(orig.getClass());
289 encodeReference(char separator, Reference ref, Attributes attrs, Object orig) argument
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DInstallSDE.java7 byte[] orig; field in class:InstallSDE
58 orig = readWhole(inClassFile);
60 gen = new byte[orig.length + sdeAttr.length + 100];
192 return ((int)orig[origPos++]) & 0xFF;
221 gen[genPos++] = orig[origPos++];
228 bytes[i] = orig[origPos++];
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.java32 private final byte[] orig; field in class:ClassReaderWriter
51 ClassReaderWriter(byte[] orig) { argument
52 this.orig = orig;
53 sectionLength = orig.length * GROWTH_FACTOR;
93 return ((int)orig[inputPos++]) & 0xFF;
145 gen[genPos++] = orig[inputPos++];
156 bytes[i] = orig[inputPos++];
168 return orig;
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DHierMemDirCtx.java563 Attributes orig) throws NamingException {
579 existingAttr = orig.get(modAttr.getID());
581 orig.put((Attribute)modAttr.clone());
592 orig.remove(modAttr.getID());
594 orig.put((Attribute)modAttr.clone());
598 existingAttr = orig.get(modAttr.getID());
601 orig.remove(modAttr.getID());
609 orig.remove(modAttr.getID());
619 return orig;
562 applyMods(ModificationItem[] mods, Attributes orig) argument
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp388 bm_word_t orig = dest_map[index]; local
389 bm_word_t temp = orig & other_map[index];
390 changed = changed || (temp != orig);
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.cpp1000 Node* PhaseIterGVN::register_new_node_with_optimizer(Node* n, Node* orig) { argument
1003 if (orig != NULL) C->copy_node_notes_to(n, orig);
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java985 private static TextLineComponent[] expandArray(TextLineComponent[] orig) { argument
987 TextLineComponent[] newComponents = new TextLineComponent[orig.length + 8];
988 System.arraycopy(orig, 0, newComponents, 0, orig.length);
/openjdk7/jdk/src/share/native/common/
H A Djni_util.c830 Canonicalize(JNIEnv *env, char *orig, char *out, int len) argument
833 return canonicalize(orig, out, len);

Completed in 211 milliseconds

12