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

12345

/openjdk7/jdk/make/common/
H A DDefs-linux.gmk377 LD_MAPFILE_FLAG = -Xlinker --version-script -Xlinker
H A DDefs-macosx.gmk278 LD_MAPFILE_FLAG = -Xlinker --version-script -Xlinker
H A DRelease.gmk295 javax/script \
397 com/sun/tools/script/shell \
627 $(ECHO) "com/sun/tools/script/shell/" >> $@
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java26 package com.sun.script.javascript;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java79 final Element script = getElement("script"); field in class:DTD
H A DParser.java1892 if (elem.getName().equals("script")) {
1977 private static final char[] SCRIPT_END_TAG = "</script>".toCharArray();
1984 /* Here, ch should be the first character after <script> */
1996 /* '</script>' tag detected */
1997 /* Here, ch == the first character after </script> */
2008 error("eof.script");
2050 if (recent == dtd.script) { // means: if after starting <script> tag
2052 /* Here, ch has to be the first character after <script> */
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java211 * <td headers="matches">A Latin&nbsp;script character (<a href="#usc">script</a>)</td></tr>
554 * {@code IsHiragana}, or by using the {@code script} keyword (or its short
555 * form {@code sc})as in {@code script=Hiragana} or {@code sc=Hiragana}.
557 * The script names supported by <code>Pattern</code> are the valid script names
2654 if ("sc".equals(name) || "script".equals(name)) {
2702 final Character.UnicodeScript script;
2704 script = Character.UnicodeScript.forName(name);
2706 throw error("Unknown character script nam
3793 final Character.UnicodeScript script; field in class:Pattern.Script
3794 Script(Character.UnicodeScript script) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DNumericShaper.java80 * represent Unicode ranges for script-specific digits: bit
139 * script having its own decimal digits. For example, the {@link
314 private static int toRangeIndex(Range script) { argument
315 int index = script.ordinal();
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DREADME32 script will create many directories and files, please run it in a
/openjdk7/jdk/test/java/security/cert/CertPathValidator/indirectCRL/
H A DREADME30 script will create many directories and files, please run it in a
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java1436 String script = getString(table_scriptIDs[ii]);
1437 if (script.contains("lucida") ||
1438 script.contains("dingbats") ||
1439 script.contains("symbol")) {
1444 + script
1799 //if we have a "allfonts.script" def, then we just put
1981 //a 20-entry array (5-name x 4-style) for each script
2227 //"name.style.script(.motif)", we dont care anything else
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDocletWriter.java216 script();
231 * Get the script to show or hide the All classes link.
234 * @return a content tree for the script
237 HtmlTree script = new HtmlTree(HtmlTag.SCRIPT);
238 script.addAttr(HtmlAttr.TYPE, "text/javascript");
249 script.addContent(scriptContent);
250 Content div = HtmlTree.DIV(script);
356 * @param includeScript boolean true if printing windowtitle script.
397 // Don't print windowtitle script for overview-frame, allclasses-frame
414 * @param includeScript true if printing windowtitle script
[all...]
/openjdk7/jdk/test/java/util/regex/
H A DRegExTest.java3553 !Pattern.compile("\\p{script=Latin}").matcher("B").matches() ||
3559 Matcher common = Pattern.compile("\\p{script=Common}").matcher("");
3575 Character.UnicodeScript script = Character.UnicodeScript.of(cp);
3578 if (script == lastScript) {
3582 m = Pattern.compile("\\p{Is" + script.name() + "}").matcher(str);
3587 Matcher other = (script == Character.UnicodeScript.COMMON)? unknown : common;
3593 lastScript = script;
/openjdk7/jdk/test/sun/security/provider/certpath/DisabledAlgorithms/
H A DREADME30 script will create many directories and files, please run it in a
/openjdk7/make/scripts/
H A Dwebrev.ksh25 # This script takes a file list and a workspace and builds a set of html files
178 # variable C in the $AWK script below.
180 # The script detects changed lines as any line that has a "<span class="
251 # These editing codes are parsed by the awk script and used to generate
252 # another awk script that generates HTML, e.g the above lines would turn
264 # This script is then run on the original source file to generate the
515 <script type="text/javascript" src="$RTOP/ancnav.js"></script>
626 # The script detects changed lines as any line that has a "<span
907 print "<script typ
[all...]
/openjdk7/jdk/test/
H A DMakefile512 javax/script \
619 # Default JTREG to run (win32 script works for everybody)

Completed in 93 milliseconds

12345