Home
last modified time | relevance | path

Searched refs:search_result (Results 1 – 7 of 7) sorted by relevance

/third_party/glib/gio/
Dgdesktopappinfo.c530 struct search_result struct
536 static struct search_result *static_token_results; argument
539 static struct search_result *static_search_results;
542 static struct search_result *static_total_results;
551 const struct search_result *ra = a; in compare_results()
552 const struct search_result *rb = b; in compare_results()
568 const struct search_result *ra = a; in compare_categories()
569 const struct search_result *rb = b; in compare_categories()
581 …static_token_results = g_renew (struct search_result, static_token_results, static_token_results_a… in add_token_result()
593 …qsort (static_token_results, static_token_results_size, sizeof (struct search_result), compare_res… in merge_token_results()
[all …]
/third_party/node/deps/nghttp2/lib/
Dnghttp2_hd.c1165 } search_result; typedef
1167 static search_result search_static_table(const nghttp2_nv *nv, int32_t token, in search_static_table()
1169 search_result res = {token, 0}; in search_static_table()
1191 static search_result search_hd_table(nghttp2_hd_context *context, in search_hd_table()
1195 search_result res = {-1, 0}; in search_hd_table()
1339 search_result res; in deflate_nv()
/third_party/nghttp2/lib/
Dnghttp2_hd.c1165 } search_result; typedef
1167 static search_result search_static_table(const nghttp2_nv *nv, int32_t token, in search_static_table()
1169 search_result res = {token, 0}; in search_static_table()
1191 static search_result search_hd_table(nghttp2_hd_context *context, in search_hd_table()
1195 search_result res = {-1, 0}; in search_hd_table()
1339 search_result res; in deflate_nv()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-string-prototype.c605 … ecma_value_t search_result = ecma_op_function_call (search_method, regexp_value, &this_value, 1); in ecma_builtin_string_prototype_object_search() local
608 return search_result; in ecma_builtin_string_prototype_object_search()
/third_party/gettext/gettext-tools/src/
Dmsgmerge.c1446 struct search_result { message_ty *found; bool fuzzy; } *search_results; in match_domain() argument
1479 search_results = XNMALLOC (refmlp->nitems, struct search_result); in match_domain()
/third_party/flatbuffers/include/flatbuffers/
Dflatbuffers.h361 void *search_result = std::bsearch(
364 if (!search_result) {
368 const uint8_t *element = reinterpret_cast<const uint8_t *>(search_result);
/third_party/python/Lib/
Dpydoc.py2519 search_result = []
2524 search_result.append((modname, desc and '- ' + desc))
2540 for name, desc in search_result: