OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:indentunit
(Results
1 - 18
of
18
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java
195
String
indentUnit
= " "; //$NON-NLS-1$
255
namespace.append('\n').append(startIndent).append(
indentUnit
);
276
sb.append('\n').append(startIndent).append(
indentUnit
);
302
sb.append('\n').append(startIndent).append(
indentUnit
);
310
sb.append('\n').append(startIndent).append(
indentUnit
);
352
sb.append('\n').append(startIndent).append(
indentUnit
);
363
sb.append('\n').append(startIndent).append(
indentUnit
);
374
InsertEdit newline = new InsertEdit(mSelectionStart + index,
indentUnit
);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
xml.js
15
var
indentUnit
= config.
indentUnit
;
330
return state.indented +
indentUnit
;
340
return state.tagStart +
indentUnit
* multilineTagIndentFactor;
366
if (context) return context.indent +
indentUnit
;
javascript.js
17
var
indentUnit
= config.
indentUnit
;
608
lexical: new JSLexical((basecolumn || 0) -
indentUnit
, 0, "block", false),
649
else if (type == "form") return lexical.indented +
indentUnit
;
651
return lexical.indented + (state.lastType == "operator" || state.lastType == "," ? statementIndent ||
indentUnit
: 0);
653
return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ?
indentUnit
: 2 *
indentUnit
);
655
else return lexical.indented + (closing ? 0 :
indentUnit
);
clike.js
15
var
indentUnit
= config.
indentUnit
,
16
statementIndentUnit = parserConfig.statementIndentUnit ||
indentUnit
,
125
context: new Context((basecolumn || 0) -
indentUnit
, 0, "top", false),
168
else return ctx.indented + (closing ? 0 :
indentUnit
);
python.js
57
var hangingIndent = parserConf.hangingIndent || conf.
indentUnit
;
224
offset = top(state).offset + (type == "py" ? conf.
indentUnit
: hangingIndent);
headlesscodemirror.js
104
var mode = CodeMirror.getMode({
indentUnit
: 2 }, modespec);
css.js
17
var
indentUnit
= config.
indentUnit
,
114
state.context = new Context(type, stream.indentation() +
indentUnit
, state.context);
335
indent = cx.indent -
indentUnit
;
coffeescript.js
221
offset = scope.offset + conf.
indentUnit
;
codemirror.js
[
all
...]
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
clike.js
12
var
indentUnit
= config.
indentUnit
,
13
statementIndentUnit = parserConfig.statementIndentUnit ||
indentUnit
,
122
context: new Context((basecolumn || 0) -
indentUnit
, 0, "top", false),
165
else return ctx.indented + (closing ? 0 :
indentUnit
);
codemirror.js
[
all
...]
/external/skia/experimental/webtry/res/js/cm/
clike.js
12
var
indentUnit
= config.
indentUnit
,
13
statementIndentUnit = parserConfig.statementIndentUnit ||
indentUnit
,
122
context: new Context((basecolumn || 0) -
indentUnit
, 0, "top", false),
165
else return ctx.indented + (closing ? 0 :
indentUnit
);
codemirror.js
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/
CodeMirrorUtils.js
142
var mode = CodeMirror.getMode({
indentUnit
: 2}, mimeType);
CodeMirrorTextEditor.js
601
this._codeMirror.setOption("
indentUnit
", 4);
604
this._codeMirror.setOption("
indentUnit
", indent.length);
[
all
...]
/external/chromium_org/third_party/skia/experimental/webtry/res/js/
webtry.js
148
indentUnit
: 4,
/external/skia/experimental/webtry/res/js/
webtry.js
148
indentUnit
: 4,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
ScriptFormatterWorker.js
37
var mode = CodeMirror.getMode({
indentUnit
: 2}, mimeType);
Completed in 1563 milliseconds