Home
last modified time | relevance | path

Searched refs:matcher (Results 51 – 75 of 88) sorted by path

1234

/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/Generator/
H A Dnamespaced_class_call_parent_constructor.phpt39 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
41 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_dont_call_parent_clone.phpt39 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
41 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_dont_call_parent_constructor.phpt39 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
41 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_implementing_interface_call_parent_constructor.phpt44 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
46 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_implementing_interface_dont_call_parent_constructor.phpt44 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
46 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_class_partial.phpt66 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
68 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnamespaced_interface.phpt60 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
62 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnonexistent_class.phpt35 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
37 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnonexistent_class_with_namespace.phpt41 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
43 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnonexistent_class_with_namespace_starting_with_separator.phpt41 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
43 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dnullable_types.phpt64 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
66 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dproxy.phpt82 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
84 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dreturn_type_declarations_nullable.phpt62 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
64 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dreturn_type_declarations_object_method.phpt65 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
67 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dreturn_type_declarations_self.phpt62 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
64 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dreturn_type_declarations_static_method.phpt48 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
50 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dreturn_type_declarations_void.phpt60 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
62 return $this->__phpunit_getInvocationMocker()->expects($matcher);
H A Dscalar_type_declarations.phpt64 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
66 return $this->__phpunit_getInvocationMocker()->expects($matcher);
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/tests/MockObject/
H A Dclass_with_deprecated_method.phpt66 public function expects(PHPUnit_Framework_MockObject_Matcher_Invocation $matcher)
68 return $this->__phpunit_getInvocationMocker()->expects($matcher);
/plugin/freechat/phpfreechat/data/public/js/
H A Dprototype.js2732 this.matcher = Selector._cache[e];
2736 this.matcher = ["this.matcher = function(root) {",
2744 this.matcher.push(Object.isFunction(c[i]) ? c[i](m) :
2752 this.matcher.push("return h.unique(n);\n}");
2753 eval(this.matcher.join('\n'));
2754 Selector._cache[this.expression] = this.matcher;
2765 this.matcher = ['.//*'];
2770 this.matcher.push(Object.isFunction(x[i]) ? x[i](m) :
2778 this.xpath = this.matcher.join('');
2785 return this.matcher(root);
/plugin/jcapture/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jdraw/lib/
H A Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/s5reloaded/ui/effects_support/
H A Dprototype.js3235 this.matcher = Selector._cache[e];
3239 this.matcher = ["this.matcher = function(root) {",
3248 this.matcher.push(Object.isFunction(c[name]) ? c[name](m) :
3256 this.matcher.push("return h.unique(n);\n}");
3257 eval(this.matcher.join('\n'));
3258 Selector._cache[this.expression] = this.matcher;
3269 this.matcher = ['.//*'];
3275 this.matcher.push(Object.isFunction(x[name]) ? x[name](m) :
3283 this.xpath = this.matcher.join('');
3306 return this.matcher(root);
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/
H A Dbackbone.js113 var matcher = _.matches(attrs);
115 return matcher(model.attributes);
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dobjects.js955 assert.equal(_.matcher({hair: true})(moe), true, 'Returns a boolean');
956 assert.equal(_.matcher({hair: true})(curly), false, 'Returns a boolean');
959 assert.equal(_.matcher({__x__: void 0})({__x__: void 0}), true, 'can match undefined props');
961 assert.equal(_.matcher({})(null), true, 'Empty spec called with null object returns true');
973 assert.equal(_.matcher(item)({a: 1}), true, 'treats primitives as empty');
979 var protospec = _.matcher(specObj);
983 protospec = _.matcher(specObj);
990 assert.ok(_.matcher(Prototest)({x: 5, y: 1}), 'spec can be a function');
994 var m = _.matcher(o);
1003 var oCon = _.matcher({constructor: Object});
[all …]

1234