Lines Matching +full:- +full:p
16 $this->P->addMode('file',new File());
17 $this->P->parse('Foo <file>testing</file> Bar');
30 $this->assertCalls($calls, $this->H->calls);
34 $this->P->addMode('code',new Code());
35 $this->P->parse('Foo <code>testing</code> Bar');
47 $this->assertCalls($calls, $this->H->calls);
51 $this->P->addMode('code',new Code());
52 $this->P->parse("Foo <code \n>testing</code> Bar");
64 $this->assertCalls($calls, $this->H->calls);
68 $this->P->addMode('code',new Code());
69 $this->P->parse("Foo <code php>testing</code> Bar");
81 $this->assertCalls($calls, $this->H->calls);
85 $this->P->addMode('preformatted',new Preformatted());
86 $this->P->parse("F oo\n x \n y \nBar\n");
98 $this->assertCalls($calls, $this->H->calls);
102 $this->P->addMode('preformatted',new Preformatted());
103 $this->P->parse("F oo\r\n x \r\n y \r\nBar\r\n");
115 $this->assertCalls($calls, $this->H->calls);
119 $this->P->addMode('preformatted',new Preformatted());
120 $this->P->parse("F oo\n\tx\t\n\t\ty\t\nBar\n");
132 $this->assertCalls($calls, $this->H->calls);
136 $this->P->addMode('preformatted',new Preformatted());
137 $this->P->parse("F oo\r\n\tx\t\r\n\t\ty\t\r\nBar\r\n");
149 $this->assertCalls($calls, $this->H->calls);
153 $this->P->addMode('preformatted',new Preformatted());
154 $this->P->addMode('listblock',new Listblock());
155 $this->P->parse(" - x \n * y \nF oo\n x \n y \n -X\n *Y\nBar\n");
175 ['preformatted',["x \n y \n-X\n*Y"]],
181 $this->assertCalls($calls, $this->H->calls);
187 $this->P->addMode('preformatted',new Preformatted());
188 $this->P->addMode('header',new Header());
189 $this->P->addMode('eol',new Eol());
190 $this->P->parse("F oo\n ==Test==\n y \nBar\n");
202 $this->assertCalls($calls, $this->H->calls);