Lines Matching +full:- +full:p
12 $this->P->addMode('eol',new Eol());
13 $this->P->parse("Foo\nBar");
21 $this->assertCalls($calls, $this->H->calls);
25 $this->P->addMode('eol',new Eol());
26 $this->P->parse("Foo\n\nbar\nFoo");
37 $this->assertCalls($calls, $this->H->calls);
41 $this->P->addMode('eol',new Eol());
42 $this->P->parse("Foo\r\nBar");
50 $this->assertCalls($calls, $this->H->calls);
54 $this->P->addMode('linebreak',new Linebreak());
55 $this->P->parse('Foo\\\\ Bar');
65 $this->assertCalls($calls, $this->H->calls);
69 $this->P->addMode('linebreak',new Linebreak());
70 $this->P->addMode('eol',new Eol());
71 $this->P->parse('Foo\\\\'."\n\n".'Bar');
84 $this->assertCalls($calls, $this->H->calls);
88 $this->P->addMode('linebreak',new Linebreak());
89 $this->P->parse('Foo\\\\Bar');
97 $this->assertCalls($calls, $this->H->calls);