Home | History | Annotate | Download | only in gn

Lines Matching defs:value_

17   OutputFile() : value_() {}
19 : value_(str.data(), str.size()) {
22 std::string& value() { return value_; }
23 const std::string& value() const { return value_; }
27 return SourceFile(build_settings->build_dir().value() + value_);
31 return value_ == other.value_;
34 return value_ != other.value_;
37 return value_ < other.value_;
41 std::string value_;