HomeSort by relevance Sort by last modified time
    Searched refs:Newline (Results 1 - 20 of 20) sorted by null

  /external/clang/lib/Format/
ContinuationIndenter.h 61 /// Puts the token on the current line if \p Newline is \c false and adds a
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);
185 /// \brief Whether a newline needs to be inserted before the block's closing
188 /// We only want to insert a newline before the closing brace if there also
189 /// was a newline after the beginning left brace.
ContinuationIndenter.cpp 88 moveStateToNextToken(State, DryRun, /*Newline=*/false);
241 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
254 // If there is a newline within this token, the final column will solely
263 moveStateToNextToken(State, DryRun, /*Newline=*/false);
268 if (Newline)
273 return moveStateToNextToken(State, DryRun, Newline) + Penalty;
609 bool DryRun, bool Newline) {
619 State.Stack.back().LastOperatorWrapped = Newline;
623 State.Stack.back().LastOperatorWrapped = Newline;
665 if (State.Stack[State.Stack.size() - 2].NestedBlockInlined && Newline) {
    [all...]
UnwrappedLineFormatter.cpp 314 bool Newline =
317 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
425 formatChildren(State, /*Newline=*/false, DryRun, Penalty);
426 Indenter->addTokenToState(State, /*Newline=*/false, DryRun);
594 addNextStateToQueue(Penalty, Node, /*NewLine=*/false, &Count, &Queue);
596 addNextStateToQueue(Penalty, Node, /*NewLine=*/true, &Count, &Queue);
638 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty);
639 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
643 if ((*I)->NewLine) {
654 bool NewLine, unsigned *Count
    [all...]
  /external/llvm/include/llvm/Support/
Regex.h 34 /// Compile for newline-sensitive matching. With this flag '[^' bracket
35 /// expressions and '.' never match newline. A ^ anchor matches the
36 /// null string after any newline in the string in addition to its normal
38 /// newline in the string in addition to its normal function.
39 Newline=2,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
71 containing_stmt.insert_child(position + 1, Newline())
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
58 end = Newline()
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
163 nodes.extend([new_node, Newline()])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_exitfunc.py 8 from lib2to3.fixer_util import Name, Attr, Call, Comma, Newline, syms
71 containing_stmt.insert_child(position + 1, Newline())
fix_tuple_params.py 25 from ..fixer_util import Assign, Name, Newline, Number, Subscript, syms
58 end = Newline()
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
163 nodes.extend([new_node, Newline()])
  /external/icu/icu4c/source/data/brkitr/
word.txt 29 $Newline = [\p{Word_Break = Newline}];
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_POSIX.txt 29 $Newline = [\p{Word_Break = Newline}];
99 [^$CR $LF $Newline]? ($Extend | $Format)+;
189 ($Format | $Extend)* [^$CR $LF $Newline]?;
  /external/llvm/lib/Support/
Regex.cpp 28 if (Flags & Newline)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 68 def Newline():
69 """A newline literal"""
70 return Leaf(token.NEWLINE, u"\n")
74 return Leaf(token.NEWLINE, u"")
335 children = [import_, Newline()]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_util.py 68 def Newline():
69 """A newline literal"""
70 return Leaf(token.NEWLINE, u"\n")
74 return Leaf(token.NEWLINE, u"")
335 children = [import_, Newline()]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/settings/
SpacingAndPunctuationsTests.java 107 assertTrue("Newline", sp.isWordSeparator('\n'));
158 assertFalse("Newline", sp.isWordConnector('\n'));
204 assertFalse("Newline", sp.isUsuallyPrecededBySpace('\n'));
265 assertFalse("Newline", sp.isUsuallyFollowedBySpace('\n'));
312 assertFalse("Newline", sp.isUsuallyFollowedBySpace('\n'));
  /external/clang/lib/AST/
CommentParser.cpp 100 if (P.Tok.is(tok::newline)) {
101 // If we see a single newline token between text tokens, skip it.
102 Token Newline = P.Tok;
105 P.putBack(Newline);
374 else if (Tok.is(tok::newline)) {
600 case tok::newline: {
602 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
606 // Also allow [tok::newline, tok::text, tok::newline] if the middle
611 if (Tok.is(tok::newline) || Tok.is(tok::eof))
    [all...]
  /prebuilts/tools/common/m2/repository/org/pegdown/pegdown/1.1.0/
pegdown-1.1.0.jar 
  /external/llvm/utils/FileCheck/
FileCheck.cpp 431 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
624 /// CheckSame - Verify there is no newline in the given buffer.
    [all...]
  /external/pcre/dist/
configure     [all...]

Completed in 363 milliseconds