Searched refs:fn (Results 101 - 125 of 132) sorted by relevance

123456

/openjdk10/jdk/make/src/classes/build/tools/jigsaw/
H A DModuleSummary.java226 String fn = ze.getName();
227 int pos = fn.indexOf('/');
228 String dir = fn.substring(0, pos);
229 String filename = fn.substring(fn.lastIndexOf('/') + 1);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/parser/
H A DParser.java1161 final FunctionNode fn = propertyFunction.functionNode;
1162 functionDeclarations.add(new ExpressionStatement(fn.getLineNumber(), fn.getToken(), finish, fn));
5507 final ParserContextFunctionNode fn = iter.next();
5509 fn.setFlag(FunctionNode.HAS_EVAL);
5511 if (fn.getKind() == FunctionNode.Kind.ARROW) {
5518 fn.setFlag(FunctionNode.HAS_NESTED_EVAL);
5520 final ParserContextBlockNode body = lc.getFunctionBody(fn);
5525 fn
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DLambdaFormBuffer.java116 private static int indexOf(NamedFunction fn, NamedFunction[] fns) { argument
118 if (fns[i] == fn) return i;
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DClassFileReader.java179 String fn = file.getFileName().toString();
180 return fn.endsWith(".class");
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DSplitter.java99 * @param fn the function to split
102 FunctionNode split(final FunctionNode fn, final boolean top) { argument
103 FunctionNode functionNode = fn;
H A DCodeGenerator.java529 final FunctionNode fn = lc.getCurrentFunction();
530 final int externalDepth = compiler.getScriptFunctionData(fn.getId()).getExternalSymbolDepth(symbol.getName());
534 final int internalDepth = FindScopeDepths.findInternalDepth(lc, fn, startingBlock, symbol);
535 final int scopesToStart = FindScopeDepths.findScopesToStart(lc, fn, startingBlock);
2009 private void initializeInternalFunctionParameter(final CompilerConstants cc, final FunctionNode fn, final Label functionStart, final int slot) { argument
2010 final Symbol symbol = initializeInternalFunctionOrSplitParameter(cc, fn, functionStart, slot);
2015 private Symbol initializeInternalFunctionOrSplitParameter(final CompilerConstants cc, final FunctionNode fn, final Label functionStart, final int slot) { argument
2016 final Symbol symbol = fn.getBody().getExistingSymbol(cc.symbolName());
5043 private boolean generateUnwarrantedOptimismExceptionHandlers(final FunctionNode fn) { argument
5216 loadConstant(getByteCodeSymbolNames(fn));
5229 getByteCodeSymbolNames(final FunctionNode fn) argument
[all...]
/openjdk10/jdk/src/java.desktop/unix/native/common/awt/
H A Dfontpath.c1162 int fn, j, fontCount, nfonts; local
1329 fn=0;
1358 if (fn==0) {
1363 (*env)->SetObjectArrayElement(env, fcFontArr, fn++,fcFont);
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A DtemplateInterpreterGenerator_aarch64.cpp246 address fn; local
249 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dsin);
252 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dcos);
255 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dtan);
258 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dlog);
261 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dlog10);
264 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dexp);
268 fn = CAST_FROM_FN_PTR(address, SharedRuntime::dpow);
272 fn = NULL; // unreachable
275 __ mov(rscratch1, fn);
[all...]
/openjdk10/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DConfig.java198 Config(String fn) throws IOException { argument
199 this.filename = fn;
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DGlobal.java2119 * @param fn the function in question
2122 public static boolean isBuiltInJavaExtend(final ScriptFunction fn) { argument
2123 if(!"extend".equals(fn.getName())) {
2127 return fn == Context.getGlobal().builtInJavaExtend;
2132 * @param fn the function in question
2135 public static boolean isBuiltInJavaTo(final ScriptFunction fn) { argument
2136 if(!"to".equals(fn.getName())) {
2140 return fn == Context.getGlobal().builtInJavaTo;
2310 * @param fn function object that is checked
2311 * @return true if fn i
2313 isEval(final Object fn) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/launcher/
H A DLauncherHelper.java1208 String fn = entry.getFileName().toString();
1209 if (attrs.isRegularFile() && fn.endsWith(".jar")) {
1243 String fn = entry.getFileName().toString();
1244 if (attrs.isRegularFile() && fn.endsWith(".jar")) {
/openjdk10/jdk/test/java/lang/module/
H A DAutomaticModulesTest.java121 public void testNames(String fn, String mid) throws IOException { argument
127 Path jf = dir.resolve(fn);
153 public void testBadNames(String fn, String ignore) throws IOException { argument
155 Path jf = dir.resolve(fn);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DScriptFunction.java496 private static boolean needsWrappedThis(final Object fn) { argument
497 return fn instanceof ScriptFunction ? ((ScriptFunction) fn).needsWrappedThis() : false;
/openjdk10/jdk/src/java.desktop/share/classes/sun/font/
H A DSunFontManager.java1122 int fn = 0;
1125 ttf = new TrueTypeFont(fileName, nativeNames, fn++,
1132 while (fn < ttf.getFontCount());
1558 int fn = 0;
1566 ttf = new TrueTypeFont(fullPath, null, fn++, false);
1579 while (fn < ttf.getFontCount());
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1ConcurrentMark.hpp214 template<typename Fn> void iterate(Fn fn) const PRODUCT_RETURN;
/openjdk10/hotspot/src/share/vm/gc/shared/
H A Dtaskqueue.hpp297 // Apply fn to each element in the task queue. The queue must not
299 template<typename Fn> void iterate(Fn fn);
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Toolkit.h558 bool InvokeAndTerminate(void(_cdecl *fn)(void *), void *param);
H A Dawt_Toolkit.cpp1999 bool AwtToolkit::PreloadThread::InvokeAndTerminate(void(_cdecl *fn)(void *), void *param)
2007 execFunc = fn;
2009 status = fn == NULL ? Cleaning : RunningToolkit;
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/javac/
H A DBatchEnvironment.java839 String fn = (String)c.getClassDefinition().getSource();
840 srcfile = ClassFile.newClassFile(new File(fn));
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jmod/
H A DJmodTask.java1028 String fn = path.getFileName().toString();
1029 if (!fn.endsWith(".jar") && !fn.endsWith(".jmod")) {
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DLocations.java1374 String fn = p.getFileName().toString();
1378 String mn = fn.substring(0, fn.length()-4);
/openjdk10/jdk/src/jdk.jartool/share/classes/sun/tools/jar/
H A DMain.java1793 String fn = zipFile.getName();
1794 ModuleFinder mf = ModuleFinder.of(Paths.get(fn));
1798 output(formatMsg("error.unable.derive.automodule", fn));
1805 String msg = formatMsg("error.unable.derive.automodule", fn);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java358 JCExpression fn,
361 JCMethodInvocation tree = new JCMethodInvocation(typeargs, fn, args);
357 Apply(List<JCExpression> typeargs, JCExpression fn, List<JCExpression> args) argument
/openjdk10/jdk/src/java.base/share/classes/java/math/
H A DBigInteger.java4492 int fn = firstNonzeroIntNumPlusTwo - 2;
4493 if (fn == -2) { // firstNonzeroIntNum not initialized yet
4499 fn = mlen - i - 1;
4500 firstNonzeroIntNumPlusTwo = fn + 2; // offset by two to initialize
4502 return fn;
/openjdk10/hotspot/src/share/vm/services/
H A Dmanagement.cpp1595 oop fn = JNIHandles::resolve_external_guard(flag_name); variable
1596 if (fn == NULL) {
1600 char* name = java_lang_String::as_utf8_string(fn);

Completed in 487 milliseconds

123456