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

  /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,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
163 nodes.extend([new_node, Newline()])
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()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_urllib.py 10 from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
163 nodes.extend([new_node, Newline()])
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()
  /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/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/clang/lib/Format/
Format.cpp 555 bool Newline =
558 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
    [all...]

Completed in 215 milliseconds