Home
last modified time | relevance | path

Searched refs:indentation (Results 276 – 300 of 22422) sorted by relevance

1...<<11121314151617181920>>...897

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/java/
H A DJavaStringAutoIndentStrategy.java67 …protected String displayString(String inputString, String indentation, String delimiter, boolean e… in displayString() argument
82 buffer.append(indentation); in displayString()
87 buffer.append(indentation); in displayString()
96 buffer.append(indentation); in displayString()
178 …protected String getModifiedText(String string, String indentation, String delimiter, boolean esca… in getModifiedText() argument
179 return displayString(string, indentation, delimiter, escapeNonAscii); in getModifiedText()
191 String indentation= getLineIndentation(document, command.offset); in javaStringIndentAfterNewLine()
204 indentation += getExtraIndentAfterNewLine(); in javaStringIndentAfterNewLine()
208 command.text= "\"" + command.text + indentation + "+ \""; //$NON-NLS-1$//$NON-NLS-2$ in javaStringIndentAfterNewLine()
210 command.text= "\" +" + command.text + indentation + "\""; //$NON-NLS-1$//$NON-NLS-2$ in javaStringIndentAfterNewLine()
[all …]
/dports/math/stp/stp-2.3.3/include/stp/Printer/
H A Dprinters.h41 const int indentation = 0);
43 int indentation = 0);
44 DLL_PUBLIC void PL_Print1(ostream& os, const ASTNode& n, int indentation,
47 ostream& Lisp_Print(ostream& os, const stp::ASTNode& n, int indentation = 0);
50 int indentation = 0);
/dports/graphics/engauge-digitizer/engauge-digitizer-12.2.2/src/Document/
H A DDocumentModelAxesChecker.cpp100 void DocumentModelAxesChecker::printStream(QString indentation, in printStream() argument
103 str << indentation << "DocumentModelAxesChecker\n"; in printStream()
105 indentation += INDENTATION_DELTA; in printStream()
107 str << indentation << "checkerMode=" << checkerModeToString (m_checkerMode) << "\n"; in printStream()
108 str << indentation << "checkerSeconds=" << m_checkerSeconds << "\n"; in printStream()
109 str << indentation << "color=" << colorPaletteToString (m_lineColor) << "\n"; in printStream()
/dports/devel/anjuta/anjuta-3.34.0/plugins/indentation-python-style/
H A Danjuta-indentation-python-style.plugin.in2 Location=anjuta-indentation-python-style:IndentPythonPlugin
3 Icon=anjuta-indentation-python-style-plugin.png
4 _Name=Python style indentation Plugin
5 _Description=auto-indentation for python style code
H A Danjuta-indentation-python-style.plugin2 Location=anjuta-indentation-python-style:IndentPythonPlugin
3 Icon=anjuta-indentation-python-style-plugin.png
4 Name=Python style indentation Plugin
5 Description=auto-indentation for python style code
H A DMakefile.am3 dist_indent_python_ui_DATA = anjuta-indentation-python-style.xml
7 dist_indent_python_glade_DATA = anjuta-indentation-python-style.ui
11 dist_indent_python_pixmaps_DATA = anjuta-indentation-python-style-plugin.png
14 plugin_in_files = anjuta-indentation-python-style.plugin.in
/dports/devel/py-twisted/Twisted-22.1.0/src/twisted/python/
H A Dtext.py11 def stringyString(object, indentation=""): argument
28 value = stringyString(value, indentation + " ")
44 element = stringyString(element, indentation + " ")
47 sl[:] = map(lambda s, i=indentation: i + s, str(object).split("\n"))
50 sl.append(indentation)
53 sl[0] = indentation + braces[0] + sl[0][len(indentation) + 1 :]
/dports/lang/nim/nim-1.6.2/tests/parser/
H A Dttypemodifiers.nim448 BareStatic = static # Used to be Error: invalid indentation
456 TypeTupleCl = type tuple # Used to be Error: invalid indentation
460 TypeOfVarAlt = type (a) # Used to be Error: invalid indentation
463 TypeOfTuple1A = type (a,) # Used to be Error: invalid indentation
464 TypeOfTuple2A = type (a,b) # Used to be Error: invalid indentation
510 # typeAspace = type (a) # Error: invalid indentation
511 # typeAtuple = type (a,) # Error: invalid indentation
512 # typeTuple = type (a,b) # Error: invalid indentation
513 # typeTypeTuple = type (int,string) # Error: invalid indentation
519 # normalTupleCall1 = foo(a,) # Error: invalid indentation
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/ui/org/eclipse/jdt/internal/ui/text/javadoc/
H A DJavaDocAutoIndentStrategy.java100 String indentation= d.get(prefix.getOffset(), prefix.getLength()); in indentAfterNewLine() local
103 buf.append(indentation.substring(0, lengthToAdd)); in indentAfterNewLine()
118 String endTag= lineDelimiter + indentation + " */"; //$NON-NLS-1$ in indentAfterNewLine()
131 String string= createJavaDocTags(d, c, indentation, lineDelimiter, unit); in indentAfterNewLine()
215 return createTypeTags(document, command, indentation, lineDelimiter, (IType) element); in createJavaDocTags()
218 return createMethodTags(document, command, indentation, lineDelimiter, (IMethod) element); in createJavaDocTags()
221 …return createModuleTags(document, command, indentation, lineDelimiter, (IModuleDescription) elemen… in createJavaDocTags()
257 return Strings.changeIndent(comment, 0, project, indentation, lineDelimiter); in prepareTemplateComment()
269 return prepareTemplateComment(comment.trim(), indentation, type.getJavaProject(), lineDelimiter); in createTypeTags()
282 …return prepareTemplateComment(comment.trim(), indentation, module.getJavaProject(), lineDelimiter); in createModuleTags()
[all …]
/dports/textproc/kibana6/kibana-6.8.16-darwin-x86_64/node_modules/graphql/utilities/
H A DschemaPrinter.mjs190 …return printDescription(options, arg, ' ' + indentation, !i) + ' ' + indentation + printInputVal…
191 }).join('\n') + '\n' + indentation + ')';
225 var lines = descriptionLines(def.description, 120 - indentation.length);
227 return printDescriptionWithComments(lines, indentation, firstInBlock);
230 var description = indentation && !firstInBlock ? '\n' + indentation + '"""' : indentation + '"""';
244 description += indentation;
248 description += indentation + '"""\n';
256 function printDescriptionWithComments(lines, indentation, firstInBlock) { argument
257 var description = indentation && !firstInBlock ? '\n' : '';
260 description += indentation + '#\n';
[all …]
/dports/shells/bash/bash-5.1/
H A Dprint_cmd.c56 static int indentation; variable
179 indent (indentation);
595 indentation += indentation_amount;
599 indentation -= indentation_amount;
687 indent (indentation);
1280 indentation = 0; in reset_locals()
1300 indent (indentation);
1350 old_indent = indentation;
1366 indentation = 1;
1393 indentation = old_indent;
[all …]
/dports/textproc/R-cran-sass/sass/src/libsass/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/www/py-libsass/libsass-0.21.0/libsass/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/bep/golibsass/libsass_src/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/textproc/libsass/libsass-3.6.4/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/www/zola/zola-0.15.2/cargo-crates/sass-sys-0.4.22/libsass/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/textproc/p5-CSS-Sass/CSS-Sass-3.6.4/libsass/src/
H A Demitter.cpp13 indentation(0), in Emitter()
185 if (scheduled_linefeed && indentation) in append_indentation()
188 for (size_t i = 0; i < indentation; i++) in append_indentation()
197 if (indentation == 0) { in append_delimiter()
242 for (size_t p = 0; p < indentation; p++) in append_special_linefeed()
275 ++ indentation; in append_scope_opener()
279 -- indentation; in append_scope_closer()
292 if (indentation != 0) return; in append_scope_closer()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java87 int indentation; // Indentation level; field in PrintingProcessor.PrintingElementVisitor
95 indentation = 0; in PrintingElementVisitor()
227 indentation++; in visitType()
257 indentation--; in visitType()
436 indentation++; in printParameters()
461 indentation--; in printParameters()
499 indentation++; in printThrows()
513 indentation--; in printThrows()
532 int indentation = this.indentation; in indent() local
533 if (indentation < 0) in indent()
[all …]
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java87 int indentation; // Indentation level; field in PrintingProcessor.PrintingElementVisitor
95 indentation = 0; in PrintingElementVisitor()
227 indentation++; in visitType()
257 indentation--; in visitType()
436 indentation++; in printParameters()
461 indentation--; in printParameters()
499 indentation++; in printThrows()
513 indentation--; in printThrows()
532 int indentation = this.indentation; in indent() local
533 if (indentation < 0) in indent()
[all …]
/dports/devel/stack/stack-2.7.3/_cabal_deps/hpack-0.34.4/src/Hpack/Render/
H A DHints.hs67 unindent input = map (drop indentation) input
69 indentation = minimum $ map (length . takeWhile isSpace) input function
72 sniffAlignment input = case nub . catMaybes . map indentation . catMaybes . map splitField $ input …
77 indentation :: (String, String) -> Maybe Int
78 indentation (name, value) = case span isSpace value of function
112 sniffRenderSettings input = RenderSettings indentation fieldAlignment commaStyle
114 indentation = max def $ fromMaybe def (sniffIndentation input) function
/dports/math/stp/stp-2.3.3/lib/Printer/
H A DSMTLIBPrinter.cpp57 SMTLIB_Print(ostream& os, STPMgr* mgr, const ASTNode n, const int indentation, in SMTLIB_Print() argument
89 SMTLIB1_Print1(os, it->first, indentation, false); in SMTLIB_Print()
92 SMTLIB1_Print1(os, it->second, indentation, false); in SMTLIB_Print()
108 SMTLIB1_Print1(os, it->first, indentation, false); in SMTLIB_Print()
111 SMTLIB1_Print1(os, it->second, indentation, false); in SMTLIB_Print()
121 SMTLIB1_Print1(os, n, indentation, true); in SMTLIB_Print()
126 SMTLIB1_Print1(os, n, indentation, false); in SMTLIB_Print()
/dports/devel/hs-hpack/hpack-0.34.4/src/Hpack/Render/
H A DHints.hs67 unindent input = map (drop indentation) input
69 indentation = minimum $ map (length . takeWhile isSpace) input function
72 sniffAlignment input = case nub . catMaybes . map indentation . catMaybes . map splitField $ input …
77 indentation :: (String, String) -> Maybe Int
78 indentation (name, value) = case span isSpace value of function
112 sniffRenderSettings input = RenderSettings indentation fieldAlignment commaStyle
114 indentation = max def $ fromMaybe def (sniffIndentation input) function
/dports/lang/elixir-mode.el/emacs-elixir-2.3.1/
H A DCHANGELOG.md2 * [#337](https://github.com/elixir-lang/emacs-elixir/pull/337) - Fix indentation issue after COMMA …
3 * [#333](https://github.com/elixir-lang/emacs-elixir/pull/333) - Fix indentation of second element …
8 * [#327](https://github.com/elixir-lang/emacs-elixir/pull/327) - Correct indentation of maps inside…
17 * [#317](https://github.com/elixir-lang/emacs-elixir/pull/317) - Correct pipeline indentation
18 * [#316](https://github.com/elixir-lang/emacs-elixir/pull/316) - Fix indentation of if within an el…
46 * [#262](https://github.com/elixir-lang/emacs-elixir/pull/262) - Add indentation tests for comprehe…
87 * [#196](https://github.com/elixir-lang/emacs-elixir/pull/196) - correct indentation outside of blo…
129 * [Indentation] #152 Fix indentation inside parens wrapped around def
135 * [Indentation] Continue of indentation in multiple line assignment.
137 * [Indentation] Fix the indentation for mixed matchings.
[all …]
/dports/multimedia/Bento4/Bento4-1.6.0-639/Source/Java/com/axiosys/bento4/metadata/
H A DDataAtom.java108 public String toString(String indentation) { in toString() argument
109 StringBuffer result = new StringBuffer(super.toString(indentation)); in toString()
110 result.append("\n" + indentation + " data_type = " + dataType); in toString()
111 result.append("\n" + indentation + " data_lang = " + dataLang); in toString()
123 result.append("\n" + indentation + " data = " + dataString); in toString()
/dports/devel/anjuta/anjuta-3.34.0/plugins/indentation-c-style/
H A Danjuta-indentation-c-style.plugin2 Location=anjuta-indentation-c-style:IndentCPlugin
3 Icon=anjuta-indentation-c-style-plugin.png
4 Name=C style indentation Plugin
5 Description=auto-indentation for c style code

1...<<11121314151617181920>>...897