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

  /external/clang/include/clang/AST/
CommentLexer.h 71 const char *TextPtr;
75 /// If the token is a konwn command, contains command ID and TextPtr is
77 /// contains the length of the string that starts at TextPtr.
101 return StringRef(TextPtr, IntVal);
106 TextPtr = Text.data();
112 return StringRef(TextPtr, IntVal);
117 TextPtr = Name.data();
143 return StringRef(TextPtr, IntVal);
148 TextPtr = Text.data();
164 return StringRef(TextPtr, IntVal)
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 131 Result.TextPtr = "<UNSET>";
169 char *TextPtr = Allocator.Allocate<char>(Length + 1);
171 memcpy(TextPtr, WordText.c_str(), Length + 1);
172 StringRef Text = StringRef(TextPtr, Length);
214 char *TextPtr = Allocator.Allocate<char>(Length + 1);
216 memcpy(TextPtr, WordText.c_str(), Length + 1);
217 StringRef Text = StringRef(TextPtr, Length);

Completed in 348 milliseconds