Searched defs:id (Results 176 - 200 of 770) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/
H A Ds_atan.c105 int ix,hx,id; local
119 id = -1;
124 id = 0; x = (2.0*x-one)/(2.0+x);
126 id = 1; x = (x-one)/(x+one);
130 id = 2; x = (x-1.5)/(one+1.5*x);
132 id = 3; x = -1.0/x;
141 if (id<0) return x - x*(s1+s2);
143 z = atanhi[id] - ((x*(s1+s2) - atanlo[id]) - x);
/openjdk7/jdk/src/share/native/java/util/
H A DTimeZone.c85 char *id = getGMTOffsetID(); local
88 if (id != NULL) {
89 jstrID = JNU_NewStringPlatform(env, id);
90 free((void *)id);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificatePolicyId.java39 private ObjectIdentifier id; field in class:CertificatePolicyId
44 * @param id the ObjectIdentifier for the policy id.
46 public CertificatePolicyId(ObjectIdentifier id) { argument
47 this.id = id;
56 this.id = val.getOID();
63 return (id);
71 + id.toString()
84 out.putOID(id);
[all...]
H A DUniqueIdentity.java41 private BitArray id; field in class:UniqueIdentity
46 * @param id the byte array containing the unique identifier.
48 public UniqueIdentity(BitArray id) { argument
49 this.id = id;
55 * @param id the byte array containing the unique identifier.
57 public UniqueIdentity(byte[] id) { argument
58 this.id = new BitArray(id.length*8, id);
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/attach/
H A DHotSpotAttachProvider.java139 void testAttachable(String id) throws AttachNotSupportedException { argument
142 VmIdentifier vmid = new VmIdentifier(id);
155 // we do not know what this id is
174 String id,
176 super(provider, id, displayName);
173 HotSpotVirtualMachineDescriptor(AttachProvider provider, String id, String displayName) argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DArrayType.java62 public String typeString(String id, boolean abbrev, boolean ret) { argument
63 return getElementType().typeString(id, abbrev, ret) + "[]";
H A DClassType.java58 public String typeString(String id, boolean abbrev, boolean ret) { argument
62 return (id.length() > 0) ? s + " " + id : s;
H A DIdentifierToken.java44 Identifier id; field in class:IdentifierToken
46 public IdentifierToken(long where, Identifier id) { argument
48 this.id = id;
54 public IdentifierToken(Identifier id) { argument
56 this.id = id;
59 public IdentifierToken(long where, Identifier id, int modifiers) { argument
61 this.id = id;
88 getWhere(IdentifierToken id, long defaultWhere) argument
[all...]
H A DMethodType.java93 public String typeString(String id, boolean abbrev, boolean ret) { argument
95 buf.append(id);
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DExtension.java37 private String value, id; field in class:Extension
50 this.id = key + LanguageTag.SEP + value;
62 return id;
/openjdk7/jdk/test/java/rmi/activation/Activatable/restartCrashedService/
H A DRestartCrashedService.java47 private ActivationID id; field in class:RestartCrashedService
55 public RestartCrashedService(ActivationID id, MarshalledObject mobj) argument
58 this.id = id;
59 Activatable.exportObject(this, id, 0);
104 return id;
/openjdk7/jdk/test/java/rmi/activation/Activatable/restartService/
H A DRestartService.java46 private ActivationID id; field in class:RestartService
54 public RestartService(ActivationID id, MarshalledObject mobj) argument
57 this.id = id;
58 Activatable.exportObject(this, id, 0);
95 return id;
/openjdk7/jdk/test/java/rmi/activation/Activatable/shutdownGracefully/
H A DShutdownGracefully.java121 * register another activatable with a new group id; rmid
236 (ActivationID id, MarshalledObject mo) throws RemoteException
239 super(id, 0);
235 ShutdownGracefully(ActivationID id, MarshalledObject mo) argument
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/modifyDescriptor/
H A DModifyDescriptor.java48 private ActivationID id; field in class:ModifyDescriptor
55 public ModifyDescriptor(ActivationID id, MarshalledObject mobj) argument
58 this.id = id;
59 Activatable.exportObject(this, id, 0);
77 return id;
170 ActivationID id = obj.getID();
171 ActivationDesc oldDesc = system.setActivationDesc(id, newDesc);
231 ActivationDesc latestDesc = system.getActivationDesc(id);
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/stubClassesPermitted/
H A DStubClassesPermitted.java185 (ActivationID id, MarshalledObject mo) throws RemoteException
188 super(id, 0);
237 * Ensures that an activation group id can be passed in a remote
184 StubClassesPermitted(ActivationID id, MarshalledObject mo) argument
/openjdk7/jdk/test/java/rmi/activation/ActivationSystem/unregisterGroup/
H A DUnregisterGroup.java48 public UnregisterGroup(ActivationID id, MarshalledObject mobj) argument
51 super(id, 0);
/openjdk7/jdk/test/java/rmi/server/RMISocketFactory/useSocketFactory/activatable/
H A DEchoImpl.java52 public EchoImpl(ActivationID id, MarshalledObject obj) argument
55 super(id, 0,
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DTimeZoneNameProviderImpl.java131 public String getDisplayName(String id, boolean dst, int style, Locale language) { argument
141 if (id.equals(array[0])) {
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationBufferTest.java438 private static NotificationBufferFilter makeFilter(final Integer id, argument
446 notifs.add(new TargetedNotification(notif, id));
/openjdk7/jdk/src/share/classes/sun/print/
H A DPrinterGraphicsDevice.java38 protected PrinterGraphicsDevice(GraphicsConfiguration conf, String id) { argument
39 printerID = id;
/openjdk7/jdk/src/share/classes/sun/reflect/generics/tree/
H A DTypeVariableSignature.java33 private TypeVariableSignature(String id) {identifier = id;} argument
36 public static TypeVariableSignature make(String id) { argument
37 return new TypeVariableSignature(id);
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivatableServerRef.java45 private ActivationID id; field in class:ActivatableServerRef
51 public ActivatableServerRef(ActivationID id, int port) argument
53 this(id, port, null, null);
60 public ActivatableServerRef(ActivationID id, int port, argument
65 this.id = id;
83 return new ActivatableRef(id, new UnicastRef2(ref));
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DDGCAckHandler.java80 private final UID id; field in class:DGCAckHandler
95 DGCAckHandler(UID id) { argument
96 this.id = id;
97 if (id != null) {
98 assert !idTable.containsKey(id);
99 idTable.put(id, this);
142 public static void received(UID id) { argument
143 DGCAckHandler h = idTable.remove(id);
/openjdk7/langtools/test/tools/javac/generics/inference/7086601/
H A DT7086601a.java23 static void test2(Iterable<String> is, Iterable<Integer> ii, Iterable<Double> id) { argument
24 m2(is, ii, id);
31 static void test4(Iterable<String> is, Iterable<Integer> ii, Iterable<Double> id) { argument
32 m3(is, ii, id);
/openjdk7/jaxp/src/com/sun/java_cup/internal/runtime/
H A DSymbol.java53 public Symbol(int id, int l, int r, Object o) { argument
54 this(id);
64 public Symbol(int id, Object o) { argument
65 this(id);

Completed in 113 milliseconds

1234567891011>>