/third_party/boost/boost/format/ |
D | format_implementation.hpp | 71 prefix_(x.prefix_), exceptions_(x.exceptions_), loc_(x.loc_) in basic_format() 93 prefix_.swap(x.prefix_); in swap() 126 prefix_.resize(0); in make_or_reuse_data() 220 return prefix_; in str() 229 res += prefix_; in str() 255 size_type sz = prefix_.size(); in size()
|
D | free_funcs.hpp | 45 os << f.prefix_; in operator <<() 55 os << f.prefix_; in operator <<()
|
D | parsing.hpp | 494 string_type & piece = (cur_item==0) ? prefix_ : items_[cur_item-1].appendix_; in parse() 530 string_type & piece = (cur_item==0) ? prefix_ : items_[cur_item-1].appendix_; in parse()
|
D | format_class.hpp | 171 string_type prefix_; // piece of string to insert before first item member in boost::basic_format
|
/third_party/node/deps/npm/node_modules/archy/ |
D | index.js | 26 var prefix_ = prefix + (last ? ' ' : chr('│')) + ' '; 31 + archy(node, prefix_, opts).slice(prefix.length + 2)
|
/third_party/boost/boost/xpressive/ |
D | match_results.hpp | 391 , prefix_() in match_results() 415 , prefix_() in match_results() 431 this->prefix_ = that.prefix_; in match_results() 513 return this->prefix_ ? *this->prefix_ : this->sub_matches_[this->sub_matches_.size()]; in prefix() 673 this->prefix_.swap(that.prefix_); in swap() 758 …this->prefix_ = sub_match<BidiIter>(begin, this->sub_matches_[ 0 ].first, begin != this->sub_match… in set_prefix_suffix_() 1353 boost::optional<sub_match<BidiIter> > prefix_; member
|
/third_party/re2/re2/ |
D | re2.cc | 204 if (entire_regexp_->RequiredPrefix(&prefix_, &prefix_foldcase_, &suffix)) in Init() 516 int n = static_cast<int>(prefix_.size()); in GlobalReplace() 521 *min = prefix_.substr(0, n); in GlobalReplace() 522 *max = prefix_.substr(0, n); in GlobalReplace() 623 if (!prefix_.empty()) { in GlobalReplace() 626 prefixlen = prefix_.size(); in GlobalReplace() 630 if (ascii_strcasecmp(&prefix_[0], subtext.data(), prefixlen) != 0) in GlobalReplace() 633 if (memcmp(&prefix_[0], subtext.data(), prefixlen) != 0) in GlobalReplace()
|
D | re2.h | 742 std::string prefix_; // required prefix (before regexp_) variable
|
/third_party/node/src/ |
D | node_sockaddr.cc | 454 int prefix_) in SocketAddressMaskRule() argument 456 prefix(prefix_) {} in SocketAddressMaskRule()
|
/third_party/googletest/googlemock/include/gmock/ |
D | gmock-matchers.h | 1024 explicit StartsWithMatcher(const StringType& prefix) : prefix_(prefix) { 1055 return s2.length() >= prefix_.length() && 1056 s2.substr(0, prefix_.length()) == prefix_; 1061 UniversalPrint(prefix_, os); 1066 UniversalPrint(prefix_, os); 1070 const StringType prefix_;
|
/third_party/protobuf/src/google/protobuf/ |
D | descriptor.cc | 323 prefix_ += ascii_tolower(prefix[i]); in PrefixRemover() 344 for (i = 0, j = 0; i < str.size() && j < prefix_.size(); i++) { in MaybeRemove() 349 if (ascii_tolower(str[i]) != prefix_[j++]) { in MaybeRemove() 356 if (j < prefix_.size()) { in MaybeRemove() 376 std::string prefix_; member in google::protobuf::__anonbf2f735a0211::PrefixRemover 2379 : options_(options), prefix_(prefix) { in SourceLocationCommentPrinter() 2389 : options_(options), prefix_(prefix) { in SourceLocationCommentPrinter() 2423 strings::SubstituteAndAppend(&output, "$0// $1\n", prefix_, line); in FormatComment() 2433 std::string prefix_; member in google::protobuf::__anonbf2f735a0411::SourceLocationCommentPrinter
|