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

123456

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dspellcheck-tree.c53 find_closest_identifier (tree target, const auto_vec<tree> *candidates) argument
60 FOR_EACH_VEC_ELT (*candidates, i, identifier)
80 auto_vec<tree> candidates; local
83 ASSERT_EQ (NULL, find_closest_identifier (get_identifier (""), &candidates));
89 candidates.safe_push (apple);
90 candidates.safe_push (banana);
91 candidates.safe_push (cherry);
94 &candidates));
96 &candidates));
98 &candidates));
[all...]
H A Dspellcheck.c148 const auto_vec<const char *> *candidates)
151 gcc_assert (candidates);
156 FOR_EACH_VEC_ELT (*candidates, i, candidate)
304 auto_vec<const char *> candidates; local
305 candidates.safe_push (candidate);
306 ASSERT_EQ_AT (loc, candidate, find_closest_string (target, &candidates));
322 auto_vec<const char *> candidates; local
323 candidates.safe_push (candidate);
324 ASSERT_EQ_AT (loc, NULL, find_closest_string (target, &candidates));
391 auto_vec<const char *> candidates; local
147 find_closest_string(const char *target, const auto_vec<const char *> *candidates) argument
[all...]
H A Dspellcheck-tree.h31 find_closest_identifier (tree target, const auto_vec<tree> *candidates);
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dspellcheck-tree.cc53 find_closest_identifier (tree target, const auto_vec<tree> *candidates) argument
60 FOR_EACH_VEC_ELT (*candidates, i, identifier)
80 auto_vec<tree> candidates; local
83 ASSERT_EQ (NULL, find_closest_identifier (get_identifier (""), &candidates));
89 candidates.safe_push (apple);
90 candidates.safe_push (banana);
91 candidates.safe_push (cherry);
94 &candidates));
96 &candidates));
98 &candidates));
[all...]
H A Dspellcheck.cc163 const auto_vec<const char *> *candidates)
166 gcc_assert (candidates);
171 FOR_EACH_VEC_ELT (*candidates, i, candidate)
322 auto_vec<const char *> candidates; local
323 candidates.safe_push (candidate);
324 ASSERT_EQ_AT (loc, candidate, find_closest_string (target, &candidates));
340 auto_vec<const char *> candidates; local
341 candidates.safe_push (candidate);
342 ASSERT_EQ_AT (loc, NULL, find_closest_string (target, &candidates));
409 auto_vec<const char *> candidates; local
162 find_closest_string(const char *target, const auto_vec<const char *> *candidates) argument
[all...]
H A Dspellcheck-tree.h31 find_closest_identifier (tree target, const auto_vec<tree> *candidates);
/netbsd-current/external/bsd/atf/dist/tools/
H A Dexpand_test.cpp164 std::vector< std::string > candidates;
165 candidates.push_back("foo");
166 candidates.push_back("bar");
167 candidates.push_back("baz");
168 candidates.push_back("foobar");
169 candidates.push_back("foobarbaz");
170 candidates.push_back("foobarbazfoo");
174 exps = expand_glob("foo", candidates);
178 exps = expand_glob("bar", candidates);
182 exps = expand_glob("foo*", candidates);
[all...]
H A Dexpand.hpp60 //! \brief Expands a glob pattern among multiple candidates.
67 const T& candidates)
71 for (typename T::const_iterator iter = candidates.begin();
72 iter != candidates.end(); iter++)
66 expand_glob(const std::string& glob, const T& candidates) argument
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-meta/
H A Dsearch.c79 SlapReply *candidates )
135 candidates[ candidate ].sr_msgid = META_MSGID_NEED_BIND;
258 NULL, NULL, &candidates[ candidate ].sr_msgid );
269 assert( candidates[ candidate ].sr_msgid >= 0 );
270 META_BINDING_SET( &candidates[ candidate ] );
275 candidates[ candidate ].sr_msgid = META_MSGID_CONNECTING;
285 if ( !META_IS_RETRYING( &candidates[ candidate ] ) ) {
286 META_RETRYING_SET( &candidates[ candidate ] );
318 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
328 candidates[ candidat
363 meta_search_dobind_result( Operation *op, SlapReply *rs, metaconn_t **mcp, int candidate, SlapReply *candidates, LDAPMessage *res ) argument
434 meta_back_search_start( Operation *op, SlapReply *rs, dncookie *dc, metaconn_t **mcp, int candidate, SlapReply *candidates, struct berval *prcookie, ber_int_t prsize ) argument
795 SlapReply *candidates = NULL; local
[all...]
H A DMakefile.in18 conn.c candidates.c dncache.c
21 conn.lo candidates.lo dncache.lo
/netbsd-current/external/mpl/bind/dist/bin/tests/system/
H A Dget_algorithms.py131 candidates = getattr(algs, alg_type)
132 if isinstance(candidates, Algorithm):
133 candidates = [candidates]
134 supported = list(filter(is_supported, candidates))
181 candidates = algs.default
184 candidates.remove(taken)
187 assert len(candidates), "no possible choice for DEFAULT algorithm"
188 random.shuffle(candidates)
189 default = candidates[
[all...]
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-asyncmeta/
H A Dmeta_result.c57 SlapReply *candidates = bc->candidates; local
59 if ( !META_IS_CANDIDATE( &candidates[ i ] ) ) {
62 if (candidates[ i ].sr_msgid != META_MSGID_IGNORE ||
63 candidates[ i ].sr_type != REP_RESULT) {
500 SlapReply *candidates = bc->candidates; local
508 if ( META_IS_CANDIDATE( &candidates[ i ] )
509 && candidates[ i ].sr_matched != NULL )
519 && candidates[
748 SlapReply *candidates; local
1389 SlapReply *candidates; local
[all...]
H A Dsearch.c59 if (j != candidate && bc->candidates[j].sr_msgid >= 0
62 bc->candidates[ j ].sr_msgid, j );
327 SlapReply *candidates = bc->candidates; local
354 candidates[ candidate ].sr_err = LDAP_OTHER;
358 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
545 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
603 candidates[ candidate ].sr_msgid = msgid;
630 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
645 candidates[ candidat
684 SlapReply *candidates = NULL; local
[all...]
H A DMakefile.in24 conn.c candidates.c dncache.c meta_result.c
27 conn.lo candidates.lo dncache.lo meta_result.lo
H A Dcompare.c59 SlapReply *candidates = bc->candidates; local
76 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
122 candidates[ candidate ].sr_msgid = msgid;
160 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
181 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_compare_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
194 SlapReply *candidates; local
212 candidates = bc->candidates;
213 mc = asyncmeta_getconn( op, rs, candidates,
[all...]
H A Ddelete.c56 SlapReply *candidates = bc->candidates; local
70 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
115 candidates[ candidate ].sr_msgid = msgid;
154 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
172 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_delete_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
185 SlapReply *candidates; local
205 candidates = bc->candidates;
206 mc = asyncmeta_getconn( op, rs, candidates,
[all...]
H A Dmodrdn.c59 SlapReply *candidates = bc->candidates; local
129 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
176 candidates[ candidate ].sr_msgid = msgid;
215 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
243 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_modrdn_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
256 SlapReply *candidates; local
274 candidates = bc->candidates;
275 mc = asyncmeta_getconn( op, rs, candidates,
[all...]
H A Dadd.c83 SlapReply *candidates = bc->candidates; local
135 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
179 candidates[ candidate ].sr_msgid = msgid;
218 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
237 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_add_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
251 SlapReply *candidates; local
270 candidates = bc->candidates;
271 mc = asyncmeta_getconn( op, rs, candidates,
[all...]
H A Dmodify.c59 SlapReply *candidates = bc->candidates; local
128 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
175 candidates[ candidate ].sr_msgid = msgid;
214 candidates[ candidate ].sr_msgid = META_MSGID_IGNORE;
233 Debug( LDAP_DEBUG_TRACE, "%s <<< asyncmeta_back_modify_start[%p]=%d\n", op->o_log_prefix, msc, candidates[candidate].sr_msgid );
246 SlapReply *candidates; local
265 candidates = bc->candidates;
266 mc = asyncmeta_getconn( op, rs, candidates,
[all...]
H A Dconn.c522 SlapReply *candidates,
613 /* allow multiple candidates for the searchBase */
638 candidates[ i ].sr_err = asyncmeta_init_one_conn( op,
641 if ( candidates[ i ].sr_err == LDAP_SUCCESS ) {
645 META_CANDIDATE_SET( &candidates[ i ] );
655 META_CANDIDATE_RESET( &candidates[ i ] );
656 err = candidates[ i ].sr_err;
663 rs->sr_text = "Unable to select valid candidates";
693 META_CANDIDATE_RESET( &candidates[ j ] );
748 * Clear all other candidates
519 asyncmeta_getconn( Operation *op, SlapReply *rs, SlapReply *candidates, int *candidate, ldap_back_send_t sendok, int alloc_new) argument
1029 asyncmeta_start_listeners(a_metaconn_t *mc, SlapReply *candidates, bm_context_t *bc) argument
1038 asyncmeta_start_one_listener(a_metaconn_t *mc, SlapReply *candidates, bm_context_t *bc, int candidate) argument
[all...]
H A Dmessage_queue.c76 (*new_bc)->candidates = op->o_tmpcalloc(ntargets, sizeof(SlapReply),op->o_tmpmemctx);
165 if (bc->candidates[ i ].sr_text != NULL) {
166 ch_free( (char *)bc->candidates[ i ].sr_text );
167 bc->candidates[ i ].sr_text = NULL;
224 if (om->candidates[candidate].sr_msgid == msgid && !om->bc_invalid) {
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
H A Dambiguous.exp182 # in TYPE, and that the candidates are CANDIDATES.
183 proc test_ambiguous {what field type candidates} {
186 foreach c $candidates {
/netbsd-current/external/gpl3/gcc.old/dist/gcc/common/config/arm/
H A Darm-common.c313 auto_vec<const char*> candidates; local
316 candidates.safe_push (list->common.name);
322 candidates.safe_push (alias->name);
328 candidates.safe_push ("native");
332 const char *hint = candidates_list_and_hint (target, s, candidates);
386 auto_vec<const char*> candidates; local
388 candidates.safe_push (list->common.name);
392 candidates.safe_push ("native");
396 const char *hint = candidates_list_and_hint (target, s, candidates);
439 auto_vec<const char*> candidates; local
487 auto_vec<const char*> candidates; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/common/config/arm/
H A Darm-common.cc360 auto_vec<const char*> candidates; local
363 candidates.safe_push (list->common.name);
369 candidates.safe_push (alias->name);
375 candidates.safe_push ("native");
379 const char *hint = candidates_list_and_hint (target, s, candidates);
433 auto_vec<const char*> candidates; local
435 candidates.safe_push (list->common.name);
439 candidates.safe_push ("native");
443 const char *hint = candidates_list_and_hint (target, s, candidates);
486 auto_vec<const char*> candidates; local
534 auto_vec<const char*> candidates; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/i386/
H A Di386-features.h151 void build (bitmap candidates, unsigned insn_uid);
160 void add_insn (bitmap candidates, unsigned insn_uid);
161 void analyze_register_chain (bitmap candidates, df_ref ref);

Completed in 158 milliseconds

123456