Home
last modified time | relevance | path

Searched refs:method (Results 826 – 850 of 972) sorted by path

1...<<313233343536373839

/plugin/s5reloaded/ui/effects_support/
H A Dcontrols.js639 var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
671 var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
778 var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
816 var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
H A Deffects.js330 var args = $A(arguments), method = args.last(),
332 this.method = Object.isFunction(method) ? method.bind(object) :
333 Object.isFunction(object[method]) ? object[method].bind(object) :
334 function(value) { object[method] = value };
338 this.method(position);
H A Dprototype.js127 var method = value;
130 })(property).wrap(method);
132 value.valueOf = method.valueOf.bind(method);
133 value.toString = method.toString.bind(method);
814 function invoke(method) { argument
1361 method: 'post', property in AnonymousFunction87f8306d4200.options
1371 this.options.method = this.options.method.toLowerCase();
1390 this.method = this.options.method;
1395 this.method = 'post';
2510 Element.Methods[method] = Element.Methods[method].wrap(
[all …]
H A Dunittest.js384 assertRespondsTo: function(method, obj) { argument
387 (obj[method] && typeof obj[method] == 'function') ? this.pass() :
388 this.fail(message + ": object doesn't respond to [" + method + "]"); }
391 assertReturnsTrue: function(method, obj) { argument
394 var m = obj[method];
395 if(!m) m = obj['is'+method.charAt(0).toUpperCase()+method.slice(1)];
400 assertReturnsFalse: function(method, obj) { argument
403 var m = obj[method];
404 if(!m) m = obj['is'+method.charAt(0).toUpperCase()+method.slice(1)];
409 assertRaise: function(exceptionName, method) { argument
[all …]
/plugin/schulzevote/
H A Dplugin.info.txt6 desc a voting system per page using the schulze method
/plugin/scrape/
H A DHTMLPurifier.standalone.php
H A DphpQuery-onefile.php
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DCSS.AllowedProperties.txt
H A DCache.DefinitionImpl.txt
H A DFilter.Custom.txt
/plugin/searchpattern/
H A Dplugin.info.txt6 ….*?<\/todo[\W]*?>/'?? _ToDo ??~~ A other syntax plugin can implement the method _searchpatternHand…
/plugin/securelogin/
H A DREADME.md129 * use PHP5 constructor method for classes
165 * fix problem with URL-rewrite DokuWiki method
/plugin/sequencediagram/bower_components/lodash/
H A DREADME.md52 // Load method categories.
77 …* [lodash](https://www.npmjs.com/package/lodash) & [per method packages](https://www.npmjs.com/bro…
H A Dlodash.js15621 var method = baseRest(function(path, args) {
16594 lodash.method = method;
/plugin/sequencediagram/bower_components/lodash/dist/
H A Dlodash.js15621 var method = baseRest(function(path, args) {
16594 lodash.method = method;
H A Dlodash.min.js102 An.merge=Sf,An.mergeWith=Of,An.method=qf,An.methodOf=Vf,An.mixin=Nu,An.negate=au,An.nthArg=function…
/plugin/sequencediagram/bower_components/lodash/doc/
H A DREADME.md4341 method to cancel delayed `func` invocations and a `flush` method to
5225 **Note:** This method is based on
5291 **Note:** This method is based on
5479 **Note:** This method is based on
10113 method.
10529 _.map(objects, _.method('a.b'));
10544 The opposite of `_.method`; this method creates a function that invokes
10546 provided to the invoked method.
10648 This method returns `undefined`.
11024 This method returns `false`.
[all …]
/plugin/sequencediagram/bower_components/lodash/lib/fp/template/doc/
H A Dwiki.jst33 // Load a method category.
36 // Load a single method for smaller builds with browserify/rollup/webpack.
43 does that really mean for each method? Below is a breakdown of the mapping used
44 to convert each method.
142 Not all variadic methods have corresponding new method variants. Feel free to
151 There are <%= _.size(mapping.aliasToReal) %> method aliases:<br>
159 The placeholder argument, which defaults to `_`, may be used to fill in method
176 on using functional composition as an alternative to method chaining.
180 Although `lodash/fp` & its method modules come pre-converted, there are times
181 when you may want to customize the conversion. That’s when the `convert` method
[all …]
/plugin/sequencediagram/bower_components/lodash/test/
H A Dtest.js15347 var method = _.method(path);
15359 var method = _.method(path);
15370 var method = _.method(path);
15402 var method = _.method(path);
15413 var method = _.method(path);
15425 var method = _.method(path);
15428 return index ? method(value) : method();
15442 var method = _.method(path);
15458 var method = _.method(path);
15473 var method = _.method(path, 1, 2, 3);
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/
H A Dbackbone.js81 return _[method](this[attribute]);
84 return _[method](this[attribute], value);
95 return _[method].apply(_, args);
100 _.each(methods, function(length, method) { argument
101 if (_[method]) Class.prototype[method] = addMethod(length, method, attribute);
1063 collection[method](resp, options);
1326 var method = events[key];
1327 if (!_.isFunction(method)) method = this[method];
1328 if (!method) continue;
1407 var type = methodMap[method];
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/
H A Dcollection.js496 m.sync = function(method, model, options) { options.success(); }; argument
508 m.sync = function(method, model, options) { throw 'should not be called'; };
522 assert.equal(this.syncArgs.method, 'read');
536 collection.sync = function(method, model, options) { options.error(); }; argument
550 collection.sync = function(method, model, opts) {
575 assert.equal(this.syncArgs.method, 'create');
602 sync: function(method, model, options) { argument
995 collection.sync = m.sync = function( method, coll, options ){
1050 model.sync = function(method, m, options){ options.success(); }; argument
1426 sync: function(method, collection, options) { argument
[all …]
H A Dmodel.js555 model.sync = function(method, m, options) { argument
580 model.sync = function(method, m, options) {
598 model.sync = function(method, m, opts) {
616 model.sync = function(method, m, opts) {
631 model.sync = function(method, m, options) {
665 model.sync = function(method, m, options) {
675 model.sync = function(method, m, options) {
698 sync: function(method, m, options) { argument
725 sync: function(method, m, options) { argument
755 sync: function(method, m, options) { argument
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/backbone/test/setup/
H A Denvironment.js25 Backbone.sync = function(method, model, options) { argument
27 method: method, property in env.syncArgs
/plugin/sequencediagram/bower_components/lodash/vendor/firebug-lite/src/
H A Dfirebug-lite-debug.js3553 method: "setTimeout" property in instanceCheckMap.Window
3559 method: "getElementById" property in instanceCheckMap.Document
3565 method: "appendChild" property in instanceCheckMap.Node
3577 method: "assign" property in instanceCheckMap.Location
3617 method: "submit", property in instanceCheckMap.HTMLFormElement
18678 method: null, property in XHRSpy
18949 this.open = function(method, url, async, user, password) argument
18958 spy.method = method;
19486 return file.method.toUpperCase() != "POST";
19491 return file.method.toUpperCase() != "PUT";
[all …]
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
H A Dcollections.js88 _.each(functions, function(method) { argument
89 _[method](trick, function(val, key) {
94 _.each(reducers, function(method) { argument
95 assert.strictEqual(_[method](trick), trick.length, method);
119 _[method](sparseArray, function(){
121 return method === 'every' ? true : null;
126 _[method](growingCollection, function() {
128 return method === 'every' ? true : null;
135 _[method](changingObject, function(val) {
137 return method === 'every' ? true : null;
[all …]

1...<<313233343536373839