Home
last modified time | relevance | path

Searched refs:matcher (Results 26 – 50 of 88) sorted by path

1234

/plugin/edittable/lib/
H A Dhandsontable.full.js9892 function offsetFromString(matcher, string) {
9893 var matches = (string || '').match(matcher);
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md141 The method to add a filter is `DeepCopy\DeepCopy::addFilter($filter, $matcher)`,
143 and `$matcher` implementing `DeepCopy\Matcher\Matcher`.
162 $matcher = new PropertyNameMatcher('id');
174 $matcher = new PropertyMatcher('MyClass', 'id');
187 $matcher = new TypeMatcher('Doctrine\Common\Collections\Collection');
362 - Use a filter with a type matcher
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/
H A DDeepCopy.php94 public function addFilter(Filter $filter, Matcher $matcher) argument
97 'matcher' => $matcher,
102 public function addTypeFilter(TypeFilter $filter, TypeMatcher $matcher) argument
105 'matcher' => $matcher,
213 $matcher = $item['matcher'];
217 if ($matcher->matches($object, $property->getName())) {
253 $matcher = $record['matcher'];
255 return $matcher->matches($var);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Builder/
H A DInvocationMocker.php31 protected $matcher; variable in PHPUnit_Framework_MockObject_Builder_InvocationMocker
46 $this->matcher = new PHPUnit_Framework_MockObject_Matcher(
50 $this->collection->addMatcher($this->matcher);
60 return $this->matcher;
82 $this->matcher->stub = $stub;
199 $this->matcher->afterMatchBuilderId = $id;
211 if ($this->matcher->methodNameMatcher === null) {
218 if ($this->matcher->parametersMatcher !== null) {
234 …$this->matcher->parametersMatcher = new PHPUnit_Framework_MockObject_Matcher_Parameters($arguments…
260 $this->matcher->parametersMatcher = new PHPUnit_Framework_MockObject_Matcher_AnyParameters;
[all …]
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Generator/
H A Dmocked_class.tpl.dist8 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
10 return $this->__phpunit_getInvocationMocker()->expects($matcher);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/
H A DInvocationMocker.php46 * @param PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
50 $this->matchers[] = $matcher;
58 foreach ($this->matchers as $matcher) {
59 if ($matcher->hasMatchers()) {
99 * @param PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
103 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher) argument
107 $matcher,
160 foreach ($this->matchers as $matcher) {
161 if (!$matcher->matches($invocation)) {
174 foreach ($this->matchers as $matcher) {
[all …]
H A DMatcher.php123 $matcher = $builder->getMatcher();
125 if ($matcher && $matcher->invocationMatcher->hasBeenInvoked()) {
177 $matcher = $builder->getMatcher();
179 if (!$matcher) {
183 if (!$matcher->invocationMatcher->hasBeenInvoked()) {
H A DMockObject.php25 * @param PHPUnit_Framework_MockObject_Matcher_Invocation $matcher
29 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/src/Framework/MockObject/Stub/
H A DMatcherCollection.php22 …* @param PHPUnit_Framework_MockObject_Matcher_Invocation $matcher Matcher for invocations to mock …
24 public function addMatcher(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher); argument
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A D232.phpt89 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
91 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dabstract_class.phpt108 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
110 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass.phpt86 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
88 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_call_parent_clone.phpt38 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
40 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_call_parent_constructor.phpt37 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
39 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_dont_call_parent_clone.phpt37 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
39 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_dont_call_parent_constructor.phpt37 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
39 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_implementing_interface_call_parent_constructor.phpt42 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
44 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_implementing_interface_dont_call_parent_constructor.phpt42 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
44 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_partial.phpt64 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
66 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_with_method_named_method.phpt60 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
62 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dclass_with_method_with_variadic_arguments.phpt60 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
62 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dinterface.phpt58 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
60 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dinvocation_object_clone_object.phpt87 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
89 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class.phpt88 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
90 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_call_parent_clone.phpt40 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
42 return $this->__phpunit_getInvocationMocker()->expects($matcher);

1234