/third_party/python/Python/ |
H A D | suggestions.c | 151 const char *item_str = PyUnicode_AsUTF8AndSize(item, &item_size); in calculate_suggestions() local 152 if (item_str == NULL) { in calculate_suggestions() 155 if (PyUnicode_CompareWithASCIIString(name, item_str) == 0) { in calculate_suggestions() 164 item_str, item_size, max_distance); in calculate_suggestions()
|
/third_party/ffmpeg/libavfilter/ |
H A D | f_segment.c | 51 static void count_points(char *item_str, int *nb_items) in count_points() argument 55 if (!item_str) in count_points() 59 for (p = item_str; *p; p++) { in count_points() 65 static int parse_points(AVFilterContext *ctx, char *item_str, int nb_points, int64_t *points) in parse_points() argument 68 char *arg, *p = item_str; in parse_points()
|
H A D | af_chorus.c | 78 static void count_items(char *item_str, int *nb_items) in count_items() argument 83 for (p = item_str; *p; p++) { in count_items() 90 static void fill_items(char *item_str, int *nb_items, float *items) in fill_items() argument 95 p = item_str; in fill_items()
|
H A D | af_aecho.c | 61 static void count_items(char *item_str, int *nb_items) in count_items() argument 66 for (p = item_str; *p; p++) { in count_items() 73 static void fill_items(char *item_str, int *nb_items, float *items) in fill_items() argument 78 p = item_str; in fill_items()
|
H A D | af_aiir.c | 348 static void count_coefficients(char *item_str, int *nb_items) in count_coefficients() argument 352 if (!item_str) in count_coefficients() 356 for (p = item_str; *p && *p != '|'; p++) { in count_coefficients() 362 static int read_gains(AVFilterContext *ctx, char *item_str, int nb_items) in read_gains() argument 368 p = old_str = av_strdup(item_str); in read_gains() 395 static int read_tf_coefficients(AVFilterContext *ctx, char *item_str, int nb_items, double *dst) in read_tf_coefficients() argument 400 p = old_str = av_strdup(item_str); in read_tf_coefficients() 420 static int read_zp_coefficients(AVFilterContext *ctx, char *item_str, int nb_items, double *dst, const char *format) in read_zp_coefficients() argument 425 p = old_str = av_strdup(item_str); in read_zp_coefficients() 447 static int read_channels(AVFilterContext *ctx, int channels, uint8_t *item_str, in argument [all...] |
H A D | af_compand.c | 103 static void count_items(char *item_str, int *nb_items) in count_items() argument 108 for (p = item_str; *p; p++) { in count_items()
|
H A D | af_mcompand.c | 125 static void count_items(char *item_str, int *nb_items, char delimiter) in count_items() argument 130 for (p = item_str; *p; p++) { in count_items()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-list-format.cc | 208 Handle<String> item_str = Handle<String>::cast(item); in ToUnicodeStringArray() local 209 if (!item_str->IsFlat()) item_str = String::Flatten(isolate, item_str); in ToUnicodeStringArray() 210 result.push_back(Intl::ToICUUnicodeString(isolate, item_str)); in ToUnicodeStringArray()
|
/third_party/toybox/kconfig/lxdialog/ |
H A D | checklist.c | 47 mvwaddch(win, choice, item_x, item_str()[0]); in print_item() 49 waddstr(win, (char *)item_str() + 1); in print_item() 176 check_x = MAX(check_x, strlen(item_str()) + 4); in dialog_checklist() 206 if (toupper(key) == toupper(item_str()[0])) in dialog_checklist()
|
H A D | menubox.c | 105 do_print_item(menu, item_str(), choice, selected, !item_is_tag(':')); \ 291 j = first_alpha(item_str(), "YyNnMmHh"); in dialog_menu() 292 if (key == tolower(item_str()[j])) in dialog_menu() 298 j = first_alpha(item_str(), "YyNnMmHh"); in dialog_menu() 299 if (key == tolower(item_str()[j])) in dialog_menu()
|
H A D | dialog.h | 179 const char *item_str(void);
|
H A D | util.c | 629 const char *item_str(void) in item_str() function
|