/third_party/abseil-cpp/absl/strings/ |
D | str_replace.h | 160 std::vector<ViableSubstitution> subs; in FindSubstitutions() local 196 auto subs = strings_internal::FindSubstitutions(s, replacements); in StrReplaceAll() local 205 auto subs = strings_internal::FindSubstitutions(*target, replacements); in StrReplaceAll() local
|
D | str_replace.cc | 33 auto& subs = *subs_ptr; in ApplySubstitutions() local
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_replace.h | 160 std::vector<ViableSubstitution> subs; in FindSubstitutions() local 196 auto subs = strings_internal::FindSubstitutions(s, replacements); in StrReplaceAll() local 205 auto subs = strings_internal::FindSubstitutions(*target, replacements); in StrReplaceAll() local
|
D | str_replace.cc | 33 auto& subs = *subs_ptr; in ApplySubstitutions() local
|
/third_party/ffmpeg/libavcodec/ |
D | cbs_mpeg2.c | 41 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL) argument 47 #define uis(width, name, subs, ...) \ argument 49 #define uirs(width, name, subs, ...) \ argument 51 #define xui(width, name, var, range_min, range_max, subs, ...) \ argument 53 #define sis(width, name, subs, ...) \ argument 68 #define xuia(width, string, var, range_min, range_max, subs, ...) do { \ argument 76 #define xsi(width, name, var, subs, ...) do { \ argument 108 #define xuia(width, string, var, range_min, range_max, subs, ...) do { \ argument 114 #define xsi(width, name, var, subs, ...) do { \ argument
|
D | cbs_vp9.c | 253 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL) argument 259 #define fs(width, name, subs, ...) \ argument 261 #define ss(width, name, subs, ...) \ argument 268 #define xf(width, name, var, subs, ...) do { \ argument 275 #define xs(width, name, var, subs, ...) do { \ argument 289 #define fle(width, name, subs, ...) do { \ argument 305 #define prob(name, subs, ...) do { \ argument 348 #define xf(width, name, var, subs, ...) do { \ argument 353 #define xs(width, name, var, subs, ...) do { \ argument 362 #define fle(width, name, subs, ...) do { \ argument [all …]
|
D | cbs_h2645.c | 260 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL) argument 276 #define us(width, name, range_min, range_max, subs, ...) \ argument 278 #define ubs(width, name, subs, ...) \ argument 280 #define flags(name, subs, ...) \ argument 282 #define ues(name, range_min, range_max, subs, ...) \ argument 284 #define is(width, name, range_min, range_max, subs, ...) \ argument 286 #define ibs(width, name, subs, ...) \ argument 288 #define ses(name, range_min, range_max, subs, ...) \ argument 301 #define xu(width, name, var, range_min, range_max, subs, ...) do { \ argument 308 #define xue(name, var, range_min, range_max, subs, ...) do { \ argument [all …]
|
D | cbs_av1.c | 551 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL) argument 561 #define fbs(width, name, subs, ...) \ argument 563 #define fcs(width, name, range_min, range_max, subs, ...) \ argument 565 #define flags(name, subs, ...) \ argument 567 #define sus(width, name, subs, ...) \ argument 580 #define xf(width, name, var, range_min, range_max, subs, ...) do { \ argument 588 #define xsu(width, name, var, subs, ...) do { \ argument 604 #define ns(max_value, name, subs, ...) do { \ argument 617 #define subexp(name, max, subs, ...) do { \ argument 668 #define xf(width, name, var, range_min, range_max, subs, ...) do { \ argument [all …]
|
D | cbs_jpeg.c | 34 #define SUBSCRIPTS(subs, ...) (subs > 0 ? ((int[subs + 1]){ subs, __VA_ARGS__ }) : NULL) argument 47 #define xu(width, name, range_min, range_max, subs, ...) do { \ argument 68 #define xu(width, name, range_min, range_max, subs, ...) do { \ argument
|
/third_party/re2/re2/ |
D | prefilter.h | 45 std::vector<Prefilter*>* subs() { in subs() function 52 void set_subs(std::vector<Prefilter*>* subs) { subs_ = subs; } in set_subs()
|
D | prefilter_tree.cc | 149 std::vector<Prefilter*>* subs = node->subs(); in KeepNode() local 193 const std::vector<Prefilter*>& subs = *f->subs(); in AssignUniqueIds() local
|
/third_party/boost/boost/property_tree/detail/ |
D | ptree_implementation.hpp | 30 struct basic_ptree<K, D, C>::subs struct in boost::property_tree::basic_ptree 32 struct by_name {}; 54 > base_container; 58 by_name_index; 61 static base_container& ch(self_type *s) { in ch() 64 static const base_container& ch(const self_type *s) { in ch() 67 static by_name_index& assoc(self_type *s) { in assoc() 70 static const by_name_index& assoc(const self_type *s) { in assoc()
|
/third_party/jsframework/runtime/main/reactivity/ |
D | dep.js | 13 this.subs = []; property in Dep
|
/third_party/cef/libcef/common/ |
D | cef_crash_report_utils.cc | 37 ParameterMap subs; in FilterParameters() local
|
/third_party/icu/icu4c/source/test/intltest/ |
D | mnkytst.cpp | 86 UnicodeString subs, subt; in TestCollationKey() local 161 UnicodeString subs, subt; in TestCompare() local
|
/third_party/boost/libs/regex/example/snippets/ |
D | regex_token_iterator_eg_2.cpp | 77 const int subs[] = {1, 0,}; in main() local
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/ |
D | CollationMonkeyTest.java | 63 String subs = source.substring(Math.min(s, slen), Math.min(s + slen, source.length())); in TestCollationKey() local 141 String subs = source.substring(Math.min(s, slen), Math.min(s + slen, source.length())); in TestCompare() local
|
D | CollationFrozenMonkeyTest.java | 78 String subs = source.substring(Math.min(s, slen), Math.min(s + slen, source.length())); in TestCollationKey() local 169 String subs = source.substring(Math.min(s, slen), Math.min(s + slen, source.length())); in TestCompare() local
|
/third_party/ejdb/src/util/ |
D | lwre.c | 564 RE_Submatches *subs = RE_CALLOC(re, 1, sizeof(RE_Submatches)); in re_submatches_copy() local 572 static void re_submatches_free(struct re *re, RE_Submatches *subs) { in re_submatches_free() 580 static inline RE_Submatches *re_submatches_link(RE_Submatches *subs) { in re_submatches_link() 587 static inline void re_submatches_unlink(struct re *re, RE_Submatches *subs) { in re_submatches_unlink() 611 static inline RE_Thread re_thread(RE_Insn *pc, RE_Submatches *subs) { in re_thread() 617 …hread_schedule(struct re *re, RE_ThreadList *threads, RE_Insn *pc, char *sp, RE_Submatches *subs) { in re_thread_schedule()
|
/third_party/weston/tests/ |
D | subsurface-test.c | 562 struct wl_subsurface **subs, int n) in create_subsurface_tree() 628 struct wl_subsurface **subs, int n) in destroy_subsurface_tree() 704 struct wl_subsurface **subs, int i) in destroy_permu_object() 735 struct wl_subsurface *subs[test_size]; in TEST() local
|
/third_party/gstreamer/gstplugins_bad/gst/dvbsuboverlay/ |
D | gstdvbsuboverlay.c | 180 DVBSubtitles *subs; in gst_dvbsub_overlay_flush_subtitles() local 267 DVBSubtitles *subs; in gst_dvbsub_overlay_finalize() local 798 new_dvb_subtitles_cb (DvbSub * dvb_sub, DVBSubtitles * subs, gpointer user_data) in new_dvb_subtitles_cb() 903 DVBSubtitles * subs) in gst_dvbsub_overlay_subs_to_comp()
|
/third_party/boost/boost/xpressive/ |
D | regex_token_iterator.hpp | 96 inline std::vector<int> to_vector(int subs) in to_vector() 101 inline std::vector<int> const &to_vector(std::vector<int> const &subs) in to_vector()
|
/third_party/ffmpeg/libavformat/ |
D | tedcaptionsdec.c | 32 FFDemuxSubtitlesQueue subs; member 193 static int parse_file(AVIOContext *pb, FFDemuxSubtitlesQueue *subs) in parse_file()
|
D | subtitles.h | 103 AVPacket *subs; ///< array of subtitles packets member
|
/third_party/boost/libs/xpressive/example/ |
D | main.cpp | 191 int const subs[] = { 1, 2 }; in example5() local
|