HomeSort by relevance Sort by last modified time
    Searched defs:tidy (Results 1 - 3 of 3) sorted by null

  /external/markdown/markdown/extensions/
html_tidy.py 4 HTML Tidy Extension for Python-Markdown
7 Runs [HTML Tidy][] on the output of Python-Markdown using the [uTidylib][]
10 Note than any Tidy [options][] can be passed in as extension configs. So,
12 indent the output, set ``indent=auto`` and to have Tidy wrap the output in
15 [HTML Tidy]: http://tidy.sourceforge.net/
17 [options]: http://tidy.sourceforge.net/docs/quickref.html
26 * [HTML Tidy](http://utidylib.berlios.de/)
32 import tidy namespace
49 md.postprocessors['tidy'] = TidyProcessor(md
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
util.rb 23 def tidy( here_doc, flow = false ) method in class:ANTLR3.Util.parse_version
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
pyr_up.hpp 144 const int tidy = threadIdx.y; local
146 sum = sum + 0.0625f * s_dstPatch[2 + tidy - 2][threadIdx.x];
147 sum = sum + 0.25f * s_dstPatch[2 + tidy - 1][threadIdx.x];
148 sum = sum + 0.375f * s_dstPatch[2 + tidy ][threadIdx.x];
149 sum = sum + 0.25f * s_dstPatch[2 + tidy + 1][threadIdx.x];
150 sum = sum + 0.0625f * s_dstPatch[2 + tidy + 2][threadIdx.x];

Completed in 135 milliseconds