Searched defs:signature (Results 26 - 50 of 259) sorted by relevance

1234567891011

/openjdk7/langtools/test/tools/javac/processing/model/element/TestMissingElement2/
H A DGenerator.java69 out.write("class " + signature(e) + " {\n");
81 out.write("interface " + signature(e) + " {\n");
94 String signature(TypeElement e) { method in class:Generator
95 System.err.println("signature: " + e + " " + e.getTypeParameters());
/openjdk7/jdk/test/sun/security/pkcs11/Signature/
H A DByteBuffers.java56 byte[] signature = sig.sign();
67 verify(sig, signature, b2, random);
73 verify(sig, signature, b3, random);
78 verify(sig, signature, b4, random);
83 private static void verify(Signature sig, byte[] signature, ByteBuffer b, Random random) throws Exception { argument
95 if (sig.verify(signature) == false) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeGetPut.java43 // returns the signature of the accessed field
44 public Symbol signature() { method in class:BytecodeGetPut
61 new SignatureConverter(signature(), sigBuf).dispatchField();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassLoaderReferenceImpl.java121 Type findType(String signature) throws ClassNotLoadedException { argument
126 if (type.signature().equals(signature)) {
130 JNITypeParser parser = new JNITypeParser(signature);
H A DTypeImpl.java37 public abstract String signature(); method in class:TypeImpl
41 JNITypeParser parser = new JNITypeParser(signature());
50 return signature().equals(other.signature()) &&
58 return signature().hashCode();
/openjdk7/jdk/src/share/classes/javax/management/
H A DDynamicMBean.java100 * @param signature An array containing the signature of the action. The class objects will
110 public Object invoke(String actionName, Object params[], String signature[]) argument
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DLocalVariable.java95 * Gets the JNI signature of the local variable.
97 * @see <a href="doc-files/signature.html">Type Signatures</a>
98 * @return a string containing the signature.
100 String signature(); method in interface:LocalVariable
103 * Gets the generic signature for this variable if there is one.
107 * @return a string containing the generic signature, or <code>null</code>
108 * if there is no generic signature.
H A DTypeComponent.java61 * Gets the JNI-style signature for this type component. The
62 * signature is encoded type information as defined
69 * @see <a href="doc-files/signature.html">Type Signatures</a>
70 * @return a string containing the signature
72 String signature(); method in interface:TypeComponent
75 * Gets the generic signature for this TypeComponent if there is one.
79 * @return a string containing the generic signature, or <code>null</code>
80 * if there is no generic signature.
/openjdk7/jdk/src/share/classes/com/sun/jmx/interceptor/
H A DMBeanServerInterceptor.java86 String[] signature) throws ReflectionException, MBeanException;
93 Object[] params, String[] signature)
85 instantiate(String className, Object[] params, String[] signature) argument
92 instantiate(String className, ObjectName loaderName, Object[] params, String[] signature) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DInvalidDigestValueException.java21 package com.sun.org.apache.xml.internal.security.signature;
H A DInvalidSignatureValueException.java21 package com.sun.org.apache.xml.internal.security.signature;
26 * Raised if testing the signature value over <i>DigestValue</i> fails because of invalid signature.
H A DNodeFilter.java21 package com.sun.org.apache.xml.internal.security.signature;
H A DReferenceNotInitializedException.java21 package com.sun.org.apache.xml.internal.security.signature;
28 * Raised if verifying a {@link com.sun.org.apache.xml.internal.security.signature.Reference} fails
29 * because of an uninitialized {@link com.sun.org.apache.xml.internal.security.signature.XMLSignatureInput}
H A DXMLSignatureException.java21 package com.sun.org.apache.xml.internal.security.signature;
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaField.java44 private String signature; field in class:JavaField
46 public JavaField(String name, String signature) { argument
48 this.signature = signature;
57 char ch = signature.charAt(0);
66 return signature;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassLoaderReferenceImpl.java96 Type findType(String signature) throws ClassNotLoadedException { argument
101 if (type.signature().equals(signature)) {
105 JNITypeParser parser = new JNITypeParser(signature);
H A DTypeImpl.java39 public abstract String signature(); method in class:TypeImpl
43 JNITypeParser parser = new JNITypeParser(signature());
52 return signature().equals(other.signature()) &&
60 return signature().hashCode();
/openjdk7/hotspot/src/share/vm/runtime/
H A DfieldType.cpp31 #include "runtime/signature.hpp"
33 void FieldType::skip_optional_size(Symbol* signature, int* index) { argument
34 jchar c = signature->byte_at(*index);
37 c = signature->byte_at(*index);
41 BasicType FieldType::basic_type(Symbol* signature) { argument
42 return char2type(signature->byte_at(0));
45 // Check if it is a valid array signature
76 BasicType FieldType::get_array_info(Symbol* signature, FieldArrayInfo& fd, TRAPS) { argument
77 assert(basic_type(signature) == T_ARRAY, "must be array");
80 skip_optional_size(signature,
[all...]
H A DfieldType.hpp34 // A FieldType is used to determine the type of a field from a signature string.
54 static void skip_optional_size(Symbol* signature, int* index);
55 static bool is_valid_array_signature(Symbol* signature);
59 static BasicType basic_type(Symbol* signature);
62 static bool is_array(Symbol* signature) { return signature->utf8_length() > 1 && signature->byte_at(0) == '[' && is_valid_array_signature(signature); } argument
64 static bool is_obj(Symbol* signature) { argument
65 int sig_length = signature
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryPool.cpp93 Symbol* signature = vmSymbols::createMemoryPool_signature(); local
101 signature,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/util/
H A DGenericConstructor.java45 private Class<?>[] signature ; field in class:GenericConstructor
60 * @param signature The signature of the desired constructor.
64 final Class<?>... signature ) {
67 this.signature = signature.clone() ;
80 return type.getDeclaredConstructor( signature ) ;
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DExecutableMemberDoc.java117 * Get the signature. It is the parameter list, type is qualified.
121 String signature(); method in interface:ExecutableMemberDoc
124 * get flat signature. all types are not qualified.
/openjdk7/jdk/src/share/demo/jvmti/waiters/
H A DMonitor.cpp58 char *signature; local
71 err = jvmti->GetClassSignature(klass, &signature, NULL);
72 check_jvmti_error(jvmti, err, "get class signature");
73 if ( signature != NULL ) {
74 (void)strncpy(name, signature, (int)sizeof(name)-1);
75 deallocate(jvmti, signature);
/openjdk7/jdk/test/javax/xml/jaxp/PrecisionDecimalDV/
H A DXPrecisionDecimalToString.java42 private static final Class<?>[] signature = { String.class, String.class, int.class, int.class }; field in class:XPrecisionDecimalToString
58 method = type.getDeclaredMethod(methodName, signature);
/openjdk7/jdk/test/sun/java2d/cmm/ProfileOp/
H A DSetDataTest.java55 int signature; field in class:SetDataTest.TestCase
64 this.signature = sig;
77 profile.setData(signature, data);
127 "Insert new tag with invalid data and unknown signature",

Completed in 44 milliseconds

1234567891011