Searched refs:script (Results 76 - 100 of 116) sorted by relevance

12345

/openjdk7/jdk/src/share/sample/scripting/scriptpad/src/resources/
H A Dscriptpad.js42 * This script creates a simple Notepad-like interface, which
43 * serves as a simple script editor, runner.
171 // open script from a URL
282 var script = doc.getText(0, doc.getLength());
283 var oldFile = engine.get(javax.script.ScriptEngine.FILENAME);
286 var m = new javax.script.ScriptEngineManager();
289 engine.put(javax.script.ScriptEngine.FILENAME, frame.title);
290 engine.eval(script, context);
295 engine.put(javax.script.ScriptEngine.FILENAME, oldFile);
301 // show given script a
[all...]
/openjdk7/hotspot/agent/src/os/bsd/
H A DMakefile59 LFLAGS_LIBSA = -Xlinker --version-script=mapfile
/openjdk7/hotspot/agent/src/os/linux/
H A DMakefile60 LFLAGS_LIBSA = -Xlinker --version-script=mapfile
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DMapScriptObject.java31 import javax.script.Invocable;
118 // add a function valued property that invokes given script function
H A DJSJavaScriptEngine.java29 import javax.script.Invocable;
30 import javax.script.ScriptContext;
31 import javax.script.ScriptEngine;
32 import javax.script.ScriptEngineManager;
33 import javax.script.ScriptException;
44 * Simple wrapper around jsr-223 JavaScript script engine.
46 * this class exposed certain "global" functions to the script.
72 * Call the script function of given name passing the
478 // load the init script
646 // underlying jsr-223 script engin
[all...]
H A DJSJavaHeap.java28 import javax.script.ScriptException;
/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleBindings.java26 package javax.script;
H A DSimpleScriptContext.java26 package javax.script;
H A DScriptEngineManager.java26 package javax.script;
72 * If loader is <code>null</code>, the script engine factories that are
76 * @param loader ClassLoader used to discover script engine factories.
399 /** Set of script engine factories discovered. */
402 /** Map of engine name to script engine factory. */
405 /** Map of script file extension to script engine factory. */
408 /** Map of script script MIME type to script engin
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java34 * Iterates over runs of fonts in a CompositeFont, optionally taking script runs into account.
75 * characters that are in the 'common' script become part of the
76 * surrounding script run. we want to fetch these from the same font
83 * 2) get its 'native' script code
84 * 3) determine its 'resolved' script code
85 * 4) if its native script is COMMON, and its resolved script is the same as the previous
88 * 6) break the run when either the physical font or the resolved script changes.
105 * to text runs, however it wishes. we don't necessarily have to provide script info
107 * function that takes script (an
115 next(int script, int lim) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoWrapFactory.java26 package com.sun.script.javascript;
33 * This wrap factory is used for security reasons. JSR 223 script
36 * class loader) uses caller's class loader. This may be exploited by script
H A DExternalScriptable.java26 package com.sun.script.javascript;
28 import javax.script.*;
53 * JSR 223 API. We can just script objects "as is" and need not convert.
428 * We convert script values to the nearest Java value.
445 /* script may use Java primitive wrapper type objects
447 * explicitly. If we unwrap, then these script objects
448 * will become script primitive types. For example,
/openjdk7/jdk/src/macosx/classes/apple/applescript/
H A DAppleScriptEngineFactory.java30 import javax.script.*;
/openjdk7/jdk/test/javax/script/
H A DDummyScriptEngineFactory.java27 * This is script engine factory for dummy engine.
30 import javax.script.*;
H A DMyContext.java28 import javax.script.*;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLEFontInstance.h125 * font and script, so it is best to call this method with text which is
126 * in a single script, passing the script code in as a hint. If you don't
127 * know the script of the text, you can use zero, which is the script code
128 * for characters used in more than one script.
142 * Where it makes sense, they should use the script code as a hint to render
143 * characters from the COMMON script in the font which is used for the given
144 * script. For example, if the input text is a series of Arabic words separated
145 * by spaces, and the script cod
[all...]
H A DSunLayoutEngine.cpp173 jint script, jint lang, jint typo_flags, jobject pt, jobject gvdata,
176 // fprintf(stderr, "nl font: %x strike: %x script: %d\n", font2d, strike, script); fflush(stderr);
181 LayoutEngine *engine = LayoutEngine::layoutEngineFactory(&fia, script, lang, typo_flags & TYPO_MASK, success);
170 Java_sun_font_SunLayoutEngine_nativeLayout(JNIEnv *env, jclass cls, jobject font2d, jobject strike, jfloatArray matrix, jint gmask, jint baseIndex, jcharArray text, jint start, jint limit, jint min, jint max, jint script, jint lang, jint typo_flags, jobject pt, jobject gvdata, jlong upem, jlong layoutTables) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDocumentParser.java142 } else if (elem == dtd.script) {
234 } else if (elem == dtd.script) {
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/oql/
H A DOQLEngine.java47 // Do we have javax.script support?
49 Class<?> managerClass = Class.forName("javax.script.ScriptEngineManager");
77 select &lt;java script code to select&gt;
79 [ where &lt;java script boolean expression&gt; ]
239 public Object evalScript(String script) throws Exception { argument
240 return evalMethod.invoke(engine, new Object[] { script });
263 Class<?> managerClass = Class.forName("javax.script.ScriptEngineManager");
273 Class<?> engineClass = Class.forName("javax.script.ScriptEngine");
280 Class<?> invocableClass = Class.forName("javax.script.Invocable");
/openjdk7/jdk/src/share/demo/scripting/jconsole-plugin/src/com/sun/demo/scripting/jconsole/
H A DScriptJConsolePlugin.java46 import javax.script.*;
51 * This is script console plugin. This class uses javax.script API to create
52 * interactive read-eval-print script shell within the jconsole GUI.
64 // script engine initialization occurs in background.
73 // derived from the script file extension.
96 // initialize the script engine
165 // create and initialize script engine
175 // set pre-defined global variables for script
182 // load initial script fil
[all...]
/openjdk7/jdk/src/share/native/sun/font/
H A DFontInstanceAdapter.h82 le_int32 script, LEErrorCode &success) const {
80 getSubFont(const LEUnicode chars[], le_int32 *offset, le_int32 limit, le_int32 script, LEErrorCode &success) const argument
/openjdk7/jdk/src/solaris/native/java/lang/
H A Djava_props_md.c259 /* Normalize the script and variant name. Note that we only use
489 &(sprops.script),
498 sprops.display_script = sprops.script;
/openjdk7/jdk/src/share/native/java/lang/
H A DSystem.c222 * user.script, user.country, user.variant (if user's environment specifies them)
227 if (sprops->script) {
228 PUTPROP(props, "user.script", sprops->script);
353 * unset "user.language", "user.script", "user.country", and "user.variant"
358 REMOVEPROP(props, "user.script");
377 fillI18nProps(env, props, "user.script",
/openjdk7/jdk/make/docs/
H A DCORE_PKGS.gmk65 javax.script \
185 javax.script \
/openjdk7/jdk/make/launchers/
H A DMakefile79 $(call make-launcher, jrunscript, com.sun.tools.script.shell.Main, , )

Completed in 103 milliseconds

12345