/external/clang/lib/Format/ |
D | ContinuationIndenter.h | 66 unsigned addTokenToState(LineState &State, bool Newline, bool DryRun, 76 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline); 79 void moveStatePastFakeLParens(LineState &State, bool Newline); 84 void moveStatePastScopeOpener(LineState &State, bool Newline);
|
D | ContinuationIndenter.cpp | 256 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline, in addTokenToState() argument 283 if (Newline) in addTokenToState() 288 return moveStateToNextToken(State, DryRun, Newline) + Penalty; in addTokenToState() 667 bool DryRun, bool Newline) { in moveStateToNextToken() argument 677 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken() 681 State.Stack.back().LastOperatorWrapped = Newline; in moveStateToNextToken() 716 if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline) in moveStateToNextToken() 732 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline) in moveStateToNextToken() 741 !Newline && in moveStateToNextToken() 745 moveStatePastFakeLParens(State, Newline); in moveStateToNextToken() [all …]
|
D | UnwrappedLineFormatter.cpp | 588 bool Newline = in formatLine() local 592 formatChildren(State, Newline, /*DryRun=*/false, Penalty); in formatLine() 593 Indenter->addTokenToState(State, Newline, /*DryRun=*/false); in formatLine()
|
/external/icu/icu4c/source/test/testdata/ |
D | WordBreakTest.txt | 29 ÷ 0001 ÷ 000B ÷ # ÷ [0.2] <START OF HEADING> (Other) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3] 30 …EADING> (Other) × [4.0] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3] 81 ÷ 000D ÷ 000B ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3] 82 …TURN (CR)> (CR) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3] 133 ÷ 000A ÷ 000B ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [3.1] <LINE TABULATION> (Newline) ÷ [0.3] 134 …FEED (LF)> (LF) ÷ [3.1] COMBINING DIAERESIS (Extend_FE) ÷ [3.2] <LINE TABULATION> (Newline) ÷ [0.3] 179 ÷ 000B ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <START OF HEADING> (Other) ÷ [0.3] 180 ÷ 000B ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F… 181 ÷ 000B ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] <CARRIAGE RETURN (CR)> (CR) ÷ [0.3] 182 ÷ 000B ÷ 0308 ÷ 000D ÷ # ÷ [0.2] <LINE TABULATION> (Newline) ÷ [3.1] COMBINING DIAERESIS (Extend_F… [all …]
|
/external/clang/lib/AST/ |
D | CommentLexer.cpp | 474 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimBlockFirstLine() local 475 StringRef Line(BufferPtr, Newline - BufferPtr); in lexVerbatimBlockFirstLine() 483 TextEnd = Newline; in lexVerbatimBlockFirstLine() 484 NextLine = skipNewline(Newline, CommentEnd); in lexVerbatimBlockFirstLine() 539 const char *Newline = findNewline(BufferPtr, CommentEnd); in lexVerbatimLineText() local 540 StringRef Text(BufferPtr, Newline - BufferPtr); in lexVerbatimLineText() 541 formTokenWithChars(T, Newline, tok::verbatim_line_text); in lexVerbatimLineText()
|
D | CommentParser.cpp | 102 Token Newline = P.Tok; in addToken() local 105 P.putBack(Newline); in addToken()
|
/external/icu/icu4c/source/data/brkitr/ |
D | word_POSIX.txt | 29 $Newline = [\p{Word_Break = Newline}]; 99 [^$CR $LF $Newline]? ($Extend | $Format)+; 189 ($Format | $Extend)* [^$CR $LF $Newline]?;
|
D | word.txt | 29 $Newline = [\p{Word_Break = Newline}]; 99 [^$CR $LF $Newline]? ($Extend | $Format)+; 189 ($Format | $Extend)* [^$CR $LF $Newline]?;
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.h | 33 Newline, enumerator 142 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; } in isNewlineOrEOF()
|
D | MIParser.cpp | 379 while (Token.is(MIToken::Newline)) in parseBasicBlockDefinitions() 398 else if (consumeIfPresent(MIToken::Newline)) { in parseBasicBlockDefinitions() 495 } else if (consumeIfPresent(MIToken::Newline)) { in parseBasicBlock() 510 else if (consumeIfPresent(MIToken::Newline)) in parseBasicBlock() 535 if (!Token.is(MIToken::Newline)) in parseBasicBlock() 548 while (Token.is(MIToken::Newline)) in parseBasicBlocks()
|
D | MILexer.cpp | 526 Token.reset(MIToken::Newline, Range.upto(C)); in maybeLexNewline()
|
/external/llvm/include/llvm/Support/ |
D | Regex.h | 39 Newline=2, enumerator
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/docs/ |
D | CHANGES | 51 *) Newline removal before ! operator was made more sensible.
|
D | DESCRIPTION | 17 - Newline characters are not allowed inside string and regex literals, except
|
/external/llvm/lib/Support/ |
D | Regex.cpp | 28 if (Flags & Newline) in Regex()
|
/external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/ |
D | README.rst | 34 - Newline characters are not allowed inside string and regex literals, except
|
D | PKG-INFO | 226 - Newline characters are not allowed inside string and regex literals, except
|
/external/icu/icu4c/source/data/mappings/ |
D | ebcdic-xml-us.ucm | 31 #ISO 10646 IBM-1140 with Newline fixes
|
/external/llvm/utils/FileCheck/ |
D | FileCheck.cpp | 431 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo)) in Match()
|
/external/pcre/dist/ |
D | CMakeLists.txt | 938 MESSAGE(STATUS " Newline char/sequence ........... : ${PCRE_NEWLINE}")
|
D | configure.ac | 1087 Newline char/sequence ........... : ${enable_newline}
|
/external/pcre/dist/doc/ |
D | pcre.txt | 2202 of the pattern, as described in the section entitled "Newline conven- 4826 Newline conventions 5277 Newline sequences 6031 defaulted. Details are given in the section entitled "Newline 6936 tern, as described in the section entitled "Newline conventions" above.
|
/external/icu/icu4c/source/data/unidata/ |
D | changes.txt | 2073 - new Word_Break (WB) value: NL=Newline
|
D | ppucd.txt | 1099 value;WB;NL;Newline
|
/external/libjpeg-turbo/ |
D | libjpeg.txt | 2485 and place readable 7-bit ASCII text in them. Newline conventions are not
|