Lines Matching refs:std
2945 std::regex patterns[] =
2947 std::regex("((x0|x1|x2|sp): " VIXL_COLOUR "0x)[0-9a-f]{16}"),
2949 std::regex("((<-|->) " VIXL_COLOUR "0x)[0-9a-f]{16}"),
2951 std::regex("^(0x)[0-9a-f]{16}"),
2953 std::regex("(Branch" VIXL_COLOUR " to 0x)[0-9a-f]{16}"),
2955 std::regex("(addr 0x)[0-9a-f]+")};
2958 std::vector<std::string> lines;
2959 std::ifstream in(trace);
2961 std::string line;
2962 std::getline(in, line);
2964 line = std::regex_replace(line, pattern, "$1~~~~~~~~~~~~~~~~");
2973 std::ofstream out(trace, std::ofstream::trunc);