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

  /external/google-benchmark/src/
re.h 63 std::regex re_; member in class:benchmark::Regex
65 regex_t re_; member in class:benchmark::Regex
79 re_ = std::regex(spec, std::regex_constants::extended);
97 return std::regex_search(str, re_);
102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
105 size_t needed = regerror(ec, &re_, nullptr, 0);
107 regerror(ec, &re_, errbuf, needed);
126 regfree(&re_);
134 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0;
  /external/libcxx/utils/google-benchmark/src/
re.h 63 std::regex re_; member in class:benchmark::Regex
65 regex_t re_; member in class:benchmark::Regex
79 re_ = std::regex(spec, std::regex_constants::extended);
97 return std::regex_search(str, re_);
102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
105 size_t needed = regerror(ec, &re_, nullptr, 0);
107 regerror(ec, &re_, errbuf, needed);
126 regfree(&re_);
134 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
re.h 63 std::regex re_; member in class:benchmark::Regex
65 regex_t re_; member in class:benchmark::Regex
79 re_ = std::regex(spec, std::regex_constants::extended);
97 return std::regex_search(str, re_);
102 int ec = regcomp(&re_, spec.c_str(), REG_EXTENDED | REG_NOSUB);
105 size_t needed = regerror(ec, &re_, nullptr, 0);
107 regerror(ec, &re_, errbuf, needed);
126 regfree(&re_);
134 return regexec(&re_, str.c_str(), 0, nullptr, 0) == 0;

Completed in 364 milliseconds