HomeSort by relevance Sort by last modified time
    Searched refs:HTML (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium/third_party/icu/source/test/perf/perldriver/
Output.pm 15 my $outType = "HTML";
16 my $html = "noName";
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=\""
    [all...]
  /external/icu4c/test/perf/perldriver/
Output.pm 15 my $outType = "HTML";
16 my $html = "noName";
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=\""
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
Method.java 31 * <li>HTML
59 * The output method type for HTML documents: <tt>html</tt>.
61 public static final String HTML = "html";
78 * XML or HTML type (depending on the first tag in the output being html or
  /external/webkit/WebCore/
combine-javascript-resources 27 # the script tags in the head of an input HTML file.
40 'input-html=s' => \$htmlFile);
43 print "Usage: $0 --input-html <path> --output-dir path --output-script-name <name>\n";
52 open HTML, $htmlFile or die;
53 $htmlContents = <HTML>;
54 close HTML;
77 open HTML, ">", "$outputDirectory/" . basename($htmlFile) or die "Can't open $outputDirectory/" . basename($htmlFile) . ": $!";
78 print HTML $htmlContents;
79 close HTML;
  /external/libvpx/examples/includes/HTML-Toc-0.91/
TocUpdator.pm 1 #==== HTML::TocUpdator ========================================================
2 # function: Update 'HTML::Toc' table of contents.
6 package HTML::TocUpdator;
10 use HTML::TocInsertor;
18 @ISA = qw(HTML::TocInsertor);
35 #--- HTML::TocUpdator::new() --------------------------------------------------
57 #--- HTML::TocUpdator::_deinitializeUpdatorBatch() --------------------------
71 #--- HTML::TokenUpdator::_doesHashEqualHash() ---------------------------------
112 #--- HTML::TokenUpdator::_doesTagExistInArray() -------------------------------
139 if (HTML::TocUpdator::_doesHashEqualHash
    [all...]
TocInsertor.pm 2 # function: Insert Table of Contents HTML::Toc, generated by
3 # HTML::TocGenerator.
9 package HTML::TocInsertor;
14 use HTML::TocGenerator;
22 @ISA = qw(HTML::TocGenerator);
44 #--- HTML::TocInsertor::new() -------------------------------------------------
64 #--- HTML::TocInsertor::_deinitializeOutput() ---------------------------------
81 #--- HTML::TocInsertor::_initializeOutput() -----------------------------------
121 #--- HTML::TocInsertor::_deinitializeInsertorBatch() --------------------------
151 #--- HTML::TocInsertor::_initializeInsertorBatch() ---------------------------
    [all...]
TocGenerator.pm 1 #=== HTML::TocGenerator =======================================================
2 # function: Generate 'HTML::Toc' table of contents.
6 package HTML::TocGenerator;
10 use HTML::Parser;
18 @ISA = qw(HTML::Parser);
71 #--- HTML::TocGenerator::new() ------------------------------------------------
93 #--- HTML::TocGenerator::_deinitializeBatch() ---------------------------------
101 #--- HTML::TocGenerator::_deinitializeExtenderBatch() -------------------------
115 #--- HTML::TocGenerator::_deinitializeGeneratorBatch() ------------------------
125 #--- HTML::TocGenerator::_doesHashContainHash() ------------------------------
    [all...]
  /external/webkit/WebKitTools/Scripts/
make-script-test-wrappers 29 # Script to generate HTML wrappers for JavaScript tests from templates
67 if ($tpath =~ s:/(script-tests)/TEMPLATE.html$::) {
69 $templateRelativePath = $1 . "/TEMPLATE.html";
91 if (-e "${templateDirectory}/TEMPLATE-n.html") {
92 open TEMPLATE, "<${templateDirectory}/TEMPLATE-n.html";
98 my $html = $file;
99 $html =~ s:${templateDirectory}/(.*)\.js:$1.html:;
100 next if -f "$html-disabled";
108 print " ${html}\n"
    [all...]
run-webkit-tests 37 # If no tests are passed, find all the .html, .shtml, .xml, .xhtml, .pl, .php (and svg) files in the test directory.
399 my $testResults = File::Spec->catfile($testResultsDirectory, "results.html");
419 my %ignoredFiles = ( "results.html" => 1 );
422 my %supportedFileExtensions = map { $_ => 1 } qw(html shtml xml xhtml pl php);
657 my $errorMessagePath = "$testDirectory/websocket/resources/server-failed-to-start.html";
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-31255.js 44 * Note: <!--, --> are the HTML multi-line comment opener, closer.
60 <!-- HTML comment start is already a single-line JS comment indicator
68 --> HTML comment end is JS comments until end-of-line
  /external/chromium/third_party/icu/source/test/perf/collationperf/
CollPerf.pl 140 # Print the results in a HTML page
148 my $html = localtime;
149 $html =~ s/://g; # ':' illegal
150 $html =~ s/\s*\d+$//; # delete year
151 $html =~ s/^\w+\s*//; # delete dow
152 $html = "CollationPerformance $html.html";
153 $html = "../results/" . $html;
    [all...]
  /external/icu4c/test/perf/collationperf/
CollPerf.pl 140 # Print the results in a HTML page
148 my $html = localtime;
149 $html =~ s/://g; # ':' illegal
150 $html =~ s/\s*\d+$//; # delete year
151 $html =~ s/^\w+\s*//; # delete dow
152 $html = "CollationPerformance $html.html";
153 $html = "../results/" . $html;
    [all...]
  /external/clearsilver/ports/freebsd/
Makefile 15 COMMENT= ClearSilver is a fast, powerful, and language-neutral HTML template system.
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 45 * Switch to HTML serializer if element is HTML
63 && localName.equalsIgnoreCase("html"))
76 // defaults for the HTML method. The easiest way to do this is to
78 OutputProperties htmlOutputProperties = new OutputProperties(Method.HTML);
140 * Switch to HTML serializer if element is HTML
156 && localName.equalsIgnoreCase("html"))
169 // defaults for the HTML method. The easiest way to do this is to
171 OutputProperties htmlOutputProperties = new OutputProperties(Method.HTML);
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Tag.java 5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
22 public static final Tag HTML = new TagImpl ("HTML");
HTMLDocument.java 5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
30 super (Tag.HTML, AttributeSet.create ());
42 .set (Attribute.CONTENT, "text/html; charset=" + encoding);
  /external/webkit/WebCore/loader/
TextResourceDecoder.h 70 enum ContentType { PlainText, HTML, XML, CSS }; // PlainText only checks for BOM.
TextResourceDecoder.cpp 308 if (equalIgnoringCase(mimeType, "text/html"))
309 return HTML;
547 // through the HTML head several times.
562 // Handle XML declaration, which can have encoding in it. This encoding is honored even for HTML documents.
563 // It is an error for an XML declaration not to be at the start of an XML document, and it is ignored in HTML documents in such case.
797 if ((m_contentType == HTML || m_contentType == XML) && !m_checkedForHeadCharset) // HTML and XML
837 && ((!m_checkedForHeadCharset && (m_contentType == HTML || m_contentType == XML)) || (!m_checkedForCSSCharset && (m_contentType == CSS)))) {
  /external/e2fsprogs/doc/
Makefile.in 17 HTML=texi2html
55 $(RM) -f *.ps *.info *.info-? *.html
  /external/clearsilver/ports/rpm/
clearsilver.spec 19 # http://archive.develooper.com/perl-dist@perl.org/msg00055.html
78 ClearSilver is a fast, powerful, and language-neutral HTML template system.
79 In both static content sites and dynamic HTML applications, it provides a
166 %{__prefix}/include/ClearSilver/cgi/html.h
  /external/webkit/WebKitTools/Scripts/webkitpy/
bugzilla_unittest.py 57 - If you do not have review rights please read http://webkit.org/coding/contributing.html for instructions on how to use bugzilla flags.
223 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
225 <html>
247 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
249 <html>
290 </html>
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 3 # Markdown Extra - A text-to-HTML conversion tool for web writers
23 # Change to ">" for HTML output
170 'description' => 'A text-to-HTML conversion tool for web writers',
229 # Change to ">" for HTML output.
319 # Turn block-level HTML blocks into hash entries
389 # Hashify HTML blocks:
390 # We only want to do this for block-level HTML tags, such as headers,
494 | # Special case for standalone HTML comments:
576 # We need to escape raw HTML in Markdown source before doing anything
588 # Run block gamut tranformations, without hashing HTML blocks. This i
    [all...]
  /external/libvpx/examples/includes/PHP-SmartyPants-1.5.1e/
smartypants.php 39 Description: SmartyPants is a web publishing utility that translates plain ASCII punctuation characters into &#8220;smart&#8221; typographic punctuation HTML entities. This plugin <strong>replace the default WordPress Texturize algorithm</strong> for the content and the title of your posts, the comments body and author name, and everywhere else Texturize normally apply. Based on the original Perl version by <a href="http://daringfireball.net/">John Gruber</a>.
246 # an HTML tag. Add a space to give the quote education algorithm a bit of
407 # Returns: The string, with "educated" curly quote HTML entities.
496 # translated into HTML curly quote entities.
512 # translated into HTML curly quote entities.
529 # an em-dash HTML entity.
542 # an en-dash HTML entity, and each "---" translated to
543 # an em-dash HTML entity.
558 # an em-dash HTML entity, and each "---" translated to
559 # an en-dash HTML entity. Two reasons why: First, unlike th
    [all...]
  /external/v8/test/mjsunit/
html-string-funcs.js 29 // HTML.
  /external/bison/djgpp/
config.bat 46 set HTML=enabled
47 if not "%HTML%" == "enabled" goto SmallEnv
124 if "%1" == "withouthtml" set HTML=disabled
125 if "%1" == "withoutHTML" set HTML=disabled
126 if "%1" == "WITHOUTHTML" set HTML=disabled
127 if not "%HTML%" == "disabled" goto SmallEnv
154 if "%HTML%" == "enabled" echo --enable-html >> arguments
155 if "%HTML%" == "disabled" echo --disable-html >> arguments
    [all...]

Completed in 235 milliseconds

1 2