/openjdk7/jdk/src/share/classes/sun/rmi/rmic/ |
H A D | RMIConstants.java | 48 Identifier.lookup("java.rmi.server.RemoteObject"); 50 Identifier.lookup("java.rmi.server.RemoteStub"); 52 Identifier.lookup("java.rmi.server.RemoteRef"); 54 Identifier.lookup("java.rmi.server.Operation"); 56 Identifier.lookup("java.rmi.server.Skeleton"); 58 Identifier.lookup("java.rmi.server.SkeletonMismatchException"); 60 Identifier.lookup("java.rmi.server.RemoteCall"); 62 Identifier.lookup("java.rmi.MarshalException"); 64 Identifier.lookup("java.rmi.UnmarshalException"); 66 Identifier.lookup("jav [all...] |
H A D | Constants.java | 41 Identifier.lookup("java.rmi.Remote"); 43 Identifier.lookup("java.rmi.RemoteException");
|
H A D | Names.java | 44 return Identifier.lookup(name + "_Stub"); 51 return Identifier.lookup(name + "_Skel"); 79 Identifier mangled = Identifier.lookup( 86 return Identifier.lookup(className.getQualifier(), mangled);
|
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/ |
H A D | Constants.java | 42 Identifier.lookup("org.omg.CORBA.portable.ResponseHandler"); 44 Identifier.lookup("javax.rmi.CORBA.Stub"); 46 Identifier.lookup("org.omg.CORBA.portable.ObjectImpl"); 48 Identifier.lookup("javax.rmi.CORBA.Tie"); 50 Identifier.lookup( "org.omg.PortableServer.Servant" ) ; 52 Identifier.lookup("org.omg.CORBA.portable.Delegate"); 54 Identifier.lookup("org.omg.CORBA.portable.OutputStream"); 56 Identifier.lookup("org.omg.CORBA_2_3.portable.OutputStream"); 58 Identifier.lookup("org.omg.CORBA.portable.InputStream"); 60 Identifier.lookup("or [all...] |
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | PropertyResourceBundle.java | 131 lookup = new HashMap(properties); 149 lookup = new HashMap(properties); 157 return lookup.get(key); 170 return new ResourceBundleEnumeration(lookup.keySet(), 184 return lookup.keySet(); 189 private Map<String,Object> lookup; field in class:PropertyResourceBundle
|
H A D | ListResourceBundle.java | 122 // lazily load the lookup hashtable. 123 if (lookup == null) { 129 return lookup.get(key); // this class ignores locales 141 // lazily load the lookup hashtable. 142 if (lookup == null) { 147 return new ResourceBundleEnumeration(lookup.keySet(), 161 if (lookup == null) { 164 return lookup.keySet(); 182 * We lazily load the lookup hashtable. This function does the 186 if (lookup ! 203 private Map<String,Object> lookup = null; field in class:ListResourceBundle [all...] |
/openjdk7/jdk/src/share/classes/sun/reflect/generics/scope/ |
H A D | Scope.java | 32 TypeVariable<?> lookup(String name); method in interface:Scope
|
H A D | AbstractScope.java | 85 public TypeVariable<?> lookup(String name) { method in class:AbstractScope 90 return getEnclosingScope().lookup(name);
|
/openjdk7/jdk/test/java/io/Serializable/recursiveClassDescLookup/ |
H A D | Test.java | 27 * @summary Verify that a nested call to ObjectStreamClass.lookup from within 37 ObjectStreamClass.lookup(Foo.class); 44 ObjectStreamClass.lookup(fooCl);
|
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/ |
H A D | img_colors.h | 32 unsigned char *lookup);
|
/openjdk7/jdk/src/share/classes/sun/tools/java/ |
H A D | Constants.java | 56 Identifier idAppend = Identifier.lookup("append"); 57 Identifier idClassInit = Identifier.lookup("<clinit>"); 58 Identifier idCode = Identifier.lookup("Code"); 59 Identifier idInit = Identifier.lookup("<init>"); 60 Identifier idLength = Identifier.lookup("length"); 61 Identifier idNull = Identifier.lookup(""); 62 Identifier idStar = Identifier.lookup("*"); 63 Identifier idSuper = Identifier.lookup("super"); 64 Identifier idThis = Identifier.lookup("this"); 65 Identifier idClass = Identifier.lookup("clas [all...] |
H A D | Identifier.java | 89 * use lookup instead. 90 * @see Identifier.lookup 116 public static synchronized Identifier lookup(String s) { method in class:Identifier 117 //System.out.println("lookup(" + s + ")"); 128 public static Identifier lookup(Identifier q, Identifier n) { method in class:Identifier 129 // lookup("", x) => x 131 // lookup(lookupInner(c, ""), n) => lookupInner(c, lookup("", n)) 133 return lookup(q.name+n.name); 134 Identifier id = lookup( [all...] |
/openjdk7/jdk/test/java/io/Serializable/lookupInterfaceDesc/ |
H A D | LookupInterfaceDesc.java | 26 * @summary Verify that ObjectStreamClass.lookup() functions properly 45 ObjectStreamClass desc = ObjectStreamClass.lookup(Foo.class); 52 desc = ObjectStreamClass.lookup(Bar.class); 59 if (ObjectStreamClass.lookup(Gub.class) != null) {
|
/openjdk7/jdk/test/java/lang/invoke/AccessControlTest_subpkg/ |
H A D | Acquaintance_remote.java | 17 return MethodHandles.lookup(); 26 return MethodHandles.lookup(); 35 return MethodHandles.lookup();
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | SymbolLookup.java | 40 public Address lookup(String objectName, String symbol); method in interface:SymbolLookup 46 lookup of static fields with type "oop" already works, since the 47 lookup routine returns the address of the oop (i.e., an
|
/openjdk7/jdk/test/java/io/Serializable/maskSyntheticModifier/ |
H A D | Test.java | 35 long suid = ObjectStreamClass.lookup(Foo.class).getSerialVersionUID();
|
/openjdk7/jdk/test/java/io/Serializable/partialClassDesc/ |
H A D | PartialClassDesc.java | 27 * cannot be obtained from ObjectStreamClass.lookup() in the event 50 desc = ObjectStreamClass.lookup(cl); 54 desc = ObjectStreamClass.lookup(cl);
|
/openjdk7/jdk/test/java/lang/invoke/remote/ |
H A D | RemoteExample.java | 36 public static Lookup lookup() { return MethodHandles.lookup(); } method in class:RemoteExample
|
/openjdk7/jdk/test/java/rmi/registry/emptyName/ |
H A D | EmptyName.java | 40 stub.lookup(""); 42 stub.lookup("");
|
/openjdk7/jdk/src/share/classes/sun/util/resources/ |
H A D | OpenListResourceBundle.java | 75 return lookup.get(key); // this class ignores locales 93 return lookup.keySet(); 109 * Load lookup tables if they haven't been loaded already. 112 if (lookup == null) { 118 * We lazily load the lookup hashtable. This function does the 122 if (lookup != null) 136 lookup = temp; 147 private Map lookup = null; field in class:OpenListResourceBundle
|
/openjdk7/jdk/src/share/classes/sun/management/ |
H A D | HotspotCompilation.java | 88 this.method = (StringCounter) lookup(basename + "method"); 89 this.type = (LongCounter) lookup(basename + "type"); 90 this.compiles = (LongCounter) lookup(basename + "compiles"); 91 this.time = (LongCounter) lookup(basename + "time"); 96 this.method = (StringCounter) lookup(basename + "method"); 97 this.type = (LongCounter) lookup(basename + "type"); 98 this.compiles = (LongCounter) lookup(basename + "compiles"); 99 this.time = (LongCounter) lookup(basename + "time"); 116 private Counter lookup(String name) { method in class:HotspotCompilation 146 compilerThreads = (LongCounter) lookup("thread [all...] |
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | CharacterName.java | 39 private static int[][] lookup; field in class:CharacterName 55 lookup = new int[(Character.MAX_CODE_POINT + 1) >> 8][]; 76 if (lookup[hi] == null) { 77 lookup[hi] = new int[0x100]; 79 lookup[hi][cp&0xff] = (nameOff << 8) | len; 101 if (lookup[cp>>8] == null || 102 (off = lookup[cp>>8][cp&0xff]) == 0)
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ |
H A D | BsdVtblAccess.java | 38 if (symbolLookup.lookup("libjvm.so", "__vt_10JavaThread") != null || 39 symbolLookup.lookup("libjvm_g.so", "__vt_10JavaThread") != null) {
|
H A D | LinuxVtblAccess.java | 38 if (symbolLookup.lookup("libjvm.so", "__vt_10JavaThread") != null || 39 symbolLookup.lookup("libjvm_g.so", "__vt_10JavaThread") != null) {
|
/openjdk7/jdk/src/share/classes/sun/applet/ |
H A D | Main.java | 117 throw new ParseException(lookup("main.err.unrecognizedarg", 134 System.err.println(lookup("main.err.inputfile")); 158 System.err.println(lookup("main.err.io", e.getMessage())); 166 System.out.println(lookup("usage")); 190 throw new ParseException(lookup("main.err.dupoption", arg)); 202 System.err.println(lookup("main.warn.nosecmgr")); 214 throw new ParseException(lookup("main.err.unsupportedopt", arg)); 262 throw new ParseException(lookup("main.err.badurl", 316 System.err.println(lookup("main.debug.cantfinddebug")); 319 System.err.println(lookup("mai 503 private static String lookup(String key) { method in class:Main 507 private static String lookup(String key, String arg0) { method in class:Main 511 private static String lookup(String key, String arg0, String arg1) { method in class:Main 515 private static String lookup(String key, String arg0, String arg1, method in class:Main [all...] |