reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Symbol/Variable.cpp
  567   if (partial_path.empty()) {
  621     const char ch = partial_path[0];
  625         PrivateAutoComplete(frame, partial_path.substr(1), "*", compiler_type,
  632         PrivateAutoComplete(frame, partial_path.substr(1), std::string("&"),
  638       if (partial_path.size() > 1 && partial_path[1] == '>' &&
  638       if (partial_path.size() > 1 && partial_path[1] == '>' &&
  643           if (partial_path.size() > 2 && partial_path[2]) {
  643           if (partial_path.size() > 2 && partial_path[2]) {
  645             PrivateAutoComplete(frame, partial_path.substr(2),
  667           if (partial_path.size() > 1 && partial_path[1]) {
  667           if (partial_path.size() > 1 && partial_path[1]) {
  669             PrivateAutoComplete(frame, partial_path.substr(1),
  674             PrivateAutoCompleteMembers(frame, std::string(), partial_path,
  686         const size_t partial_path_len = partial_path.size();
  689           const char curr_ch = partial_path[pos];
  697         std::string token(partial_path, 0, pos);
  698         remaining_partial_path = partial_path.substr(pos);