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

1 2

  /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);
208 /// \brief Whether a newline needs to be inserted before the block's closing
211 /// We only want to insert a newline before the closing brace if there also
212 /// was a newline after the beginning left brace.
ContinuationIndenter.cpp 88 moveStateToNextToken(State, DryRun, /*Newline=*/false);
256 unsigned ContinuationIndenter::addTokenToState(LineState &State, bool Newline,
269 // If there is a newline within this token, the final column will solely
278 moveStateToNextToken(State, DryRun, /*Newline=*/false);
283 if (Newline)
288 return moveStateToNextToken(State, DryRun, Newline) + Penalty;
667 bool DryRun, bool Newline) {
677 State.Stack.back().LastOperatorWrapped = Newline;
681 State.Stack.back().LastOperatorWrapped = Newline;
716 if (Current.isOneOf(TT_BinaryOperator, TT_ConditionalExpr) && Newline)
    [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/gdb/darwin-x86/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/gdb/linux-x86/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/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/CodeGen/MIRParser/
MILexer.h 33 Newline,
142 bool isNewlineOrEOF() const { return Kind == Newline || Kind == Eof; }
  /external/llvm/lib/Support/
Regex.cpp 28 if (Flags & Newline)
  /frameworks/base/core/java/android/text/
Html.java 112 * one newline character by default.
118 * other texts with one newline character by default.
124 * with one newline character by default.
130 * with one newline character by default.
136 * with one newline character by default.
142 * texts with one newline character by default.
154 * elements with blank lines (two newline characters) in between. This is the legacy behavior
161 * elements with line breaks (single newline character) in between. This inverts the
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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'));

Completed in 643 milliseconds

1 2