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

  /external/webkit/Source/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 42 static const UChar Newline = '\n';
44 str.replace(Newline, WindowsNewline);
  /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/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);
370 else if (Tok.is(tok::newline)) {
596 case tok::newline: {
598 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
648 // by a newline.
649 if (Tok.is(tok::newline))
654 Tok.is(tok::newline)) {
    [all...]
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 304 static const UChar Newline = '\n';
306 str.replace(Newline, WindowsNewline);

Completed in 67 milliseconds