/external/markdown/tests/extensions-x-toc/ |
nested.txt | 9 [TOC]
|
invalid.html | 1 <h2 id="toc">[TOC]</h2> 3 <p>The TOC marker cannot be inside a header. This test makes sure markdown doesn't 5 clue the author in that s/he needs to add a blank line between the TOC and
|
invalid.txt | 0 [TOC] 6 The TOC marker cannot be inside a header. This test makes sure markdown doesn't 8 clue the author in that s/he needs to add a blank line between the TOC and
|
/external/libvpx/examples/includes/HTML-Toc-0.91/ |
Makefile.PL | 4 'NAME' => 'HTML::Toc',
5 'VERSION_FROM' => 'Toc.pm',
|
Toc.pod | 3 HTML::Toc - Generate, insert and update HTML Table of Contents. 11 The HTML::Toc consists out of the following packages: 13 HTML::Toc 18 HTML::Toc is the object which will eventually hold the Table of Contents. HTML::TocGenerator does the actual generation of the ToC. HTML::TocInsertor handles the insertion of the ToC in the source. HTML::TocUpdator takes care of updating previously inserted ToCs. 32 | HTML::TocGenerator + - - - - - -+ HTML::Toc | 61 When generating a ToC you'll have to decide which object you want to use: 64 for generating a ToC without inserting the ToC into the sourc [all...] |
MANIFEST | 2 Toc.pod
3 Toc.pm
|
TocInsertor.pm | 2 # function: Insert Table of Contents HTML::Toc, generated by 5 # both generating and inserting a ToC at the same time. 6 # - 'TIP' is an abbreviation of 'Toc Insertion Point'. 55 # Bias to not insert ToC 127 # Indicate ToC insertion has finished 185 # Parse ToC insertion points 191 # function: Insert ToC in string. 201 # Generate & insert ToC 205 # No, just insert ToC 216 # args: - $aToc: (reference to array of) ToC object(s) to insert 356 sub toc { subroutine [all...] |
TocUpdator.pm | 2 # function: Update 'HTML::Toc' table of contents. 3 # note: - 'TUT' is an abbreviation of 'Toc Update Token'. 42 # Bias to not update ToC 64 # Indicate end of ToC updating 161 # note: Updating actually means: deleting the old ToC and inserting a new 162 # ToC. That's why we're calling 'insertor' methods here. 169 # Parse ToC update templates 171 # Indicate start of ToC updating 177 # function: Parse ToC insertion point specifier. 183 my ($toc, $tokenType, $tokenPreposition, $token) 524 sub toc { subroutine [all...] |
Toc.pm | 1 #=== HTML::Toc ================================================================ 5 package HTML::Toc; 63 #--- HTML::Toc::new() --------------------------------------------------------- 75 # Empty toc 91 #--- HTML::Toc::_compareLevels() ---------------------------------------------- 177 #--- HTML::Toc::_formatToc() -------------------------------------------------- 178 # function: Format ToC. 181 # - aToc: ToC to format. 255 # Assemble TOC (recursive) for next level 284 #--- HTML::Toc::_parseTokenGroups() ------------------------------------------ [all...] |
/external/bzip2/ |
bz-common.xsl | 20 <xsl:param name="generate.toc"> 21 set toc,title 22 book toc,title,figure,table,example,equation 23 chapter toc,title 24 section toc 25 sect1 toc 26 sect2 toc 27 sect3 toc 30 qandaset toc 32 appendix toc,titl [all...] |
/external/libvpx/examples/includes/HTML-Toc-0.91/t/ |
extend.t | 2 # function: Test ToC generation. 9 use HTML::Toc; 13 my $toc = HTML::Toc->new; 16 $toc->setOptions({ 44 # Generate ToC 45 $tocGenerator->generate($toc, "<h1>Header</h1>"); 46 # Extend ToC 47 $tocGenerator->extend($toc, "<h1>Header</h1>"); 48 # Test ToC [all...] |
options.t | 2 # function: Test HTML::ToC. In particular test the available options. 9 use HTML::Toc; 30 # function: Test 'HTML::Toc' option 'attributeToExcludeToken' 43 my $toc = HTML::Toc->new(); 46 $toc->setOptions({ 52 # Generate ToC 53 $tocGenerator->generateFromFile($toc, $filename); 54 # Test ToC 55 ok($toc->format(), <<EOT) [all...] |
format.t | 2 # function: Test ToC formatting. 9 use HTML::Toc; 14 my $toc = HTML::Toc->new; 18 $toc->setOptions({ 46 $toc->setOptions({ 49 $tocInsertor->insert($toc, "<h1>Header</h1>", {'output' => \$output}); 51 $toc->setOptions({'templateLevelBegin' => undef}); 56 $tocGenerator->generate($toc, "<h1>Header1</h1>\n<h2>Header2</h2>"); 57 $toc->setOptions({'levelToToc' => '1'}) [all...] |
insert.t | 2 # function: Test ToC insertion. 9 use HTML::Toc; 14 my $toc = HTML::Toc->new; 18 $toc->setOptions({ 45 $toc->setOptions({'insertionPoint' => 'before <h1>'}); 46 # Generate ToC 47 $tocGenerator->generate($toc, "<h1>Header</h1>"); 48 $tocInsertor->insert($toc, "<h1>Header</h1>", { 52 # Test ToC [all...] |
generate.t | 2 # function: Test ToC generation. 9 use HTML::Toc; 13 my $toc = HTML::Toc->new; 16 $toc->setOptions({ 44 $tocGenerator->generate($toc, "<h1>Header</h1>"); 45 ok($toc->format(), "<ul>\n<li>Header\n</ul>"); 50 $tocGenerator->generateFromFile($toc, $filename); 51 ok($toc->format(), "<ul>\n<li>Header\n</ul>"); 56 $tocGenerator->generateFromFile($toc, [$filename, $filename]) [all...] |
podExamples.t | 2 # function: Test HTML::ToC. In particular test the examples as described in 10 use HTML::Toc; 59 my $toc = HTML::Toc->new(); 62 # Set ToC options 63 $toc->setOptions({'doLinkToFile' => 1}); 64 # Generate ToC 65 $tocGenerator->generateFromFile($toc, $filename); 66 $tocGenerator->extendFromFile($toc, $filename2); 67 # Test ToC [all...] |
propagate.t | 2 # function: Test ToC propagation. 9 use HTML::Toc; 14 my $toc = HTML::Toc->new; 18 $toc->setOptions({ 46 $tocInsertor->insert($toc, "<h1>Header</h1>", {'output' => \$output}); 52 $tocInsertor->insertIntoFile($toc, $filename, {'output' => \$output}); 58 $toc->setOptions({'doLinkToToken' => 1}); 59 $tocInsertor->insert($toc, "<h1>Header</h1>", {'output' => \$output}); 69 $toc->setOptions [all...] |
siteMap.t | 2 # function: Test HTML::ToC generating a manual. 11 use HTML::Toc; 18 my $toc = HTML::Toc->new(); 27 # Set ToC options 28 $toc->setOptions({ 57 # Generate ToC of case-insensitively sorted file list 59 $toc, [sort {uc($a) cmp uc($b)} @fileList] 63 # Test ToC 64 ok($toc->format(), <<EOT) [all...] |
update.t | 2 # function: Test ToC updating. 9 use HTML::Toc; 13 my $toc = HTML::Toc->new; 16 $toc->setOptions({ 45 $tocUpdator->update($toc, "<h1>Header</h1>", {'output' => \$output}); 54 $tocUpdator->updateFile($toc, $filename, {'output' => \$output}); 69 $tocUpdator->insert($toc, "<h1>Header</h1>", {'output' => \$output}); 78 $tocUpdator->insertIntoFile($toc, $filename, {'output' => \$output}); 88 $tocUpdator->update($toc, "<h1>Header</h1>", {'output' => \$output}) [all...] |
/external/clang/test/SemaObjCXX/ |
conversion-ranking.mm | 39 void test_f1(ConvertsTo<B*> toB, ConvertsTo<C*> toC, ConvertsToBoth toBoth) { 41 f1(toC); 67 void test_f4(ConvertsTo<B*> toB, ConvertsTo<C*> toC, ConvertsToBoth toBoth) { 69 f4(toC); 75 void test_f5(ConvertsTo<B*> toB, ConvertsTo<C*> toC, ConvertsToBoth toBoth) { 77 f5(toC);
|
/external/dropbear/libtomcrypt/ |
fixupind.pl | 4 print OUT "$a\n\\addcontentsline{toc}{chapter}{Index}\n";
|
/external/markdown/docs/extensions/ |
Tables_of_Contents.txt | 16 marker. The marker defaults to ``[TOC]`` so the following document: 18 [TOC] 26 <div class="toc"> 43 to ``[TOC]``. 48 * **title**: Title to insert in TOC ``<div>``. Defaults to ``None``.
|
/external/qemu/distrib/sdl-1.2.12/src/cdrom/dc/ |
SDL_syscdrom.c | 77 CDROM_TOC toc; local 80 ret = cdrom_read_toc(&toc,0); 85 cdrom->numtracks = TOC_TRACK(toc.last)-TOC_TRACK(toc.first)+1; 87 unsigned long entry = toc.entry[i]; 89 cdrom->track[i].type = (TOC_CTRL(toc.entry[i])==TRACK_CDDA)?SDL_AUDIO_TRACK:SDL_DATA_TRACK; 91 cdrom->track[i].length = TOC_LBA((i+1<toc.last)?toc.entry[i+1]:toc.leadout_sector)-TOC_LBA(entry);
|
/external/valgrind/main/docs/lib/ |
vg-html-common.xsl | 27 <!-- set toc-levels --> 28 <xsl:param name="generate.toc"> 29 set toc,title 30 book toc,title,figure,table,example,equation 31 chapter toc,title 32 section toc 33 sect1 toc 34 sect2 toc 35 sect3 toc 38 qandaset toc [all...] |
/external/icu4c/common/ |
ucmndata.c | 91 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc; local 92 if (toc != NULL) { 93 retVal = toc->count; 104 const UDataOffsetTOC *toc = (UDataOffsetTOC *)pData->toc; local 105 if(toc!=NULL) { 106 const char *base=(const char *)toc; 113 /* list the contents of the TOC each time .. not recommended */ 114 for(start=0;start<toc->count;start++) 165 const PointerTOC *toc = (PointerTOC *)pData->toc; local 175 const PointerTOC *toc = (PointerTOC *)pData->toc; local [all...] |