Lines Matching refs:method

1316   function invoke(array, method) {  argument
1319 …result[i] = args.length ? array[i][method].apply(array[i], args) : array[i][method].call(array[i]);
2279 var method = options.method ? options.method.toUpperCase() : 'GET',
2292 if (method === 'GET') {
2299 xhr.open(method, url, true);
2301 if (method === 'POST' || method === 'PUT') {
3717 method: 'get',
19760 _renderChars: function(method, ctx, chars, left, top) { argument
19761 ctx[method](chars, left, top);
19773 _renderTextLine: function(method, ctx, line, left, top, lineIndex) { argument
19779 this._renderChars(method, ctx, line, left, top, lineIndex);
19795 this._renderChars(method, ctx, words[i], left + leftOffset, top, lineIndex);
19800 this._renderChars(method, ctx, line, left, top, lineIndex);
20956 _renderChars: function(method, ctx, line, left, top, lineIndex) { argument
20959 return this._renderCharsFast(method, ctx, line, left, top);
20987 this._renderChar(method, ctx, lineIndex, i - 1, charsToRender, left, top, lineHeight);
21005 _renderCharsFast: function(method, ctx, line, left, top) { argument
21008 if (method === 'fillText' && this.fill) {
21009 this.callSuper('_renderChars', method, ctx, line, left, top);
21011 …if (method === 'strokeText' && ((this.stroke && this.strokeWidth > 0) || this.skipFillStrokeCheck)…
21012 this.callSuper('_renderChars', method, ctx, line, left, top);
21027 _renderChar: function(method, ctx, lineIndex, i, _char, left, top, lineHeight) { argument
21053 if (method === 'strokeText' && this.stroke) {
21054 ctx[method](_char, left, top);
21056 if (method === 'fillText' && this.fill) {
21057 ctx[method](_char, left, top);
21130 _renderTextLine: function(method, ctx, line, left, top, lineIndex) { argument
21136 this.callSuper('_renderTextLine', method, ctx, line, left, top, lineIndex);
23288 method: 'GET'