Searched refs:fn (Results 51 - 75 of 132) sorted by relevance

123456

/openjdk10/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DMimeTypesFileTypeDetector.java63 Path fn = path.getFileName();
64 if (fn == null)
67 String ext = getExtension(fn.toString());
/openjdk10/jdk/src/jdk.attach/solaris/classes/sun/tools/attach/
H A DVirtualMachineImpl.java232 String fn = ".attach_pid" + pid;
233 String path = "/proc/" + pid + "/cwd/" + fn;
238 f = new File(tmpdir, fn);
/openjdk10/jdk/src/java.base/unix/native/libjava/
H A DProcessHandleImpl_unix.c631 char fn[32]; local
637 snprintf(fn, sizeof fn, "/proc/%d/psinfo", pid);
638 fp = fopen(fn, "r");
680 char fn[32]; local
691 snprintf(fn, sizeof fn, "/proc/%d/path/a.out", pid);
692 if ((ret = readlink(fn, exePath, PATH_MAX - 1)) > 0) {
/openjdk10/jdk/test/java/nio/charset/coders/
H A DCheck.java62 File fn = new File(System.getProperty("test.src", "."), refName);
63 FileChannel fc = new FileInputStream(fn).getChannel();
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DFinalScriptFunctionData.java137 for(final CompiledFunction fn: code) {
138 final MethodType t = fn.type();
H A DCompiledFunction.java789 private void logRecompile(final String reason, final FunctionNode fn, final MethodType type, final Map<Integer, Type> ipp) { argument
791 log.info(reason, DebugLogger.quote(fn.getName()), " signature: ", type);
835 FunctionNode fn = effectiveOptInfo.reparse();
836 final boolean cached = fn.isCached();
837 final Compiler compiler = effectiveOptInfo.getCompiler(fn, ct, re); //set to non rest-of
843 logRecompile("Rest-of compilation [STANDALONE] ", fn, ct, effectiveOptInfo.invalidatedProgramPoints);
844 return restOfHandle(effectiveOptInfo, compiler.compile(fn, cached ? CompilationPhases.COMPILE_CACHED_RESTOF : CompilationPhases.COMPILE_ALL_RESTOF), currentOptInfo != null);
847 logRecompile("Deoptimizing recompilation (up to bytecode) ", fn, ct, effectiveOptInfo.invalidatedProgramPoints);
848 fn = compiler.compile(fn, cache
951 getCompiler(final FunctionNode fn, final MethodType actualCallSiteType, final RewriteException e) argument
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/
H A Djquery-1.10.2.js63 return new jQuery.fn.init( selector, context, rootjQuery );
119 jQuery.fn = jQuery.prototype = {
269 ready: function( fn ) {
271 jQuery.ready.promise().done( fn );
312 jQuery.fn.init.prototype = jQuery.fn;
314 jQuery.extend = jQuery.fn.extend = function() {
436 if ( jQuery.fn.trigger ) {
809 proxy: function( fn, context ) {
813 tmp = fn[ contex
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/external/jquery/
H A Djquery.js63 return new jQuery.fn.init( selector, context, rootjQuery );
119 jQuery.fn = jQuery.prototype = {
269 ready: function( fn ) {
271 jQuery.ready.promise().done( fn );
312 jQuery.fn.init.prototype = jQuery.fn;
314 jQuery.extend = jQuery.fn.extend = function() {
436 if ( jQuery.fn.trigger ) {
809 proxy: function( fn, context ) {
813 tmp = fn[ contex
[all...]
/openjdk10/jdk/src/jdk.attach/macosx/classes/sun/tools/attach/
H A DVirtualMachineImpl.java270 String fn = ".java_pid" + pid;
271 File f = new File(tmpdir, fn);
295 String fn = ".attach_pid" + pid;
296 File f = new File(tmpdir, fn);
/openjdk10/jdk/test/javax/imageio/plugins/tiff/
H A DReadUnknownTagsTest.java87 String fn = "test-" + ignoreMetadata + ".tiff";
88 OutputStream s = new BufferedOutputStream(new FileOutputStream(fn));
128 String fn = "test-" + ignoreMetadata + ".tiff";
129 ImageInputStream s = ImageIO.createImageInputStream(new File(fn));
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/module/
H A DModulePath.java327 String fn = entry.getFileName().toString();
331 if (fn.endsWith(".jar")) {
338 Path target = Files.copy(entry, tmpdir.resolve(fn));
344 if (isDefaultFileSystem && isLinkPhase && fn.endsWith(".jmod")) {
476 String fn = jf.getName();
477 int i = fn.lastIndexOf(File.separator);
479 fn = fn.substring(i + 1);
482 String name = fn.substring(0, fn
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/comp/
H A DSmartFileManager.java211 private static String packageNameFromFileName(String fn) { argument
213 int p = fn.indexOf('_'), pp = 0;
216 sb.append(fn.substring(pp,p));
217 if (p == fn.length()-1) break;
219 p = fn.indexOf('_',pp);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DApplySpecialization.java123 TransformFailedException(final FunctionNode fn, final String message) { argument
124 super(massageURL(fn.getSource().getURL()) + '.' + fn.getName() + " => " + message, null, false, false);
141 public boolean enterFunctionNode(final FunctionNode fn) {
142 return fn == functionNode;
H A DCompiler.java611 MethodType getCallSiteType(final FunctionNode fn) { argument
615 return types.getCallSiteType(fn);
618 Type getParamType(final FunctionNode fn, final int pos) { argument
619 return types == null ? null : types.get(fn, pos);
757 for (final FunctionNode fn : compileUnit.getFunctionNodes()) {
758 initializers.put(fn.getId(), new FunctionInitializer(fn));
828 final RecompilableScriptFunctionData fn = compiledFunction.getScriptFunctionData(functionId);
829 assert fn != null : functionId;
830 return fn;
833 isGlobalSymbol(final FunctionNode fn, final String name) argument
[all...]
/openjdk10/hotspot/src/share/vm/runtime/
H A Datomic.hpp234 static D add_using_helper(Fn fn, I add_value, D volatile* dest);
272 static T cmpxchg_using_helper(Fn fn,
434 inline D Atomic::add_using_helper(Fn fn, I add_value, D volatile* dest) {
436 fn(PrimitiveConversions::cast<Type>(add_value),
540 inline T Atomic::cmpxchg_using_helper(Fn fn,
546 fn(PrimitiveConversions::cast<Type>(exchange_value),
H A DsharedRuntimeTrig.cpp393 double z,w,t,r,fn; local
430 fn = (double)n;
431 r = t-fn*pio2_1;
432 w = fn*pio2_1t; /* 1st round good to 85 bit */
441 w = fn*pio2_2;
443 w = fn*pio2_2t-((t-r)-w);
448 w = fn*pio2_3;
450 w = fn*pio2_3t-((t-r)-w);
/openjdk10/hotspot/src/share/vm/logging/
H A DlogPrefix.hpp98 #define LOG_PREFIX(fn, ...) \
101 size_t ret = fn(buf, len); \
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1ConcurrentMark.inline.hpp64 inline void G1CMMarkStack::iterate(Fn fn) const {
77 fn(cur->data[i]);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/server/
H A DPortFile.java82 * @param fn is the path to the file.
84 public PortFile(String fn) { argument
85 filename = fn;
/openjdk10/nashorn/test/script/basic/
H A DJDK-8144020.js71 function testSequence(fn, values) {
73 fn(values[i]);
/openjdk10/jdk/test/tools/jlink/plugins/
H A DExcludeJmodSectionPluginTest.java179 String fn = String.format("%s/%s",
182 return !expectedFiles.contains(fn);
218 for (String fn : expectedFiles) {
219 Path path = d.resolve(fn);
/openjdk10/jdk/src/jdk.attach/aix/classes/sun/tools/attach/
H A DVirtualMachineImpl.java281 String fn = ".attach_pid" + pid;
282 String path = "/proc/" + pid + "/cwd/" + fn;
287 f = new File(tmpdir, fn);
/openjdk10/jdk/src/jdk.attach/linux/native/libattach/
H A DVirtualMachineImpl.c105 char fn[32]; local
112 sprintf(fn, "/proc/%d/stat", pid);
113 fp = fopen(fn, "r");
/openjdk10/jdk/src/jdk.attach/linux/classes/sun/tools/attach/
H A DVirtualMachineImpl.java278 String fn = ".attach_pid" + pid;
279 String path = "/proc/" + pid + "/cwd/" + fn;
284 f = new File(tmpdir, fn);
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DMethodHandleImpl.java280 MethodHandle fn;
282 fn = getConstantHandle(MH_cast).bindTo(convSpec);
284 fn = (MethodHandle) convSpec;
292 mh = mh.copyWithExtendL(midType, form2, fn);
297 MethodHandle fn;
300 fn = null;
302 fn = getConstantHandle(MH_cast).bindTo(convSpec);
304 fn = (MethodHandle) convSpec;
309 if (fn != null) {
312 mh = mh.copyWithExtendL(midType, form2, fn);
[all...]

Completed in 919 milliseconds

123456