HomeSort by: relevance | last modified time | path
    Searched refs:isWhitespace (Results 1 - 19 of 19) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/AST/
CommentBriefParser.cpp 16 inline bool isWhitespace(char C) {
29 if (isWhitespace(C)) {
46 bool isWhitespace(StringRef Text) {
49 if (!isWhitespace(*I))
117 if (isWhitespace(Tok.getText()))
130 if (InFirstParagraph && !isWhitespace(FirstParagraphOrBrief))
Comment.cpp 113 if (!clang::isWhitespace(*I))
122 if (!TC->isWhitespace())
CommentParser.cpp 19 static inline bool isWhitespace(llvm::StringRef S) {
21 if (!isWhitespace(*I))
123 if (isWhitespace(peek()))
165 if (!isWhitespace(C)) {
612 if (Tok.is(tok::text) && isWhitespace(Tok.getText())) {
CommentSema.cpp 240 std::remove_if(ArgLower.begin(), ArgLower.end(), clang::isWhitespace),
570 if (Paragraph->isWhitespace()) {
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TextDiagnostic.cpp 342 if (!isWhitespace(CaretLine[CaretStart]))
346 if (!isWhitespace(CaretLine[CaretEnd - 1]))
357 if (!isWhitespace(FixItInsertionLine[FixItStart]))
361 if (!isWhitespace(FixItInsertionLine[FixItEnd - 1]))
424 while (NewStart && isWhitespace(SourceLine[NewStart]))
430 if (isWhitespace(SourceLine[Prev]))
450 while (NewEnd < SourceLine.size() && isWhitespace(SourceLine[NewEnd]))
454 while (NewEnd < SourceLine.size() && isWhitespace(SourceLine[NewEnd]))
515 while (Idx < Length && isWhitespace(Str[Idx]))
560 while (End < Length && !isWhitespace(Str[End])
    [all...]
LayoutOverrideSource.cpp 144 while (!LineStr.empty() && isWhitespace(LineStr[0]))
VerifyDiagnosticConsumer.cpp 201 && !(P == Begin || isWhitespace(P[-1])
261 for (; C < End && isWhitespace(*C); ++C)
InitPreprocessor.cpp 31 while (!MacroBody.empty() && isWhitespace(MacroBody.back()))
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
CharInfo.h 87 LLVM_READONLY inline bool isWhitespace(unsigned char c) {
  /src/external/apache2/llvm/dist/clang/lib/Index/
CommentToXML.cpp 111 if (PC->isWhitespace())
321 if (C->isWhitespace())
690 if (C->isWhitespace())
  /src/external/apache2/llvm/dist/clang/tools/libclang/
CXComment.cpp 111 return TC->isWhitespace();
114 return PC->isWhitespace();
  /src/external/apache2/llvm/dist/clang/lib/Edit/
EditedSource.cpp 327 if (isWhitespace(left) || isWhitespace(right))
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Parsing.cpp 151 return S.drop_while([](char c) { return isASCII(c) && isWhitespace(c); });
SourceCode.cpp 295 for (int i = 1; isWhitespace(LocChars[i]); ++i)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Comment.h 84 /// True if \c IsWhitespace field contains a valid value.
88 mutable unsigned IsWhitespace : 1;
130 /// True if \c IsWhitespace field contains a valid value.
134 mutable unsigned IsWhitespace : 1;
283 bool isWhitespace() const {
285 return TextCommentBits.IsWhitespace;
287 TextCommentBits.IsWhitespace = isWhitespaceNoCache();
289 return TextCommentBits.IsWhitespace;
556 ParagraphCommentBits.IsWhitespace = true;
580 bool isWhitespace() const
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CommandLine.cpp 813 static bool isWhitespace(char C) {
818 return isWhitespace(C) || C == '\0';
830 while (I != E && isWhitespace(Src[I])) {
865 if (isWhitespace(C)) {
1042 if (isWhitespace(*Cur)) {
1043 while (Cur != Source.end() && isWhitespace(*Cur))
  /src/external/apache2/llvm/dist/clang/lib/Lex/
Lexer.cpp 479 if (!IgnoreWhiteSpace && isWhitespace(StrData[0]))
1197 while (isWhitespace(Ptr[Size])) {
1327 if (!isWhitespace(Ptr[0])) return '\\';
1385 if (!isWhitespace(Ptr[0])) return '\\';
2350 if (isWhitespace(C)) {
2352 while (isWhitespace(*ForwardPtr)) // Skip whitespace.
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaType.cpp 4217 if (isWhitespace(*NextChar)) {
SemaDecl.cpp 14552 (StartTok.empty() || isWhitespace(StartTok[0]) ||

Completed in 65 milliseconds