Lines Matching defs:partial_path
465 StackFrame *frame, llvm::StringRef partial_path,
472 llvm::StringRef partial_path,
485 PrivateAutoCompleteMembers(frame, partial_member_name, partial_path,
498 PrivateAutoCompleteMembers(frame, partial_member_name, partial_path,
520 frame, partial_path,
524 } else if (partial_path.empty()) {
533 StackFrame *frame, llvm::StringRef partial_path,
538 // '%s'\n", prefix_path.c_str(), partial_path.c_str());
542 if (partial_path.empty()) {
596 const char ch = partial_path[0];
600 PrivateAutoComplete(frame, partial_path.substr(1), "*", compiler_type,
607 PrivateAutoComplete(frame, partial_path.substr(1), std::string("&"),
613 if (partial_path.size() > 1 && partial_path[1] == '>' &&
618 if (partial_path.size() > 2 && partial_path[2]) {
620 PrivateAutoComplete(frame, partial_path.substr(2),
642 if (partial_path.size() > 1 && partial_path[1]) {
644 PrivateAutoComplete(frame, partial_path.substr(1),
649 PrivateAutoCompleteMembers(frame, std::string(), partial_path,
661 const size_t partial_path_len = partial_path.size();
664 const char curr_ch = partial_path[pos];
672 std::string token(std::string(partial_path), 0, pos);
673 remaining_partial_path = std::string(partial_path.substr(pos));