Searched refs:candidates (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.1-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeCategory.cpp38 const FormattersMatchVector& candidates,
44 if (GetTypeFormatsContainer()->Get(candidates, entry, reason))
46 bool regex = GetRegexTypeFormatsContainer()->Get(candidates, entry, reason);
54 const FormattersMatchVector& candidates,
60 if (GetTypeSummariesContainer()->Get(candidates, entry, reason))
62 bool regex = GetRegexTypeSummariesContainer()->Get(candidates, entry, reason);
70 const FormattersMatchVector& candidates,
81 if (!GetTypeFiltersContainer()->Get(candidates, filter_sp, &reason_filter))
82 regex_filter = GetRegexTypeFiltersContainer()->Get (candidates, filter_sp, &reason_filter);
89 if (!GetTypeSyntheticsContainer()->Get(candidates, synt
37 Get(ValueObject& valobj, const FormattersMatchVector& candidates, lldb::TypeFormatImplSP& entry, uint32_t* reason) argument
53 Get(ValueObject& valobj, const FormattersMatchVector& candidates, lldb::TypeSummaryImplSP& entry, uint32_t* reason) argument
69 Get(ValueObject& valobj, const FormattersMatchVector& candidates, lldb::SyntheticChildrenSP& entry, uint32_t* reason) argument
[all...]
/freebsd-10.1-release/contrib/gcc/cp/
H A Dcall.c917 struct z_candidate *candidates; local
940 candidates = 0;
967 cand = add_template_candidate (&candidates,
988 candidates = candidates->next;
995 cand = add_function_candidate (&candidates, f, s, arglist,
1019 candidates = splice_viable (candidates, pedantic, &any_viable_p);
1025 cand = tourney (candidates);
1304 /* Add a new entry to the list of candidates
1308 add_candidate(struct z_candidate **candidates, tree fn, tree args, size_t num_convs, conversion **convs, tree access_path, tree conversion_path, int viable) argument
1338 add_function_candidate(struct z_candidate **candidates, tree fn, tree ctype, tree arglist, tree access_path, tree conversion_path, int flags) argument
1479 add_conv_candidate(struct z_candidate **candidates, tree fn, tree obj, tree arglist, tree access_path, tree conversion_path) argument
1548 build_builtin_candidate(struct z_candidate **candidates, tree fnname, tree type1, tree type2, tree *args, tree *argtypes, int flags) argument
1636 add_builtin_candidate(struct z_candidate **candidates, enum tree_code code, enum tree_code code2, tree fnname, tree type1, tree type2, tree *args, tree *argtypes, int flags) argument
2049 add_builtin_candidates(struct z_candidate **candidates, enum tree_code code, enum tree_code code2, tree fnname, tree *args, int flags) argument
2222 add_template_candidate_real(struct z_candidate **candidates, tree tmpl, tree ctype, tree explicit_targs, tree arglist, tree return_type, tree access_path, tree conversion_path, int flags, tree obj, unification_kind_t strict) argument
2321 add_template_candidate(struct z_candidate **candidates, tree tmpl, tree ctype, tree explicit_targs, tree arglist, tree return_type, tree access_path, tree conversion_path, int flags, unification_kind_t strict) argument
2335 add_template_conv_candidate(struct z_candidate **candidates, tree tmpl, tree obj, tree arglist, tree return_type, tree access_path, tree conversion_path) argument
2454 print_z_candidates(struct z_candidate *candidates) argument
2543 struct z_candidate *candidates, *cand; local
2759 perform_overload_resolution(tree fn, tree args, struct z_candidate **candidates, bool *any_viable_p) argument
2806 struct z_candidate *candidates, *cand; local
2876 struct z_candidate *candidates; local
2970 struct z_candidate *candidates = 0, *cand; local
3206 struct z_candidate *candidates = 0; local
3616 add_candidates(tree fns, tree args, tree explicit_targs, bool template_only, tree conversion_path, tree access_path, int flags, struct z_candidate **candidates) argument
3677 struct z_candidate *candidates = 0, *cand; local
3753 flags, &candidates); local
5364 struct z_candidate *candidates = 0, *cand; local
6380 tourney(struct z_candidate *candidates) argument
[all...]
H A Dclass.c1849 tree candidates;
1877 tree *candidate = &ffod->candidates;
1879 /* Remove any candidates overridden by this new function. */
1894 ffod->candidates = tree_cons (method, binfo, ffod->candidates);
1958 ffod.candidates = NULL_TREE;
1967 if (!ffod.candidates || TREE_CHAIN (ffod.candidates))
1970 return ffod.candidates;
1845 tree candidates; member in struct:find_final_overrider_data_s
H A Dpt.c1337 const char *str = "candidates are:";
1384 tree candidates = NULL_TREE; local
1508 candidates = tree_cons (NULL_TREE, fn, candidates);
1573 candidates = tree_cons (NULL_TREE, fn, candidates);
1618 if (templates == NULL_TREE && candidates == NULL_TREE)
1625 || (candidates && TREE_CHAIN (candidates))
1626 || (templates && candidates))
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeCategory.h206 const FormattersMatchVector& candidates,
212 const FormattersMatchVector& candidates,
218 const FormattersMatchVector& candidates,
H A DFormattersContainer.h467 Get (const FormattersMatchVector& candidates, argument
471 for (const FormattersMatchCandidate& candidate : candidates)
/freebsd-10.1-release/contrib/libgnuregex/
H A Dregexec.c96 const re_node_set *candidates)
112 const re_node_set *candidates,
118 int str_idx, const re_node_set *candidates)
1793 const re_node_set *candidates;
1794 candidates = ((mctx->state_log[str_idx] == NULL) ? NULL
1801 if (candidates)
1805 err = add_epsilon_src_nodes (dfa, dest_nodes, candidates);
1812 err = check_subexp_limits (dfa, dest_nodes, candidates, &sctx->limits,
1824 if (candidates && mctx->state_log[str_idx]->has_backref)
1826 err = sift_states_bkref (mctx, sctx, str_idx, candidates);
1790 const re_node_set *candidates; local
1832 add_epsilon_src_nodes(const re_dfa_t *dfa, re_node_set *dest_nodes, const re_node_set *candidates) argument
1861 sub_epsilon_src_nodes(const re_dfa_t *dfa, int node, re_node_set *dest_nodes, const re_node_set *candidates) argument
2057 check_subexp_limits(const re_dfa_t *dfa, re_node_set *dest_nodes, const re_node_set *candidates, re_node_set *limits, struct re_backref_cache_entry *bkref_ents, int str_idx) argument
2145 sift_states_bkref(const re_match_context_t *mctx, re_sift_context_t *sctx, int str_idx, const re_node_set *candidates) argument
[all...]
/freebsd-10.1-release/contrib/llvm/tools/lldb/source/Target/
H A DThread.cpp1790 std::vector<Address> candidates, within_function, outside_function; local
1799 candidates = within_function;
1801 candidates = outside_function;
1804 if (candidates.empty())
1826 Address dest = candidates[0];
1827 if (warnings && candidates.size() > 1)
1832 DumpAddressList(sstr, candidates, target);
/freebsd-10.1-release/contrib/gcc/
H A Dbb-reorder.c1987 bitmap candidates;
2005 candidates = BITMAP_ALLOC (NULL);
2009 mark it in the candidates. */
2049 bitmap_set_bit (candidates, bb->index);
2053 if (bitmap_empty_p (candidates))
2074 if (!bitmap_bit_p (candidates, single_succ (bb)->index))
2086 BITMAP_FREE (candidates);
1986 bitmap candidates; local
/freebsd-10.1-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaCast.cpp350 OverloadCandidateSet &candidates = sequence.getFailedCandidateSet(); local
358 if (candidates.empty())
380 candidates.NoteCandidates(S, howManyCandidates, src);
/freebsd-10.1-release/contrib/ofed/libibcm/config/
H A Dltmain.sh3672 $echo "*** with $libname but no candidates were found. (...for file magic test)"
3674 $echo "*** with $libname and none of the candidates passed a file format test"
3724 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3726 $echo "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/ofed/librdmacm/config/
H A Dltmain.sh3672 $echo "*** with $libname but no candidates were found. (...for file magic test)"
3674 $echo "*** with $libname and none of the candidates passed a file format test"
3724 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3726 $echo "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/sqlite3/
H A Dltmain.sh3708 $echo "*** with $libname but no candidates were found. (...for file magic test)"
3710 $echo "*** with $libname and none of the candidates passed a file format test"
3760 $echo "*** with $libname but no candidates were found. (...for regex pattern test)"
3762 $echo "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/binutils/
H A Dltmain.sh5203 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
5205 $ECHO "*** with $libname and none of the candidates passed a file format test"
5254 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
5256 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/file/
H A Dltmain.sh7854 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7856 $ECHO "*** with $libname and none of the candidates passed a file format test"
7908 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7910 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/ldns/
H A Dltmain.sh7852 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7854 $ECHO "*** with $libname and none of the candidates passed a file format test"
7906 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7908 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/libyaml/config/
H A Dltmain.sh6697 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
6699 $ECHO "*** with $libname and none of the candidates passed a file format test"
6751 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
6753 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/openbsm/config/
H A Dltmain.sh7897 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7899 $ECHO "*** with $libname and none of the candidates passed a file format test"
7951 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7953 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/openpam/
H A Dltmain.sh7897 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7899 $ECHO "*** with $libname and none of the candidates passed a file format test"
7951 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7953 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/unbound/
H A Dltmain.sh7846 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7848 $ECHO "*** with $libname and none of the candidates passed a file format test"
7900 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7902 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/crypto/heimdal/
H A Dltmain.sh7831 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7833 $ECHO "*** with $libname and none of the candidates passed a file format test"
7885 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7887 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/ntp/sntp/libevent/build-aux/
H A Dltmain.sh7846 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7848 $ECHO "*** with $libname and none of the candidates passed a file format test"
7900 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7902 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/ntp/sntp/
H A Dltmain.sh7831 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7833 $ECHO "*** with $libname and none of the candidates passed a file format test"
7885 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7887 $ECHO "*** with $libname and none of the candidates passed a file format test"
/freebsd-10.1-release/contrib/ntp/
H A Dltmain.sh7831 $ECHO "*** with $libname but no candidates were found. (...for file magic test)"
7833 $ECHO "*** with $libname and none of the candidates passed a file format test"
7885 $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)"
7887 $ECHO "*** with $libname and none of the candidates passed a file format test"

Completed in 758 milliseconds