Searched refs:search_flags (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | opt.h | 504 int av_opt_set_dict2(void *obj, struct AVDictionary **options, int search_flags); 609 int opt_flags, int search_flags); 633 int opt_flags, int search_flags, void **target_obj); 691 int av_opt_set (void *obj, const char *name, const char *val, int search_flags); 692 int av_opt_set_int (void *obj, const char *name, int64_t val, int search_flags); 693 int av_opt_set_double (void *obj, const char *name, double val, int search_flags); 694 int av_opt_set_q (void *obj, const char *name, AVRational val, int search_flags); 695 int av_opt_set_bin (void *obj, const char *name, const uint8_t *val, int size, int search_flags… 696 int av_opt_set_image_size(void *obj, const char *name, int w, int h, int search_flags); 697 int av_opt_set_pixel_fmt (void *obj, const char *name, enum AVPixelFormat fmt, int search_flags); [all …]
|
D | opt.c | 272 int search_flags = (o->flags & AV_OPT_FLAG_CHILD_CONSTS) ? AV_OPT_SEARCH_CHILDREN : 0; in set_string_number() local 273 … const AVOption *o_named = av_opt_find(target_obj, i ? buf : val, o->unit, 0, search_flags); in set_string_number() 487 int av_opt_set(void *obj, const char *name, const char *val, int search_flags) in av_opt_set() argument 491 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj); in av_opt_set() 609 int search_flags) in OPT_EVAL_NUMBER() 612 const AVOption *o = av_opt_find2(obj, name, NULL, 0, search_flags, &target_obj); in OPT_EVAL_NUMBER() 624 int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags) in av_opt_set_int() argument 626 return set_number(obj, name, 1, 1, val, search_flags); in av_opt_set_int() 629 int av_opt_set_double(void *obj, const char *name, double val, int search_flags) in av_opt_set_double() argument 631 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 | 501 int opt_flags, int search_flags) in opt_find() argument 503 const AVOption *o = av_opt_find(obj, name, unit, opt_flags, search_flags); in opt_find()
|