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 72 const char *TextPtr;
76 /// If the token is a konwn command, contains command ID and TextPtr is
78 /// contains the length of the string that starts at TextPtr.
102 return StringRef(TextPtr, IntVal);
107 TextPtr = Text.data();
113 return StringRef(TextPtr, IntVal);
118 TextPtr = Name.data();
144 return StringRef(TextPtr, IntVal);
149 TextPtr = Text.data();
165 return StringRef(TextPtr, IntVal)
    [all...]
  /external/clang/lib/AST/
CommentParser.cpp 140 Result.TextPtr = "<UNSET>";
178 char *TextPtr = Allocator.Allocate<char>(Length + 1);
180 memcpy(TextPtr, WordText.c_str(), Length + 1);
181 StringRef Text = StringRef(TextPtr, Length);
223 char *TextPtr = Allocator.Allocate<char>(Length + 1);
225 memcpy(TextPtr, WordText.c_str(), Length + 1);
226 StringRef Text = StringRef(TextPtr, Length);

Completed in 80 milliseconds