Searched refs:search_flags (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | opt.h | 501 int av_opt_set_dict2(void *obj, struct AVDictionary **options, int search_flags); 606 int opt_flags, int search_flags); 630 int opt_flags, int search_flags, void **target_obj); 701 int av_opt_set (void *obj, const char *name, const char *val, int search_flags); 702 int av_opt_set_int (void *obj, const char *name, int64_t val, int search_flags); 703 int av_opt_set_double (void *obj, const char *name, double val, int search_flags); 704 int av_opt_set_q (void *obj, const char *name, AVRational val, int search_flags); 705 int av_opt_set_bin (void *obj, const char *name, const uint8_t *val, int size, int search_flags… 706 int av_opt_set_image_size(void *obj, const char *name, int w, int h, int search_flags); 707 int av_opt_set_pixel_fmt (void *obj, const char *name, enum AVPixelFormat fmt, int search_flags); [all …]
|
D | opt.c | 263 int search_flags = (o->flags & AV_OPT_FLAG_CHILD_CONSTS) ? AV_OPT_SEARCH_CHILDREN : 0; in set_string_number() local 264 … const AVOption *o_named = av_opt_find(target_obj, i ? buf : val, o->unit, 0, search_flags); in set_string_number() 465 int av_opt_set(void *obj, const char *name, const char *val, int search_flags) in av_opt_set() argument 469 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj); in av_opt_set() 571 int search_flags) in OPT_EVAL_NUMBER() 574 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj); in OPT_EVAL_NUMBER() 586 int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags) in av_opt_set_int() argument 588 return set_number(obj, name, 1, 1, val, search_flags); in av_opt_set_int() 591 int av_opt_set_double(void *obj, const char *name, double val, int search_flags) in av_opt_set_double() argument 593 return set_number(obj, name, val, 1, 1, search_flags); in av_opt_set_double() [all …]
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
D | ecma-builtin-string-prototype.c | 463 uint8_t search_flags = ECMA_STRING_FLAG_IS_ASCII; in ecma_builtin_string_prototype_object_replace() local 468 &search_flags); in ecma_builtin_string_prototype_object_replace() 555 if (search_flags & ECMA_STRING_FLAG_MUST_BE_FREED) in ecma_builtin_string_prototype_object_replace()
|
/third_party/ffmpeg/fftools/ |
D | cmdutils.c | 532 int opt_flags, int search_flags) in opt_find() argument 534 const AVOption *o = av_opt_find(obj, name, unit, opt_flags, search_flags); in opt_find()
|