/external/icu4c/test/perf/perldriver/ |
D | Output.pm | 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 "error"; 69 print HTML "errorLarge"; [all …]
|
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/ |
D | Changes | 1 Revision history for Perl extension HTML::Toc. 10 - Prohibited call with undefined parameter to HTML::Parser->parse() from 11 HTML::_tokenTocEndParser->parse() which caused havoc with version 3.25 12 of HTML::Parser. 13 - Specified 'HTML::Parser' as module that needs to be available in order 14 to use HTML::Toc. 15 - Added protected method HTML::TocGenerator::_setActiveAnchorName(). 17 'HTML::TocUpdator::_doDeleteTokens' by HTML::TocGenerator. 18 HTML::TocUpdator now overrides '_setActiveAnchorName()' to allow 19 the ancestor call to HTML::TocGenerator only when '_doDeleteTokens'
|
D | Toc.pod | 3 HTML::Toc - Generate, insert and update HTML Table of Contents. 7 Generate, insert and update HTML Table of Contents. 11 The HTML::Toc consists out of the following packages: 13 HTML::Toc 14 HTML::TocGenerator 15 HTML::TocInsertor 16 HTML::TocUpdator 18 HTML::Toc is the object which will eventually hold the Table of Contents. HTML::TocGenerator does … 20 HTML::Parser is the base object of HTML::TocGenerator, HTML::TocInsertor and HTML::TocUpdator. Eac… 23 | HTML::Parser | [all …]
|
D | TocInsertor.pm | 9 package HTML::TocInsertor; 14 use HTML::TocGenerator; 255 $tokenTipParser = HTML::_TokenTipParser->new( 316 HTML::TocGenerator::_doesHashContainHash( 319 HTML::TocGenerator::_doesHashContainHash( 606 HTML::TocGenerator::WARNING_NESTED_ANCHOR_PS_WITHIN_PS, 652 HTML::TocGenerator::TT_TOKENTYPE_COMMENT, $aComment, undef, $origText 676 HTML::TocGenerator::TT_TOKENTYPE_DECLARATION, $aDeclaration, undef, 702 HTML::TocGenerator::TT_TOKENTYPE_END, $aTag, undef, $aOrigText 808 HTML::TocGenerator::TT_TOKENTYPE_START, $aTag, $aAttr, $aOrigText [all …]
|
D | TocGenerator.pm | 6 package HTML::TocGenerator; 10 use HTML::Parser; 591 my $tokenTocBeginParser = HTML::_TokenTocBeginParser->new( 594 my $tokenTocEndParser = HTML::_TokenTocEndParser->new(); 878 HTML::TocGenerator::_doesHashContainHash( 881 HTML::TocGenerator::_doesHashContainHash( 1294 package HTML::_TokenTocParser; 1377 package HTML::_TokenTocBeginParser; 1426 HTML::TocGenerator::TT_INCLUDE_ATTRIBUTES_BEGIN 1434 HTML::TocGenerator::TT_EXCLUDE_ATTRIBUTES_BEGIN [all …]
|
D | TocUpdator.pm | 6 package HTML::TocUpdator; 10 use HTML::TocInsertor; 139 if (HTML::TocUpdator::_doesHashEqualHash( 186 my $tokenUpdateBeginParser = HTML::_TokenUpdateParser->new( 190 my $tokenUpdateEndParser = HTML::_TokenUpdateParser->new( 504 if (HTML::TocUpdator::_doesTagExistInArray( 591 package HTML::_TokenUpdateParser; 626 $self->{tokens}[HTML::TocUpdator::TUT_TOKENTYPE_COMMENT]{$aComment} = ''; 639 $self->{tokens}[HTML::TocUpdator::TUT_TOKENTYPE_END]{$aTag} = ''; 668 if (! HTML::TocUpdator::_doesTagExistInArray( [all …]
|
/external/icu4c/test/perf/collationperf/ |
D | CollPerf.pl | 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 "<td align=\"center\">"; 262 print HTML "<font color=\"red\">$value</font>"; [all …]
|
/external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/t/ |
D | options.t | 2 # function: Test HTML::ToC. In particular test the available options. 9 use HTML::Toc; 10 use HTML::TocGenerator; 11 use HTML::TocInsertor; 12 use HTML::TocUpdator; 30 # function: Test 'HTML::Toc' option 'attributeToExcludeToken' 43 my $toc = HTML::Toc->new(); 44 my $tocGenerator = HTML::TocGenerator->new(); 57 <!-- Table of Contents generated by Perl - HTML::Toc --> 67 # function: Test 'HTML::Toc' option 'attributeToTocToken' [all …]
|
D | podExamples.t | 2 # function: Test HTML::ToC. In particular test the examples as described in 10 use HTML::Toc; 11 use HTML::TocGenerator; 12 use HTML::TocInsertor; 13 use HTML::TocUpdator; 37 # function: Test 'HTML::TocGenerator->extendFromFile() 59 my $toc = HTML::Toc->new(); 60 my $tocGenerator = HTML::TocGenerator->new(); 70 <!-- Table of Contents generated by Perl - HTML::Toc --> 81 # function: Test 'HTML::TocGenerator->generateFromFile() [all …]
|
D | format.t | 9 use HTML::Toc; 10 use HTML::TocGenerator; 11 use HTML::TocInsertor; 14 my $toc = HTML::Toc->new; 15 my $tocGenerator = HTML::TocGenerator->new; 16 my $tocInsertor = HTML::TocInsertor->new; 107 my $toc = new HTML::Toc; 108 my $tocGenerator = new HTML::TocGenerator; 118 <!-- Table of Contents generated by Perl - HTML::Toc --> 135 my $toc = new HTML::Toc; [all …]
|
D | insert.t | 9 use HTML::Toc; 10 use HTML::TocGenerator; 11 use HTML::TocInsertor; 14 my $toc = HTML::Toc->new; 15 my $tocGenerator = HTML::TocGenerator->new; 16 my $tocInsertor = HTML::TocInsertor->new; 124 # function: Test putting HTML comment after declaration. 128 my $toc = HTML::Toc->new(); 129 my $tocInsertor = HTML::TocInsertor->new(); 148 <!-- Table of Contents generated by Perl - HTML::Toc --> [all …]
|
D | siteMap.t | 2 # function: Test HTML::ToC generating a manual. 11 use HTML::Toc; 12 use HTML::TocGenerator; 13 use HTML::TocInsertor; 14 use HTML::TocUpdator; 18 my $toc = HTML::Toc->new(); 19 my $tocGenerator = HTML::TocGenerator->new(); 66 <!-- Table of Contents generated by Perl - HTML::Toc -->
|
D | propagate.t | 9 use HTML::Toc; 10 use HTML::TocGenerator; 11 use HTML::TocInsertor; 14 my $toc = HTML::Toc->new; 15 my $tocGenerator = HTML::TocGenerator->new; 16 my $tocInsertor = HTML::TocInsertor->new; 174 $tocInsertor->insert($toc, '<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><h1>Hea… 176 ok($output, '<! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><h1>Header</h1>');
|
/external/webkit/Source/WebKit/qt/docs/ |
D | qtwebkit.qdocconf | 9 outputformats = HTML 18 macro.aring.HTML = "å" 19 macro.Auml.HTML = "Ä" 21 macro.br.HTML = "<br />" 22 macro.BR.HTML = "<br />" 23 macro.aacute.HTML = "á" 24 macro.eacute.HTML = "é" 25 macro.iacute.HTML = "í" 27 macro.hr.HTML = "<hr />" 31 macro.oslash.HTML = "ø" [all …]
|
/external/webkit/Source/WebCore/inspector/ |
D | combine-javascript-resources.pl | 54 open HTML, $htmlFile or die; 55 $htmlContents = <HTML>; 56 close HTML; 79 open HTML, ">", "$outputDirectory/" . basename($htmlFile) or die "Can't open $outputDirectory/" . b… 80 print HTML $htmlContents; 81 close HTML;
|
/external/libvpx/libvpx/examples/includes/geshi/docs/ |
D | phpdoc.ini | 80 ;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmlli… 81 ;; HTML:frames:earthli, 82 ;; HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de, 83 ;; HTML:frames:DOM/phphtmllib,HTML:frames:DOM/earthli 84 ;; HTML:Smarty:default,HTML:Smarty:PHP,HTML:Smarty:HandS 86 output=HTML:frames:earthli
|
/external/markdown/docs/extensions/ |
D | HTML_Tidy.txt | 1 HTML Tidy 4 Runs [HTML Tidy][] on the output of Python-Markdown using the [uTidylib][] 9 [HTML Tidy]: http://tidy.sourceforge.net/ 13 for example, to output HTML rather than XHTML, set ``output_xhtml=0``. To 24 will also treat raw HTML no different than that output by Markdown. In other 25 words, it may munge a document authors carefully crafted HTML. Of course, it 26 may also transform poorly formed raw HTML into nice, valid HTML. Take these
|
/external/webkit/LayoutTests/fast/xpath/ |
D | node-name-case-sensitivity-expected.txt | 3 HTML //*[@id="sometext"]//strong 5 HTML //*[@id="sometext"]//Strong 7 HTML //*[@id="Sometext"]//strong 9 HTML //*[@id="sometext"]//foo 11 HTML //*[@id="sometext"]//FOO
|
/external/clang/docs/tools/ |
D | Makefile | 30 rm -f pod2htm*.*~~ $(HTML) $(MAN) $(PS) 55 HTML := $(patsubst $(SRC_DOC_DIR)%.pod, $(DST_HTML_DIR)%.html, $(POD)) macro 79 html: $(HTML) 86 $(Verb) $(RM) -f pod2htm*.*~~ $(HTML) $(MAN) $(PS) 92 install-html:: $(HTML) 93 $(Echo) Installing HTML Clang Tools Documentation 95 $(Verb) $(DataInstall) $(HTML) $(HTML_DIR)
|
/external/markdown/docs/ |
D | using_as_module.txt | 5 used by various projects to convert Markdown syntax into HTML. 36 class yourself and then use ``convert()`` to generate HTML: 104 that the user's HTML tags are either replaced, removed or escaped. (They can 107 * To replace HTML, set ``safe_mode="replace"`` (``safe_mode=True`` still works 108 for backward compatibility with older versions). The HTML will be replaced 110 ``[HTML_REMOVED]``. To replace the HTML with something else: 112 markdown.HTML_REMOVED_TEXT = "--RAW HTML IS NOT ALLOWED--" 119 * To remove HTML, set ``safe_mode="remove"``. Any raw HTML will be completely 122 * To escape HTML, set ``safe_mode="escape"``. The HTML will be escaped and 128 If Markdown is outputing (X)HTML as part of a web page, most likely you will [all …]
|
/external/clang/docs/ |
D | Makefile | 27 HTML := $(wildcard $(PROJ_SRC_DIR)/*.html) \ macro 32 EXTRA_DIST := $(HTML) $(DOXYFILES) llvm.css CommandGuide img 50 $(Echo) Installing HTML documentation 53 $(Verb) $(DataInstall) $(HTML) $(DESTDIR)$(PROJ_docsdir)/html 57 $(PROJ_OBJ_DIR)/html.tar.gz: $(HTML) 58 $(Echo) Packaging HTML documentation
|
D | make.bat | 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html. 59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. 67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. 91 echo.Build finished; now you can run HTML Help Workshop with the ^
|
/external/clang/docs/analyzer/ |
D | make.bat | 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html. 59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. 67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. 91 echo.Build finished; now you can run HTML Help Workshop with the ^
|
/external/llvm/docs/ |
D | make.bat | 21 echo. html to make standalone HTML files 22 echo. dirhtml to make HTML files named index.html in directories 23 echo. singlehtml to make a single large HTML file 26 echo. htmlhelp to make HTML files and a HTML help project 27 echo. qthelp to make HTML files and a qthelp project 28 echo. devhelp to make HTML files and a Devhelp project 51 echo.Build finished. The HTML pages are in %BUILDDIR%/html. 59 echo.Build finished. The HTML pages are in %BUILDDIR%/dirhtml. 67 echo.Build finished. The HTML pages are in %BUILDDIR%/singlehtml. 91 echo.Build finished; now you can run HTML Help Workshop with the ^
|
/external/chromium/chrome/browser/chromeos/panels/ |
D | panel_browsertest.cc | 32 const std::string HTML = in IN_PROC_BROWSER_TEST_F() local 41 GURL url("data:text/html," + HTML); in IN_PROC_BROWSER_TEST_F() 70 const std::string HTML = in IN_PROC_BROWSER_TEST_F() local 79 GURL url("data:text/html," + HTML); in IN_PROC_BROWSER_TEST_F()
|