Lines Matching refs:method

939             var method = util.global[methodName];
940 if (!method) return false;
941 method.apply(util.global, [].slice.call(arguments, 1));
2538 Promise.method = function (fn) { function
3756 var method = callback;
3757 if (typeof method === "string") {
3765 var cb = typeof method === "string" && this !== defaultThis
3766 ? this[method] : callback;
6168 function createConfig(method, args) { argument
6170 method: method property in AnonymousFunctioncdb5859f0100.AnonymousFunctioncdb5859f5c00.createConfig.result
6186 if (method === "POST" || "PUT") {
6201 switch(method) {
6234 method: "get",
6282 (config.method || "GET"),
6330 _call: function(method, url, postData, async, onLoad, headers) {
6355 if (method == "GET" && !this.cache) {
6359 t.open(method, url, async);
6364 } else if (method.toUpperCase() == "POST" || method == "PUT" || method == "DELETE") {
6366 } else if (method == "GET") {
7480 return stateProviders[name].method();
7485 utils.mixin(res, stateProviders[i].method(), true);
7492 stateProviders[name] = { method: provider, internal: internal}; property in AnonymousFunctioncdb5859f0100.AnonymousFunctioncdb5859f7800.StateService.registerProvider.stateProviders
9011 queryParams.method = "GET";
9016 queryParams.method = "POST";
9029 queryParams.method = "POST";
9042 queryParams.method = "POST";
9046 queryParams.method = "DELETE";
9050 queryParams.method = "PUT";
11561 function tryCall(getView, method, args, fallback){ argument
11570 return view[method].apply(view, args);
22100 var method = this.$content.unload || this.$content.destructor;
22101 if (method){
22102 method.call(this.$content);
29434 var method = el.matches || el.msMatchesSelector || el.webkitMatchesSelector;
29436 if (method.call(el, selector)) return el;