Lines Matching refs:this

22         $this->P->addMode('footnote',new Footnote());
26 $this->P->parse('Foo (( testing )) Bar');
40 $this->assertCalls($calls, $this->H->calls);
44 $this->P->parse("Foo (( testing\n Bar");
52 $this->assertCalls($calls, $this->H->calls);
56 $this->P->addMode('eol',new Eol());
57 $this->P->parse("Foo (( testing\ntesting )) Bar");
71 $this->assertCalls($calls, $this->H->calls);
75 $this->P->parse('Foo (( x((y))z )) Bar');
89 $this->assertCalls($calls, $this->H->calls);
93 $this->P->addMode('eol',new Eol());
94 $this->P->parse("Foo \nX(( test\ning ))Y\n Bar");
108 $this->assertCalls($calls, $this->H->calls);
112 $this->P->addMode('strong',new Strong());
113 $this->P->parse('Foo (( **testing** )) Bar');
131 $this->assertCalls($calls, $this->H->calls);
135 $this->P->addMode('hr',new Hr());
136 $this->P->parse("Foo (( \n ---- \n )) Bar");
152 $this->assertCalls($calls, $this->H->calls);
156 $this->P->addMode('code',new Code());
157 $this->P->parse("Foo (( <code>Test</code> )) Bar");
173 $this->assertCalls($calls, $this->H->calls);
177 $this->P->addMode('preformatted',new Preformatted());
178 $this->P->parse("Foo (( \n Test\n )) Bar");
194 $this->assertCalls($calls, $this->H->calls);
198 $this->P->addMode('preformatted',new Preformatted());
199 $this->P->addMode('eol',new Eol());
200 $this->P->parse("Foo (( \n Test\n )) Bar");
217 $this->assertCalls($calls, $this->H->calls);
221 $this->P->addMode('unformatted',new Unformatted());
222 $this->P->parse("Foo (( <nowiki>Test</nowiki> )) Bar");
238 $this->assertCalls($calls, $this->H->calls);
242 $this->P->addMode('unformatted',new Unformatted());
243 $this->P->parse("Foo (( \n====Test====\n )) Bar");
257 $this->assertCalls($calls, $this->H->calls);
261 $this->P->addMode('table',new Table());
262 $this->P->parse("Foo ((
303 $this->assertCalls($calls, $this->H->calls);
307 $this->P->addMode('listblock',new ListBlock());
308 $this->P->parse("Foo ((
345 $this->assertCalls($calls, $this->H->calls);
349 $this->P->addMode('quote',new Quote());
350 $this->P->parse("Foo ((
374 $this->assertCalls($calls, $this->H->calls);
378 $this->P->addMode('strong',new Strong());
379 $this->P->parse("(( a ** (( b )) ** c ))");
399 $this->assertCalls($calls, $this->H->calls);