Searched refs:FormatterWorker (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/ |
D | JavaScriptFormatter.js | 36 FormatterWorker.JavaScriptFormatter = function(tokenizer, builder) 44 FormatterWorker.JavaScriptFormatter.prototype = { 47 this._parseSourceElements(FormatterWorker.JavaScriptTokens.EOS); 48 this._consume(FormatterWorker.JavaScriptTokens.EOS); 64 if (this._token && this._token.token === FormatterWorker.JavaScriptTokens.EOS) 96 if (this._peek() === FormatterWorker.JavaScriptTokens.SEMICOLON) 97 this._consume(FormatterWorker.JavaScriptTokens.SEMICOLON); 121 if (this._peek() === FormatterWorker.JavaScriptTokens.LBRACE) { 136 case FormatterWorker.JavaScriptTokens.LBRACE: 138 case FormatterWorker.JavaScriptTokens.CONST: [all …]
|
D | ScriptFormatterWorker.js | 37 FormatterWorker = { variable 70 FormatterWorker[data.method](data.params); 76 FormatterWorker.format = function(params) 83 var formatter = new FormatterWorker.HTMLFormatter(indentString); 87 … result.content = FormatterWorker._formatCSS(params.content, result.mapping, 0, 0, indentString); 90 …result.content = FormatterWorker._formatScript(params.content, result.mapping, 0, 0, indentString); 99 FormatterWorker._chunkCount = function(totalLength, chunkSize) 112 FormatterWorker.javaScriptOutline = function(params) 117 var chunkCount = FormatterWorker._chunkCount(totalLength, chunkSize); 128 var tokenizer = FormatterWorker.createTokenizer("text/javascript"); [all …]
|
D | CSSFormatter.js | 36 FormatterWorker.CSSFormatter = function(content, builder) 44 FormatterWorker.CSSFormatter.prototype = { 48 var tokenize = FormatterWorker.createTokenizer("text/css"); 144 FormatterWorker.CSSFormattedContentBuilder = function(content, mapping, originalOffset, formattedOf… 165 FormatterWorker.CSSFormattedContentBuilder.prototype = {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | externs.js | 258 var FormatterWorker = {} variable
|