Lines Matching refs:normalizeAsync
15 tr.normalizeAsync = normalizeAsync;
67 function normalizeAsync(result, cb) { function
231 return tr.normalizeAsync(this._tr.compileClientAsync(str, options), cb);
233 return tr.normalizeAsync(this._tr.compileClient(str, options), cb);
257 return tr.normalizeAsync(this._tr.compileFileClientAsync(filename, options), cb);
259 return tr.normalizeAsync(this._tr.compileFileClient(filename, options), cb);
263 return tr.normalizeAsync(tr.readFile(filename, 'utf8').then(function (str) {
309 return tr.normalizeAsync(this._tr.renderAsync(str, options, locals), cb);
311 return tr.normalizeAsync(this._tr.render(str, options, locals), cb);
313 return tr.normalizeAsync(this.compileAsync(str, options).then(function (compiled) {
344 return tr.normalizeAsync(this._tr.renderFileAsync(filename, options, locals), cb);
346 return tr.normalizeAsync(this._tr.renderFile(filename, options, locals), cb);
349 return tr.normalizeAsync(this.compileFileAsync(filename, options).then(function (compiled) {
355 return tr.normalizeAsync(tr.readFile(filename, 'utf8').then(function (str) {