Searched refs:BlockParser (Results 1 – 8 of 8) sorted by relevance
/external/markdown/docs/ |
D | writing_extensions.txt | 13 there are also blockprocessors which are part of the core BlockParser. 26 * [BlockParser][] 134 core BlockParser. This is where additional manipulation of the tree takes 170 <h3 id="blockparser">BlockParser</h3> 175 functionality of the core ``BlockParser``. The BlockParser is composed of a 176 number of Blockproccessors. The BlockParser steps through each block of text 185 The ``test`` method is used by BlockParser to identify the type of block. 187 ``True``, then the BlockParser will call that Blockprocessor's ``run`` method. 188 If it returns ``False``, the BlockParser will move on to the next 217 the previous block. Therefore, the BlockParser was specifically designed to [all …]
|
/external/markdown/markdown/ |
D | blockparser.py | 37 class BlockParser: class
|
D | __init__.py | 223 self.parser = blockparser.BlockParser()
|
/external/libwebm/webm_parser/src/ |
D | block_group_parser.h | 29 MakeChild<BlockParser>(Id::kBlock, &BlockGroup::block), in BlockGroupParser()
|
D | block_parser.h | 121 using BlockParser = BasicBlockParser<Block>; variable
|
/external/libwebm/webm_parser/tests/ |
D | block_parser_test.cc | 35 using webm::BlockParser; 698 class BlockParserTest : public BasicBlockParserTest<BlockParser, Id::kBlock> {};
|
/external/python/cpython3/Lib/test/ |
D | test_clinic.py | 49 self.block_parser = clinic.BlockParser('', self.language) 229 blocks = list(clinic.BlockParser(input, language))
|
/external/python/cpython3/Tools/clinic/ |
D | clinic.py | 1467 class BlockParser: class 1935 self.block_parser = BlockParser(input, self.language, verify=self.verify) 1981 parser_2 = BlockParser(f.read(), language=self.language) 1997 parser_2 = BlockParser(text, self.language) 2060 find_start_re = BlockParser("", language).find_start_re
|