Home
last modified time | relevance | path

Searched refs:Newline (Results 1 – 25 of 91) sorted by relevance

1234

/external/catch2/include/internal/
Dcatch_xmlwriter.h20 Newline = 0x02, enumerator
53 …& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::…
72 …tartElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::…
74 …opedElement( std::string const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::…
76 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
89 …XmlWriter& writeText( std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFor…
91 …XmlWriter& writeComment(std::string const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlF…
/external/llvm-project/clang/lib/Format/
DContinuationIndenter.h84 unsigned addTokenToState(LineState &State, bool Newline, bool DryRun,
94 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline);
97 void moveStatePastFakeLParens(LineState &State, bool Newline);
102 void moveStatePastScopeOpener(LineState &State, bool Newline);
114 bool DryRun, bool Newline);
119 bool DryRun, bool AllowBreak, bool Newline);
DContinuationIndenter.cpp525 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline, in addTokenToState() argument
554 if (Newline) in addTokenToState()
559 return moveStateToNextToken(State, DryRun, Newline) + Penalty; in addTokenToState()
1175 bool DryRun, bool Newline) { in moveStateToNextToken() argument
1189 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken()
1192 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken()
1195 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken()
1254 if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline) in moveStateToNextToken()
1273 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline) in moveStateToNextToken()
1283 !Newline && hasNestedBlockInlined(Previous, Current, Style); in moveStateToNextToken()
[all …]
/external/rust/crates/bstr/scripts/regex/
Dword.sh37 Newline="\p{wb=Newline}"
64 [$Newline $CR $LF]
69 ([^$Newline $CR $LF]? $Ex* $ZWJ $ExtendPict $Ex*)+
/external/clang/lib/Format/
DContinuationIndenter.h67 unsigned addTokenToState(LineState &State, bool Newline, bool DryRun,
77 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline);
80 void moveStatePastFakeLParens(LineState &State, bool Newline);
85 void moveStatePastScopeOpener(LineState &State, bool Newline);
DContinuationIndenter.cpp277 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline, in addTokenToState() argument
304 if (Newline) in addTokenToState()
309 return moveStateToNextToken(State, DryRun, Newline) + Penalty; in addTokenToState()
709 bool DryRun, bool Newline) { in moveStateToNextToken() argument
719 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken()
723 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken()
762 if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline) in moveStateToNextToken()
778 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline) in moveStateToNextToken()
787 !Newline && in moveStateToNextToken()
791 moveStatePastFakeLParens(State, Newline); in moveStateToNextToken()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/break_rules/
Dword.txt21 Newline = [\p{Word_Break = Newline}];
59 WB3a: (Newline | CR | LF) ÷;
60 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
Dword_POSIX.txt20 Newline = [\p{Word_Break = Newline}];
58 WB3a: (Newline | CR | LF) ÷;
59 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
/external/icu/icu4c/source/test/testdata/break_rules/
Dword_POSIX.txt20 Newline = [\p{Word_Break = Newline}];
58 WB3a: (Newline | CR | LF) ÷;
59 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
Dword.txt21 Newline = [\p{Word_Break = Newline}];
59 WB3a: (Newline | CR | LF) ÷;
60 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/break_rules/
Dword.txt21 Newline = [\p{Word_Break = Newline}];
59 WB3a: (Newline | CR | LF) ÷;
60 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
Dword_POSIX.txt20 Newline = [\p{Word_Break = Newline}];
58 WB3a: (Newline | CR | LF) ÷;
59 WB3b: . ÷ (Newline | CR | LF); # actually redundant? No other rule combines.
/external/catch2/include/reporters/
Dcatch_reporter_junit.cpp150 … xml.scopedElement( "system-out" ).writeText( trim( stdOutForSuite ), XmlFormatting::Newline ); in writeGroup()
151 … xml.scopedElement( "system-err" ).writeText( trim( stdErrForSuite ), XmlFormatting::Newline ); in writeGroup()
200 … xml.scopedElement( "system-out" ).writeText( trim( sectionNode.stdOut ), XmlFormatting::Newline ); in writeSection()
202 … xml.scopedElement( "system-err" ).writeText( trim( sectionNode.stdErr ), XmlFormatting::Newline ); in writeSection()
270 xml.writeText( rss.str(), XmlFormatting::Newline ); in writeAssertion()
/external/python/cpython3/Lib/lib2to3/fixes/
Dfix_exitfunc.py8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
71 containing_stmt.insert_child(position + 1, Newline())
/external/icu/icu4c/source/test/testdata/
DWordBreakTest.txt31 ÷ 0001 ÷ 000B ÷ # ÷ [0.2] <START OF HEADING> (Other) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
32 …EADING> (Other) × [4.0] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
89 ÷ 000D ÷ 000B ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3]
90 …TURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
147 ÷ 000A ÷ 000B ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3]
148 …FEED (LF)> (LF) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
199 ÷ 000B ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <START OF HEADING> (Other) ÷ [0.3]
200 ÷ 000B ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
201 ÷ 000B ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
202 ÷ 000B ÷ 0308 ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
[all …]
/external/rust/crates/bstr/src/unicode/data/
DWordBreakTest.txt31 ÷ 0001 ÷ 000B ÷ # ÷ [0.2] <START OF HEADING> (Other) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
32 …EADING> (Other) × [4.0] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
89 ÷ 000D ÷ 000B ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3]
90 …TURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
147 ÷ 000A ÷ 000B ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3]
148 …FEED (LF)> (LF) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3]
199 ÷ 000B ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <START OF HEADING> (Other) ÷ [0.3]
200 ÷ 000B ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
201 ÷ 000B ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3]
202 ÷ 000B ÷ 0308 ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F…
[all …]
/external/python/cpython2/Lib/lib2to3/fixes/
Dfix_exitfunc.py8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
71 containing_stmt.insert_child(position + 1, Newline())
/external/llvm-project/clang/lib/AST/
DCommentLexer.cpp496 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimBlockFirstLine() local
497 StringRef Line(BufferPtr, Newline - BufferPtr); in lexVerbatimBlockFirstLine()
505 TextEnd = Newline; in lexVerbatimBlockFirstLine()
506 NextLine = skipNewline(Newline, CommentEnd); in lexVerbatimBlockFirstLine()
561 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimLineText() local
562 StringRef Text(BufferPtr, Newline - BufferPtr); in lexVerbatimLineText()
563 formTokenWithChars(T, Newline, tok::verbatim_line_text); in lexVerbatimLineText()
/external/clang/lib/AST/
DCommentLexer.cpp482 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimBlockFirstLine() local
483 StringRef Line(BufferPtr, Newline - BufferPtr); in lexVerbatimBlockFirstLine()
491 TextEnd = Newline; in lexVerbatimBlockFirstLine()
492 NextLine = skipNewline(Newline, CommentEnd); in lexVerbatimBlockFirstLine()
547 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimLineText() local
548 StringRef Text(BufferPtr, Newline - BufferPtr); in lexVerbatimLineText()
549 formTokenWithChars(T, Newline, tok::verbatim_line_text); in lexVerbatimLineText()
/external/llvm-project/llvm/lib/Support/
DErrorHandling.cpp172 const char *Newline = "\n"; in report_bad_alloc_error() local
175 (void)!::write(2, Newline, strlen(Newline)); in report_bad_alloc_error()
/external/llvm/lib/CodeGen/MIRParser/
DMILexer.h33 Newline, enumerator
145 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; } in isNewlineOrEOF()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMILexer.h32 Newline, enumerator
185 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; } in isNewlineOrEOF()
/external/llvm-project/llvm/lib/CodeGen/MIRParser/
DMILexer.h31 Newline, enumerator
187 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; } in isNewlineOrEOF()
/external/icu/icu4c/source/data/brkitr/rules/
Dword_POSIX.txt34 $Newline = [\p{Word_Break = Newline}];
98 [^$CR $LF $Newline $ExFm] $ExFm*; # This rule rule attaches trailing format/extends to words,
Dword.txt34 $Newline = [\p{Word_Break = Newline}];
98 [^$CR $LF $Newline $ExFm] $ExFm*; # This rule rule attaches trailing format/extends to words,

1234