HomeSort by relevance Sort by last modified time
    Searched refs:Newline (Results 1 - 9 of 9) 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/icu4c/data/brkitr/
word.txt 29 $Newline = [\p{Word_Break = Newline}];
92 [^$CR $LF $Newline $dictionaryCJK]? ($Extend | $Format)+;
170 ($Format | $Extend)* [^$CR $LF $Newline $dictionaryCJK]?;
word_POSIX.txt 29 $Newline = [\p{Word_Break = Newline}];
92 [^$CR $LF $Newline $dictionaryCJK]? ($Extend | $Format)+;
170 ($Format | $Extend)* [^$CR $LF $Newline $dictionaryCJK]?;
  /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);
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);
  /external/clang/lib/Format/
Format.cpp 393 /// \brief Whether a newline needs to be inserted before the block's closing
396 /// We only want to insert a newline before the closing brace if there also
397 /// was a newline after the beginning left brace.
501 /// Puts the token on the current line if \p Newline is \c true and adds a
506 unsigned addTokenToState(bool Newline, bool DryRun, LineState &State) {
521 if (Newline) {
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 415 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
771 // Scan for newline.
777 // Handle \n\r and \r\n as a single newline.
847 // the previous line (i.e. that there is one newline between them).

Completed in 556 milliseconds