Searched refs:id (Results 1 - 25 of 1478) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/
H A DJDK-8019822.js29 try { function (x) /x/ } finally { (function(id) { return id }); }
H A DJDK-8066932.js31 function C(id) {
32 this.id = id;
36 return this.id;
39 function test(id) {
40 var c = new C(id);
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/spi/
H A DSPIResolutionException.java42 private final int id; field in class:SPIResolutionException
51 * @param id An internal identifier of the specific method
53 public SPIResolutionException(int id) { argument
55 this.id = id;
63 public int id() { method in class:SPIResolutionException
64 return id;
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/
H A DAnnotatedMethodSelectorTest3.java11 static <T> AnnotatedMethodSelectorTest3 id() { method in class:AnnotatedMethodSelectorTest3
15 AnnotatedMethodSelectorTest3.<@A String> id().id().id().id().id();
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
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...]
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/ldap/
H A DBasicControl.java43 protected String id; field in class:BasicControl
64 * @param id The control's object identifier string.
67 public BasicControl(String id) { argument
68 this.id = id;
74 * @param id The control's object identifier string.
81 public BasicControl(String id, boolean criticality, byte[] value) { argument
82 this.id = id;
93 return id;
[all...]
/openjdk10/hotspot/src/share/vm/ci/
H A DciBaseObject.cpp34 void ciBaseObject::set_ident(uint id) { argument
36 assert( id < ((uint)1 << (BitsPerInt-FLAG_BITS)), "id too big");
37 _ident = _ident + (id << FLAG_BITS);
45 uint id = _ident >> FLAG_BITS;
46 assert(id != 0, "must be initialized");
47 return id;
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DThreadAction.java43 int id; field in class:ThreadAction
45 ThreadAction(ThreadReference thread, int id) { argument
47 this.id = id;
54 int id() { method in class:ThreadAction
55 return id;
H A DVMAction.java45 int id; field in class:VMAction
48 VMAction(VirtualMachine vm, int id) { argument
49 this(vm, null, id);
52 // For id = VM_NOT_SUSPENDED, if resumingThread != null, then it is
54 VMAction(VirtualMachine vm, ThreadReference resumingThread, int id) { argument
56 this.id = id;
64 int id() { method in class:VMAction
65 return id;
/openjdk10/jdk/src/java.base/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...]
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DApplicationException.java36 * @param id the repository id of the user exception
39 public ApplicationException(String id, argument
41 this.id = id;
51 return id;
62 private String id; field in class:ApplicationException
/openjdk10/jdk/src/java.desktop/share/classes/sun/print/
H A DDialogOnTop.java40 long id; field in class:DialogOnTop
45 public DialogOnTop(long id) { argument
46 this.id = id;
54 return id;
/openjdk10/jdk/test/java/rmi/activation/Activatable/downloadParameterClass/
H A DFooReceiverImpl.java29 private ActivationID id; field in class:FooReceiverImpl
31 public FooReceiverImpl(ActivationID id, MarshalledObject mobj) argument
34 this.id = id;
35 Activatable.exportObject(this, id, 0);
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/ior/
H A DObjectIdImpl.java34 private byte[] id; field in class:ObjectIdImpl
43 return Arrays.equals( this.id, other.id ) ;
49 for (int ctr=0; ctr<id.length; ctr++)
50 result = 37*result + id[ctr] ;
54 public ObjectIdImpl( byte[] id )
56 this.id = id ;
61 return id ;
66 os.write_long( id
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/copyobject/
H A DCopierManager.java30 * A default copier is also supported, for use in contexts where no specific copier id
37 void setDefaultId( int id ) ;
39 /** Return the copier for the default copier id. Throws a BAD_PARAM exception
40 * if no default copier id has been set.
44 ObjectCopierFactory getObjectCopierFactory( int id ) ;
48 /** Register an ObjectCopierFactory under a particular id. This can be retrieved
51 void registerObjectCopierFactory( ObjectCopierFactory factory, int id ) ;
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DStatusRequestType.java33 final int id; field in class:StatusRequestType
37 private StatusRequestType(int id, String name) { argument
38 this.id = id;
42 static StatusRequestType get(int id) { argument
44 if (ext.id == id) {
48 return new StatusRequestType(id, "type_" + id);
51 private static StatusRequestType e(int id, Strin argument
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathElement.java36 LivenessPathElement(Oop obj, FieldIdentifier id) { argument
38 this.id = id;
46 return (id == null);
54 return id;
61 private FieldIdentifier id; field in class:LivenessPathElement
/openjdk10/nashorn/test/src/jdk/nashorn/api/javaaccess/test/
H A DPerson.java31 public int id = 0; field in class:Person
37 this.id = code;
44 return this.id == o.id;
51 return id;
56 return "Person(" + id + ")";
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DWrongTransaction.java46 super(WrongTransactionHelper.id());
54 super(WrongTransactionHelper.id() + " " + reason);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DIdPattern.java31 public IdPattern(String id) { argument
32 super("##id",id);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DBasicControl.java43 protected String id; field in class:BasicControl
65 * @param id The control's object identifier string.
68 public BasicControl(String id) { argument
69 this.id = id;
75 * @param id The control's object identifier string.
80 public BasicControl(String id, boolean criticality, byte[] value) { argument
81 this.id = id;
94 return id;
[all...]
/openjdk10/langtools/test/tools/javac/diags/examples/
H A DMethodRedundantTypeargs.java28 <Z> Z id(Z z) { return z; } method in class:MethodRedundantTypeargs
31 String s = this.<String>id("");
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements/src/org/graalvm/compiler/replacements/
H A DJavacBug.java40 int id() default 0;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/naming/pcosnaming/
H A DInternalBindingKey.java37 * the lengths of the id and kind strings for faster comparison.
46 public String id; field in class:InternalBindingKey
60 this.id = n.id;
64 // Compare the keys by comparing name's id and kind
70 if( this.id != null && that.id != null )
72 if (this.id.length() != that.id.length() )
76 // If id i
[all...]
/openjdk10/jdk/src/java.base/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);

Completed in 177 milliseconds

1234567891011>>