Searched refs:functionName (Results 1 - 24 of 24) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/xpath/
H A DXPathFunctionResolver.java56 * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
58 * @param functionName The function name.
61 * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
63 * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
65 public XPathFunction resolveFunction(QName functionName, int arity); argument
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/
H A DForeignCallSiteRelocationInfo.java50 String functionName = DataBuilder.getVMFunctionNameForAddress(foreignCallTargetAddress);
51 if (functionName != null) {
53 String aotSymbol = BinaryContainer.getAOTSymbolForVMFunctionName(functionName);
55 throw new InternalError("no global symbol found for: " + functionName);
/openjdk10/jdk/src/jdk.crypto.cryptoki/windows/native/libj2pkcs11/
H A Dj2secmod_md.c37 void *findFunction(JNIEnv *env, jlong jHandle, const char *functionName) { argument
39 void *fAddress = GetProcAddress(hModule, functionName);
42 _snprintf(errorMessage, sizeof(errorMessage), "Symbol not found: %s", functionName);
/openjdk10/jdk/src/jdk.crypto.cryptoki/unix/native/libj2pkcs11/
H A Dj2secmod_md.c37 void *findFunction(JNIEnv *env, jlong jHandle, const char *functionName) { argument
39 void *fAddress = dlsym(hModule, functionName);
42 snprintf(errorMessage, sizeof(errorMessage), "Symbol not found: %s", functionName);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFunctionAvailableCall.java110 String functionName = _nameOfFunct.substring(colonIndex+1);
111 int lastDotIndex = functionName.lastIndexOf('.');
113 methodName = functionName.substring(lastDotIndex+1);
115 className = className + "." + functionName.substring(0, lastDotIndex);
117 className = functionName.substring(0, lastDotIndex);
120 methodName = functionName;
H A DApplyImports.java139 String functionName = mode.functionName(minPrecedence, maxPrecedence);
145 functionName,
H A DApplyTemplates.java87 parser.getTopLevelStylesheet().getMode(_modeName).functionName();
H A DMode.java193 public String functionName() { method in class:Mode
197 public String functionName(int min, int max) { method in class:Mode
634 functionName(),
758 argTypes, argNames, functionName(),
1117 argTypes, argNames, functionName()+'_'+max,
/openjdk10/jdk/src/jdk.crypto.cryptoki/share/native/libj2pkcs11/
H A Dj2secmod.c74 const char *functionName = NULL; local
82 functionName = (*env)->GetStringUTFChars(env, jFunctionName, NULL);
83 if (functionName == NULL) {
104 if (strcmp("NSS_Init", functionName) == 0) {
113 } else if (strcmp("NSS_InitReadWrite", functionName) == 0) {
121 } else if (strcmp("NSS_NoDB_Init", functionName) == 0) {
133 if (functionName != NULL) {
134 (*env)->ReleaseStringUTFChars(env, jFunctionName, functionName);
H A Dj2secmod.h37 void *findFunction(JNIEnv *env, jlong jHandle, const char *functionName);
/openjdk10/jdk/src/java.smartcardio/unix/native/libj2pcsc/
H A Dpcsc_md.c78 void *findFunction(JNIEnv *env, void *hModule, char *functionName) { argument
79 void *fAddress = dlsym(hModule, functionName);
82 snprintf(errorMessage, sizeof(errorMessage), "Symbol not found: %s", functionName);
/openjdk10/jaxp/test/javax/xml/jaxp/functional/javax/xml/xpath/ptests/
H A DXPathFunctionResolverTest.java60 xpath.setXPathFunctionResolver((functionName,arity) -> null);
64 * Test for resolveFunction(QName functionName,int arity). evaluate will
65 * continue as long as functionName is meaningful.
75 * Test for resolveFunction(QName functionName,int arity); evaluate throws
76 * NPE if functionName is null.
H A DXPathTest.java683 xpath.setXPathFunctionResolver((functionName, arity) -> null);
/openjdk10/jdk/src/java.desktop/macosx/native/libawt_lwawt/awt/
H A DJavaAccessibilityUtilities.h68 void JavaAccessibilityRaiseSetAttributeToIllegalTypeException(const char *functionName, id element, NSString *attribute, id value);
69 void JavaAccessibilityRaiseUnimplementedAttributeException(const char *functionName, id element, NSString *attribute);
70 void JavaAccessibilityRaiseIllegalParameterTypeException(const char *functionName, id element, NSString *attribute, id parameter);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DRecompilableScriptFunctionData.java92 private final String functionName; field in class:RecompilableScriptFunctionData
164 super(functionName(functionNode),
168 this.functionName = functionNode.getName();
326 return functionName;
334 private static String functionName(final FunctionNode fn) { method in class:RecompilableScriptFunctionData
408 parser.setFunctionName(functionName);
416 return (isProgram() ? program : extractFunctionFromScript(program)).setName(null, functionName);
707 log.info("Parameter type specialization of '", functionName, "' signature: ", actualCallSiteType);
787 log.info("Looking up ", DebugLogger.quote(functionName), " type=", targetType);
804 return MH.findStatic(LOOKUP, codeClass, functionName, targetTyp
[all...]
/openjdk10/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DSecmod.java220 boolean initok = nssInitialize(dbMode.functionName, nssHandle,
592 final String functionName; field in class:Secmod.DbMode
593 DbMode(String functionName) { argument
594 this.functionName = functionName;
783 private static native boolean nssInitialize(String functionName, long handle, String configDir, boolean nssOptimizeSpace); argument
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/jaxp/
H A DJAXPExtensionsProvider.java165 String functionName = extFunction.getFunctionName();
168 new javax.xml.namespace.QName( namespace, functionName );
/openjdk10/jdk/src/java.base/windows/native/libjava/
H A DProcessImpl_md.c76 win32Error(JNIEnv *env, const WCHAR *functionName) argument
85 ? swprintf(utf16_javaMessage, MESSAGE_LENGTH, L"%s error=%d, %s", functionName, errnum, utf16_OSErrorMsg)
86 : swprintf(utf16_javaMessage, MESSAGE_LENGTH, L"%s failed, error=%d", functionName, errnum);
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/xpath/
H A DSecureProcessingTest.java152 public XPathFunction resolveFunction(QName functionName, int arity) { argument
H A DXPathAnyTypeTest.java52 Test for resolveFunction(QName functionName,int arity); evaluate throws
53 NPE if functionName is null.
58 xpath.setXPathFunctionResolver((functionName, arity) -> null);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DApplySpecialization.java362 final String functionName = newFunctionNode.getName();
373 functionName,
/openjdk10/jdk/test/javax/xml/jaxp/transform/8004476/
H A DXPathExFuncTest.java198 public XPathFunction resolveFunction(QName functionName, int arity) { argument
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/api/scripting/
H A DScriptObjectMirror.java181 * @param functionName function name
185 public Object callMember(final String functionName, final Object... args) { argument
186 Objects.requireNonNull(functionName);
195 final Object val = sobj.get(functionName);
203 throw new NoSuchMethodException("No such function " + functionName);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc.binformat/src/jdk/tools/jaotc/binformat/
H A DBinaryContainer.java437 * @param functionName function name
440 public static String getAOTSymbolForVMFunctionName(String functionName) { argument
441 return functionNamesToAOTSymbols.get(functionName);

Completed in 108 milliseconds