Home
last modified time | relevance | path

Searched refs:curIndent (Results 1 – 25 of 110) sorted by relevance

12345

/dports/www/ilias/ILIAS-5.4.25/Services/Form/classes/
H A Dclass.ilMultipleNestedOrderingElementsInputGUI.php309 $curIndent = $nextIndent = 0;
312 if ($prevIndent == $curIndent) {
315 if ($curIndent == $nextIndent) {
321 } elseif ($curIndent > $nextIndent) {
344 } elseif ($curIndent < $nextIndent) {
351 } elseif ($prevIndent > $curIndent) {
352 if ($curIndent == $nextIndent) {
358 } elseif ($curIndent > $nextIndent) {
383 } elseif ($prevIndent < $curIndent) {
384 if ($curIndent == $nextIndent) {
[all …]
/dports/www/ilias6/ILIAS-6.14/Services/Form/classes/
H A Dclass.ilMultipleNestedOrderingElementsInputGUI.php309 $curIndent = $nextIndent = 0;
312 if ($prevIndent == $curIndent) {
315 if ($curIndent == $nextIndent) {
321 } elseif ($curIndent > $nextIndent) {
344 } elseif ($curIndent < $nextIndent) {
351 } elseif ($prevIndent > $curIndent) {
352 if ($curIndent == $nextIndent) {
358 } elseif ($curIndent > $nextIndent) {
383 } elseif ($prevIndent < $curIndent) {
384 if ($curIndent == $nextIndent) {
[all …]
/dports/devel/gh/cli-2.4.0/vendor/github.com/muesli/reflow/dedent/
H A Ddedent.go20 curIndent int
28 curIndent++
31 curIndent = 0
34 if curIndent > 0 && (minIndent == 0 || curIndent < minIndent) {
35 minIndent = curIndent
36 curIndent = 0
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/muesli/reflow/dedent/
H A Ddedent.go20 curIndent int
28 curIndent++
31 curIndent = 0
34 if curIndent > 0 && (minIndent == 0 || curIndent < minIndent) {
35 minIndent = curIndent
36 curIndent = 0
/dports/devel/gitty/gitty-0.3.0/vendor/github.com/muesli/reflow/dedent/
H A Ddedent.go20 curIndent int
28 curIndent++
31 curIndent = 0
34 if curIndent > 0 && (minIndent == 0 || curIndent < minIndent) {
35 minIndent = curIndent
36 curIndent = 0
/dports/lang/kawa/kawa-3.1.1/kawa/standard/
H A DTracedProcedure.java55 int curIndent; in applyN() local
58 curIndent = 0; in applyN()
62 curIndent = ((IntNum) oldIndent).intValue(); in applyN()
69 indent(curIndent, out); in applyN()
83 IntNum newIndentation = IntNum.make(curIndent+indentationStep); in applyN()
92 indent(curIndent, out); in applyN()
102 indent(curIndent, out); in applyN()
/dports/devel/jsonnet/jsonnet-0.17.0/doc/_stdlib_gen/
H A Dhtml.libsonnet87 render(content) = renderAux(content, indent=' ', curIndent=''),
88 renderAux(content, indent, curIndent) =
91 curIndent +
93 renderAux(c, indent, curIndent + indent) +
95 curIndent
104 renderAux(content.body, indent, curIndent)
118 std.join('', [renderAux(c, indent, curIndent) for c in content.parts if c != null])
121 std.join('\n' + curIndent, [renderAux(c, indent, curIndent) for c in content if c != null])
123 indentString(content, curIndent)
/dports/devel/py-jsonnet/jsonnet-0.17.0/doc/_stdlib_gen/
H A Dhtml.libsonnet87 render(content) = renderAux(content, indent=' ', curIndent=''),
88 renderAux(content, indent, curIndent) =
91 curIndent +
93 renderAux(c, indent, curIndent + indent) +
95 curIndent
104 renderAux(content.body, indent, curIndent)
118 std.join('', [renderAux(c, indent, curIndent) for c in content.parts if c != null])
121 std.join('\n' + curIndent, [renderAux(c, indent, curIndent) for c in content if c != null])
123 indentString(content, curIndent)
/dports/lang/kawa/kawa-3.1.1/gnu/kawa/util/
H A DPreProcess.java159 int curIndent = 0; in filter() local
181 && (commentAt == curIndent in filter()
216 if (nesting > 0 && commentAt != curIndent && c == '/') { in filter()
341 commentAt = curIndent; in filter()
344 commentAt = curIndent; in filter()
355 commentAt = curIndent; in filter()
366 commentAt = curIndent; in filter()
378 curIndent = 0; in filter()
383 curIndent = c == '\t' ? (curIndent + 8) & ~7 : curIndent + 1; in filter()
/dports/misc/adios2/ADIOS2-2.7.1/thirdparty/yaml-cpp/yaml-cpp/src/
H A Demitter.cpp342 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
352 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
531 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
544 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
555 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
564 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
571 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
584 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
590 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
609 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/libs/3rdparty/yaml-cpp/src/
H A Demitter.cpp344 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
354 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
533 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
546 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
557 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
566 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
573 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
586 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
592 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
611 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/science/yoda/YODA-1.9.1/src/yamlcpp/
H A Demitter.cpp344 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
354 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
533 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
546 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
557 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
566 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
573 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
586 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
592 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
611 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/www/trafficserver/trafficserver-9.1.1/lib/yamlcpp/src/
H A Demitter.cpp342 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
352 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
531 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
544 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
555 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
564 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
571 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
584 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
590 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
609 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/yaml-cpp/src/
H A Demitter.cpp344 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
354 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
533 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
546 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
557 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
566 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
573 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
586 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
592 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
611 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/third_party/yaml-cpp-0.6.2/src/
H A Demitter.cpp344 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
354 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
533 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
546 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
557 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
566 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
573 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
586 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
592 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
611 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/biology/iqtree/IQ-TREE-2.0.6/yaml-cpp/src/
H A Demitter.cpp342 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
352 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
531 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
544 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
555 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
564 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
571 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
584 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
590 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
609 SpaceOrIndentTo(m_pState->HasBegunContent(), curIndent); in BlockMapPrepareSimpleKey()
[all …]
/dports/devel/yaml-cpp/yaml-cpp-yaml-cpp-0.7.0/src/
H A Demitter.cpp360 const std::size_t curIndent = m_pState->CurIndent(); in BlockSeqPrepareNode() local
370 m_stream << IndentTo(curIndent); in BlockSeqPrepareNode()
552 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKey() local
565 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKey()
576 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKey()
587 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareLongKeyValue() local
594 m_stream << IndentTo(curIndent); in BlockMapPrepareLongKeyValue()
605 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
611 SpaceOrIndentTo(true, curIndent + 1); in BlockMapPrepareLongKeyValue()
617 const std::size_t curIndent = m_pState->CurIndent(); in BlockMapPrepareSimpleKey() local
[all …]
/dports/devel/yaml-cpp03/yaml-cpp-release-0.3.0/src/
H A Demitter.cpp174 unsigned curIndent = m_pState->GetCurIndent(); in GotoNextPreAtomicState() local
190 m_stream << IndentTo(curIndent) << "-"; in GotoNextPreAtomicState()
220 m_stream << IndentTo(curIndent) << '?'; in GotoNextPreAtomicState()
443 unsigned curIndent = m_pState->GetCurIndent(); in EmitEndSeq() local
444 m_stream << IndentTo(curIndent); in EmitEndSeq()
513 unsigned curIndent = m_pState->GetCurIndent(); in EmitEndMap() local
514 m_stream << IndentTo(curIndent); in EmitEndMap()
546 unsigned curIndent = m_pState->GetCurIndent(); in EmitKey() local
547 m_stream << IndentTo(curIndent); in EmitKey()
633 unsigned curIndent = m_pState->GetCurIndent(); in Write() local
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch1/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anonaacce0b90111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch4/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anoncf6c525c0111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch6/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anone7d69e1e0111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch2/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anonb702069a0111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch3/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anonc3372c7b0111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/mlir/examples/toy/Ch5/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anondba1783d0111::ASTDumper
73 Indent level_(curIndent); \
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/mlir/examples/toy/Ch3/parser/
H A DAST.cpp54 for (int i = 0; i < curIndent; i++) in indent()
57 int curIndent = 0; member in __anonf890be860111::ASTDumper
73 Indent level_(curIndent); \

12345