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

  /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,
  /external/icu4c/data/brkitr/
word.txt 29 $Newline = [\p{Word_Break = Newline}];
92 [^$CR $LF $Newline]? ($Extend | $Format)+;
170 ($Format | $Extend)* [^$CR $LF $Newline]?;
word_POSIX.txt 29 $Newline = [\p{Word_Break = Newline}];
92 [^$CR $LF $Newline $dictionaryCJK]? ($Extend | $Format)+;
170 ($Format | $Extend)* [^$CR $LF $Newline $dictionaryCJK]?;
  /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/llvm/lib/Support/
Regex.cpp 28 if (Flags & Newline)
  /external/clang/lib/AST/
CommentParser.cpp 91 if (P.Tok.is(tok::newline)) {
92 // If we see a single newline token between text tokens, skip it.
93 Token Newline = P.Tok;
96 P.putBack(Newline);
365 else if (Tok.is(tok::newline)) {
591 case tok::newline: {
593 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
643 // by a newline.
644 if (Tok.is(tok::newline))
649 Tok.is(tok::newline)) {
    [all...]
  /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()]
  /external/clang/lib/Format/
Format.cpp 343 moveStateToNextToken(State, /*DryRun=*/false, /*Newline=*/false);
405 /// \brief Whether a newline needs to be inserted before the block's closing
408 /// We only want to insert a newline before the closing brace if there also
409 /// was a newline after the beginning left brace.
561 bool Newline = mustBreak(State) ||
563 addTokenToState(Newline, /*DryRun=*/false, State);
570 /// Puts the token on the current line if \p Newline is \c false and adds a
575 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
597 if (Newline) {
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 434 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
839 // Scan for newline.
845 // Handle \n\r and \r\n as a single newline.
880 // the previous line (i.e. that there is one newline between them).
    [all...]

Completed in 873 milliseconds