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

  /external/chromium_org/tools/gn/
command_format.cc 69 void Newline();
112 void Printer::Newline() {
153 Newline();
160 Newline();
163 // Expr(), as are suffix() which are queued to the next Newline().
165 // the newline itself, which only happens between block statements. So,
169 Newline();
173 Newline();
180 Newline();
197 Newline();
    [all...]
  /external/clang/lib/Format/
ContinuationIndenter.h 59 /// Puts the token on the current line if \p Newline is \c false and adds a
64 unsigned addTokenToState(LineState &State, bool Newline, bool DryRun,
74 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline);
77 void moveStatePastFakeLParens(LineState &State, bool Newline);
82 void moveStatePastScopeOpener(LineState &State, bool Newline);
177 /// \brief Whether a newline needs to be inserted before the block's closing
180 /// We only want to insert a newline before the closing brace if there also
181 /// was a newline after the beginning left brace.
ContinuationIndenter.cpp 87 moveStateToNextToken(State, DryRun, /*Newline=*/false);
228 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
244 moveStateToNextToken(State, DryRun, /*Newline=*/false);
249 if (Newline)
254 return moveStateToNextToken(State, DryRun, Newline) + Penalty;
571 bool DryRun, bool Newline) {
581 State.Stack.back().LastOperatorWrapped = Newline;
585 State.Stack.back().LastOperatorWrapped = Newline;
633 if (State.Stack[State.Stack.size() - 2].JSFunctionInlined && Newline) {
641 State.Stack.back().JSFunctionInlined = !Newline;
    [all...]
Format.cpp 555 bool Newline =
558 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
    [all...]
  /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/include/llvm/Support/
Regex.h 35 /// Compile for newline-sensitive matching. With this flag '[^' bracket
36 /// expressions and '.' never match newline. A ^ anchor matches the
37 /// null string after any newline in the string in addition to its normal
39 /// newline in the string in addition to its normal function.
40 Newline=2,
  /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 110 assertTrue("Newline", sp.isWordSeparator('\n'));
161 assertFalse("Newline", sp.isWordConnector('\n'));
207 assertFalse("Newline", sp.isUsuallyPrecededBySpace('\n'));
268 assertFalse("Newline", sp.isUsuallyFollowedBySpace('\n'));
315 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...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 418 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
    [all...]
  /external/pcre/dist/
configure     [all...]

Completed in 472 milliseconds