Searched refs:HTML (Results 1 - 25 of 108) sorted by relevance

12345

/external/v8/test/webkit/fast/js/kde/
H A Dj-comment-3.js25 <!-- HTML comment (not ECMA)
H A Dj-comment-4.js25 --> end of HTML comment (not ECMA)
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
H A Dhtml.js4 HTML: 'http://www.w3.org/1999/xhtml',
81 HTML: 'html',
172 SPECIAL_ELEMENTS[NS.HTML] = {};
173 SPECIAL_ELEMENTS[NS.HTML][$.ADDRESS] = true;
174 SPECIAL_ELEMENTS[NS.HTML][$.APPLET] = true;
175 SPECIAL_ELEMENTS[NS.HTML][$.AREA] = true;
176 SPECIAL_ELEMENTS[NS.HTML][$.ARTICLE] = true;
177 SPECIAL_ELEMENTS[NS.HTML][$.ASIDE] = true;
178 SPECIAL_ELEMENTS[NS.HTML][$.BASE] = true;
179 SPECIAL_ELEMENTS[NS.HTML][
[all...]
/external/icu/icu4c/source/test/perf/perldriver/
H A DOutput.pm15 my $outType = "HTML";
52 print HTML "<td class=\"";
54 print HTML "value";
56 print HTML "worse";
58 print HTML "\">";
60 print HTML formatPercent(2, $mean);
62 print HTML formatNumber(2, $mult, $mean);
64 print HTML "</td>\n";
65 print HTML "<td class=\"";
67 print HTML "erro
[all...]
/external/icu/icu4j/perf-tests/perldriver/
H A DOutput.pm15 my $outType = "HTML";
52 print HTML "<td class=\"";
54 print HTML "value";
56 print HTML "worse";
58 print HTML "\">";
60 print HTML formatPercent(2, $mean);
62 print HTML formatNumber(2, $mult, $mean);
64 print HTML "</td>\n";
65 print HTML "<td class=\"";
67 print HTML "erro
[all...]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/serialization/
H A Dserializer.js6 HTML = require('../common/html');
9 var $ = HTML.TAG_NAMES,
10 NS = HTML.NAMESPACES;
89 qualifiedTn = (ns === NS.HTML || ns === NS.SVG || ns === NS.MATHML) ? tn : (ns + ':' + tn);
111 var childNodesHolder = tn === $.TEMPLATE && ns === NS.HTML ?
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DMethod.java31 * <li>HTML
59 * The output method type for HTML documents: <tt>html</tt>.
61 public static final String HTML = "html"; field in class:Method
78 * XML or HTML type (depending on the first tag in the output being html or
/external/icu/icu4j/perf-tests/
H A Dconverterperf.pl85 open(HTML,">$html") or die "Can't write to $html: $!";
87 print HTML <<EOF;
88 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
90 <HTML>
96 print HTML "<H1>$title</H1>\n";
98 print HTML "<H2>$TESTCLASS</H2>\n";
107 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
108 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
110 print HTML "<
[all...]
H A Ddateformatperf.pl72 open(HTML,">$html") or die "Can't write to $html: $!";
74 print HTML <<EOF;
75 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
77 <HTML>
83 print HTML "<H1>$title</H1>\n";
85 print HTML "<H2>$TESTCLASS</H2>\n";
94 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
95 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
97 print HTML "<
[all...]
H A Ddecimalformatperf.pl68 open(HTML,">$html") or die "Can't write to $html: $!";
70 print HTML <<EOF;
71 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
73 <HTML>
79 print HTML "<H1>$title</H1>\n";
81 print HTML "<H2>$TESTCLASS</H2>\n";
90 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
91 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
93 print HTML "<
[all...]
H A Dnormperf.pl121 open(HTML,">$html") or die "Can't write to $html: $!";
123 print HTML <<EOF;
124 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
126 <HTML>
132 print HTML "<H1>$title</H1>\n";
134 print HTML "<H2>$TESTCLASS</H2>\n";
143 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
144 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
146 print HTML "<
[all...]
H A Ducharacterperf.pl69 open(HTML,">$html") or die "Can't write to $html: $!";
71 print HTML <<EOF;
72 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
74 <HTML>
80 print HTML "<H1>$title</H1>\n";
82 print HTML "<H2>$TESTCLASS</H2>\n";
91 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
92 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
94 print HTML "<
[all...]
H A Dunicodesetperf.pl59 open(HTML,">$html") or die "Can't write to $html: $!";
61 print HTML <<EOF;
62 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
64 <HTML>
70 print HTML "<H1>$title</H1>\n";
72 print HTML "<H2>$TESTCLASS</H2>\n";
81 print HTML "<P><TABLE $TABLEATTR><TR><TD>\n";
82 print HTML "<P><B>$testMethod vs. $baselineMethod</B></P>\n";
84 print HTML "<
[all...]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
H A Dopen_element_stack_test.js2 HTML = require('../../lib/common/html'),
7 var $ = HTML.TAG_NAMES,
8 NS = HTML.NAMESPACES;
143 var htmlElement = treeAdapter.createElement($.HTML, NS.HTML, []),
155 var htmlElement = treeAdapter.createElement($.HTML, '', []),
178 var htmlElement = treeAdapter.createElement($.HTML, '', []),
201 var htmlElement = treeAdapter.createElement($.HTML, '', []),
243 stack.push(treeAdapter.createElement($.HTML, '', []));
249 stack.push(treeAdapter.createElement($.HTML, '', []));
[all...]
H A Dformatting_element_list_test.js27 element1 = treeAdapter.createElement($.DIV, NS.HTML, []),
28 element2 = treeAdapter.createElement($.P, NS.HTML, []);
46 element1 = treeAdapter.createElement($.DIV, NS.HTML, []),
47 element2 = treeAdapter.createElement($.P, NS.HTML, []),
48 element3 = treeAdapter.createElement($.SPAN, NS.HTML, []),
49 element4 = treeAdapter.createElement($.TITLE, NS.HTML, []);
71 element1 = treeAdapter.createElement($.DIV, NS.HTML, [
75 element2 = treeAdapter.createElement($.DIV, NS.HTML, [
114 element1 = treeAdapter.createElement($.DIV, NS.HTML, [
118 element2 = treeAdapter.createElement($.DIV, NS.HTML, [
[all...]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/
H A Dopen_element_stack.js3 var HTML = require('../common/html'); variable
6 var $ = HTML.TAG_NAMES,
7 NS = HTML.NAMESPACES;
35 return ns === NS.HTML;
43 if (tn === $.HTML)
44 return ns === NS.HTML;
53 return ns === NS.HTML;
64 return (tn === $.APPLET || tn === $.OBJECT) && ns === NS.HTML;
67 return (tn === $.CAPTION || tn === $.MARQUEE) && ns === NS.HTML;
70 return tn === $.TEMPLATE && ns === NS.HTML;
[all...]
/external/autotest/frontend/client/src/autotest/common/ui/
H A DTableSelectionPanel.java7 import com.google.gwt.user.client.ui.HTML;
27 selectPanel.add(new HTML("Select:&nbsp;"));
29 selectPanel.add(new HTML(",&nbsp;"));
34 selectPanel.add(new HTML(",&nbsp;"));
37 selectPanel.add(new HTML("&nbsp;"));
/external/autotest/frontend/client/src/autotest/tko/
H A DMachineQualHistogram.java8 import com.google.gwt.user.client.ui.HTML;
21 * * hosts: HTML list of hosts in this bucket
43 new SimpleDialog("Did not run any of the selected tests:", new HTML(hosts)).center();
47 new SimpleDialog("No hosts in this pass rate range", new HTML()).center();
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/docs/
H A DMakefile26 @echo " html to make standalone HTML files"
27 @echo " dirhtml to make HTML files named index.html in directories"
28 @echo " singlehtml to make a single large HTML file"
31 @echo " htmlhelp to make HTML files and a HTML help project"
32 @echo " qthelp to make HTML files and a qthelp project"
33 @echo " devhelp to make HTML files and a Devhelp project"
55 @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
60 @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
65 @echo "Build finished. The HTML pag
[all...]
/external/chromium-trace/catapult/third_party/html5lib-python/doc/
H A DMakefile26 @echo " html to make standalone HTML files"
27 @echo " dirhtml to make HTML files named index.html in directories"
28 @echo " singlehtml to make a single large HTML file"
31 @echo " htmlhelp to make HTML files and a HTML help project"
32 @echo " qthelp to make HTML files and a qthelp project"
33 @echo " devhelp to make HTML files and a Devhelp project"
55 @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
60 @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
65 @echo "Build finished. The HTML pag
[all...]
/external/icu/icu4c/source/test/perf/collationperf/
H A DCollPerf.pl140 # Print the results in a HTML page
155 open( HTML, ">$html" ) or die "Can't write to $html: $!";
156 print HTML <<EOF;
169 print HTML "<h2>Collation: ICU4C ".$ICULatestVersion." vs. GLIBC</h2>\n";
171 print HTML <<EOF;
209 print HTML <<EOF;
231 close(HTML) or die "Can't close $html: $!";
236 print HTML <<EOF;
255 print HTML "<tr>";
259 print HTML "<t
[all...]
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
H A Dtokenizer_proxy.js6 HTML = require('../common/html');
9 var $ = HTML.TAG_NAMES,
10 NS = HTML.NAMESPACES;
47 this.inForeignContent = namespace !== NS.HTML;
57 this.inForeignContent = this.currentNamespace !== NS.HTML;
94 this._enterNamespace(NS.HTML);
/external/clang/include/clang/Index/
H A DCommentToXML.h36 SmallVectorImpl<char> &HTML,
/external/mesa3d/src/gallium/docs/
H A Dmake.bat17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
21 echo. htmlhelp to make HTML files and a HTML help project
22 echo. qthelp to make HTML files and a qthelp project
39 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
46 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
67 echo.Build finished; now you can run HTML Help Workshop with the ^
/external/chromium-trace/catapult/third_party/gsutil/third_party/crcmod/docs/source/
H A Dmake.bat17 echo. html to make standalone HTML files
18 echo. dirhtml to make HTML files named index.html in directories
19 echo. singlehtml to make a single large HTML file
22 echo. htmlhelp to make HTML files and a HTML help project
23 echo. qthelp to make HTML files and a qthelp project
24 echo. devhelp to make HTML files and a Devhelp project
42 echo.Build finished. The HTML pages are in %BUILDDIR%/html.
49 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml.
56 echo.Build finished. The HTML page
[all...]

Completed in 534 milliseconds

12345