Home
last modified time | relevance | path

Searched refs:cur_ (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/malloc_debug/
DConfig.cpp87 PropertyParser(const char* property) : cur_(property) {} in PropertyParser()
96 const char* cur_ = nullptr; member in PropertyParser
105 while (isspace(*cur_)) in Get()
106 ++cur_; in Get()
108 if (*cur_ == '\0') { in Get()
113 const char* property_start = cur_; in Get()
114 while (!isspace(*cur_) && *cur_ != '=' && *cur_ != '\0') in Get()
115 ++cur_; in Get()
117 *property = std::string(property_start, cur_ - property_start); in Get()
120 while (isspace(*cur_) && *cur_ != '=' && *cur_ != '\0') in Get()
[all …]