Searched refs:candidate (Results 1 - 25 of 128) sorted by relevance

123456

/macosx-10.10/WebCore-7600.1.25/platform/mediastream/
H A DRTCIceCandidateDescriptor.cpp39 PassRefPtr<RTCIceCandidateDescriptor> RTCIceCandidateDescriptor::create(const String& candidate, const String& sdpMid, unsigned short sdpMLineIndex) argument
41 return adoptRef(new RTCIceCandidateDescriptor(candidate, sdpMid, sdpMLineIndex));
44 RTCIceCandidateDescriptor::RTCIceCandidateDescriptor(const String& candidate, const String& sdpMid, unsigned short sdpMLineIndex) argument
45 : m_candidate(candidate)
H A DRTCIceCandidateDescriptor.h44 static PassRefPtr<RTCIceCandidateDescriptor> create(const String& candidate, const String& sdpMid, unsigned short sdpMLineIndex);
47 const String& candidate() const { return m_candidate; } function in class:WebCore::RTCIceCandidateDescriptor
52 RTCIceCandidateDescriptor(const String& candidate, const String& sdpMid, unsigned short sdpMLineIndex);
/macosx-10.10/WebCore-7600.1.25/Modules/mediastream/
H A DRTCIceCandidateEvent.idl29 readonly attribute RTCIceCandidate candidate;
H A DRTCIceCandidateEvent.cpp41 PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
43 return adoptRef(new RTCIceCandidateEvent(canBubble, cancelable, candidate));
50 RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate) argument
52 , m_candidate(candidate)
60 RTCIceCandidate* RTCIceCandidateEvent::candidate() const function in class:WebCore::RTCIceCandidateEvent
H A DRTCIceCandidate.idl37 readonly attribute DOMString candidate;
H A DRTCIceCandidate.cpp46 String candidate; local
47 bool ok = dictionary.get("candidate", candidate);
48 if (ok && candidate.isEmpty()) {
74 return adoptRef(new RTCIceCandidate(RTCIceCandidateDescriptor::create(candidate, sdpMid, sdpMLineIndex)));
91 const String& RTCIceCandidate::candidate() const function in class:WebCore::RTCIceCandidate
93 return m_descriptor->candidate();
/macosx-10.10/ruby-106/ruby/test/optparse/
H A Dtest_bash_completion.rb16 assert_equal([], @opt.candidate(""))
20 assert_equal(%w[-z --foo --bar= --for=], @opt.candidate("-"))
24 assert_equal(%w[--foo --bar= --for=], @opt.candidate("--"))
28 assert_equal(%w[--foo --for=], @opt.candidate("--f"))
32 assert_equal(%w[--for=], @opt.candidate("--for"))
36 assert_equal(%w[hello help zot], @opt.candidate("--for="))
40 assert_equal(%w[hello help], @opt.candidate("--for=h"))
/macosx-10.10/shell_cmds-179/which/
H A Dwhich.c105 is_there(char *candidate) argument
110 if (access(candidate, X_OK) == 0 &&
111 stat(candidate, &fin) == 0 &&
116 printf("%s\n", candidate);
125 char candidate[PATH_MAX]; local
135 if (snprintf(candidate, sizeof(candidate), "%s/%s", d,
136 filename) >= (int)sizeof(candidate))
138 if (is_there(candidate)) {
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/back-meta/
H A Ddelete.c40 int candidate = -1; local
47 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
52 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
57 mt = mi->mi_targets[ candidate ];
70 if ( meta_back_controls_add( op, rs, mc, candidate, &ctrls ) != LDAP_SUCCESS )
76 rs->sr_err = ldap_delete_ext( mc->mc_conns[ candidate ].msc_ld,
78 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
82 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
H A Dcandidates.c41 * the request is spawned to all the candidate targets
50 * the target is the only candidate.
89 * returns 1 if suffix is candidate for dn, otherwise 0
110 * | T | T | not candidate |
113 * | T | F | candidate |
114 * | F | F | not candidate |
189 * returns the index of the candidate in case it is unique, otherwise
199 int i, candidate = META_TARGET_NONE; local
205 if ( candidate == META_TARGET_NONE ) {
206 candidate
[all...]
H A Dcompare.c41 int candidate = -1; local
50 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
55 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
60 mt = mi->mi_targets[ candidate ];
116 rc = meta_back_controls_add( op, rs, mc, candidate, &ctrls );
122 rs->sr_err = ldap_compare_ext( mc->mc_conns[ candidate ].msc_ld, mdn.bv_val,
126 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
130 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
H A Dmodrdn.c40 int candidate = -1; local
49 mc = meta_back_getconn( op, rs, &candidate, LDAP_BACK_SENDERR );
54 assert( mc->mc_conns[ candidate ].msc_ld != NULL );
56 mt = mi->mi_targets[ candidate ];
131 if ( meta_back_controls_add( op, rs, mc, candidate, &ctrls ) != LDAP_SUCCESS )
137 rs->sr_err = ldap_rename( mc->mc_conns[ candidate ].msc_ld,
141 rs->sr_err = meta_back_op_result( mc, op, rs, candidate, msgid,
145 if ( meta_back_retry( op, rs, &mc, candidate, LDAP_BACK_SENDERR ) ) {
H A Dbind.c42 int candidate,
53 int candidate );
143 * one candidate has been tried */
154 " candidate selected...\n",
193 * do not assume it's not candidate; rather
307 int candidate,
313 metatarget_t *mt = mi->mi_targets[ candidate ];
314 metasingleconn_t *msc = &mc->mc_conns[ candidate ];
323 op->o_log_prefix, candidate, 0 );
396 op->o_log_prefix, candidate, (voi
303 meta_back_bind_op_result( Operation *op, SlapReply *rs, metaconn_t *mc, int candidate, int msgid, ldap_back_send_t sendok, int dolock ) argument
580 meta_back_single_dobind( Operation *op, SlapReply *rs, metaconn_t **mcp, int candidate, ldap_back_send_t sendok, int nretries, int dolock ) argument
917 meta_back_cancel( metaconn_t *mc, Operation *op, SlapReply *rs, ber_int_t msgid, int candidate, ldap_back_send_t sendok ) argument
961 meta_back_op_result( metaconn_t *mc, Operation *op, SlapReply *rs, int candidate, ber_int_t msgid, time_t timeout, ldap_back_send_t sendok ) argument
1298 meta_back_proxy_authz_cred( metaconn_t *mc, int candidate, Operation *op, SlapReply *rs, ldap_back_send_t sendok, struct berval *binddn, struct berval *bindcred, int *method ) argument
1557 meta_back_proxy_authz_bind( metaconn_t *mc, int candidate, Operation *op, SlapReply *rs, ldap_back_send_t sendok, int dolock ) argument
1626 meta_back_controls_add( Operation *op, SlapReply *rs, metaconn_t *mc, int candidate, LDAPControl ***pctrls ) argument
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DSelectionSubtreeRoot.cpp60 Position candidate = startPos.downstream(); local
61 if (candidate.isCandidate())
62 startPos = candidate;
65 candidate = endPos.upstream();
66 if (candidate.isCandidate())
67 endPos = candidate;
/macosx-10.10/postfix-255/postfix/src/postconf/
H A Dpostconf_dbms.c24 /* database-defined suffixes to generate candidate parameter
27 /* A function that takes as arguments a candidate parameter
156 static VSTRING *candidate = 0; local
185 * the database is a known type. Synthesize candidate parameter names
194 vstring_sprintf(candidate ? candidate :
195 (candidate = vstring_alloc(30)),
197 flag_parameter(STR(candidate),
/macosx-10.10/objc4-646/runtime/
H A Dobjc-sel-set.h42 extern SEL __objc_sel_set_get(struct __objc_sel_set *sset, SEL candidate);
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Sparc/
H A DDelaySlotFiller.cpp62 MachineBasicBlock::iterator candidate);
74 bool delayHasHazard(MachineBasicBlock::iterator candidate,
187 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate, argument
194 if (candidate->isImplicitDef() || candidate->isKill())
197 if (candidate->mayLoad()) {
203 if (candidate->mayStore()) {
211 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) {
212 const MachineOperand &MO = candidate->getOperand(i);
290 // return true if the candidate i
291 isDelayFiller(MachineBasicBlock &MBB, MachineBasicBlock::iterator candidate) argument
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/heap/
H A DConservativeRoots.cpp73 MarkedBlock* candidate = MarkedBlock::blockFor(p); local
74 if (filter.ruleOut(reinterpret_cast<Bits>(candidate))) {
75 ASSERT(!candidate || !m_blocks->set().contains(candidate));
82 if (!m_blocks->set().contains(candidate))
85 if (!candidate->isLiveCell(p))
/macosx-10.10/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dexpand.cpp78 impl::matches_glob(const std::string& glob, const std::string& candidate) argument
80 return atf::text::match(candidate, glob_to_regex(glob));
/macosx-10.10/JavaScriptCore-7600.1.17/yarr/
H A DYarrCanonicalizeUCS2.h69 size_t candidate = entries >> 1; local
70 const UCS2CanonicalizationRange* candidateInfo = info + candidate;
72 entries = candidate;
77 entries -= (candidate + 1);
/macosx-10.10/WebCore-7600.1.25/html/parser/
H A DHTMLFormattingElementList.cpp146 HTMLStackItem* candidate = entry.stackItem().get();
147 if (newItem->localName() != candidate->localName() || newItem->namespaceURI() != candidate->namespaceURI())
149 if (candidate->attributes().size() != newItemAttributeCount)
152 candidates.append(candidate);
178 HTMLStackItem* candidate = candidates[j]; local
181 ASSERT(newItem->attributes().size() == candidate->attributes().size());
182 ASSERT(newItem->localName() == candidate->localName() && newItem->namespaceURI() == candidate->namespaceURI());
184 Attribute* candidateAttribute = candidate
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/MBlaze/
H A DMBlazeDelaySlotFiller.cpp65 static bool hasImmInstruction(MachineBasicBlock::iterator &candidate) { argument
68 unsigned numOper = candidate->getNumOperands();
70 MachineOperand &mop = candidate->getOperand(op);
105 static bool delayHasHazard(MachineBasicBlock::iterator &candidate, argument
108 MachineBasicBlock::iterator a = candidate;
112 // candidate := a0 = operation(a1, a2)
123 bool a_is_memory = candidate->mayLoad() || candidate->mayStore();
126 // candidate instruction.
179 MachineBasicBlock::iterator candidate) {
178 isDelayFiller(MachineBasicBlock &MBB, MachineBasicBlock::iterator candidate) argument
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Target/Mips/
H A DMipsDelaySlotFiller.cpp77 InstrIter candidate);
90 bool delayHasHazard(InstrIter candidate,
187 bool Filler::delayHasHazard(InstrIter candidate, argument
191 if (candidate->isImplicitDef() || candidate->isKill())
196 if (candidate->mayLoad()) {
202 if (candidate->mayStore()) {
210 assert((!candidate->isCall() && !candidate->isReturn()) &&
213 for (unsigned i = 0, e = candidate
[all...]
/macosx-10.10/Security-57031.1.35/Security/include/security_codesigning/
H A Dreqinterp.cpp455 // Execute a match against a candidate value
457 bool Requirement::Interpreter::Match::operator () (CFTypeRef candidate) const
460 if (!candidate)
464 if (CFGetTypeID(candidate) == CFArrayGetTypeID()) {
465 CFArrayRef array = CFArrayRef(candidate);
474 return !CFEqual(candidate, kCFBooleanFalse);
476 return CFEqual(candidate, mValue);
478 if (CFGetTypeID(candidate) == CFStringGetTypeID()) {
479 CFStringRef value = CFStringRef(candidate);
485 if (CFGetTypeID(candidate)
516 inequality(CFTypeRef candidate, CFStringCompareFlags flags, CFComparisonResult outcome, bool negate) const argument
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_codesigning/lib/
H A Dreqinterp.cpp455 // Execute a match against a candidate value
457 bool Requirement::Interpreter::Match::operator () (CFTypeRef candidate) const
460 if (!candidate)
464 if (CFGetTypeID(candidate) == CFArrayGetTypeID()) {
465 CFArrayRef array = CFArrayRef(candidate);
474 return !CFEqual(candidate, kCFBooleanFalse);
476 return CFEqual(candidate, mValue);
478 if (CFGetTypeID(candidate) == CFStringGetTypeID()) {
479 CFStringRef value = CFStringRef(candidate);
485 if (CFGetTypeID(candidate)
516 inequality(CFTypeRef candidate, CFStringCompareFlags flags, CFComparisonResult outcome, bool negate) const argument
[all...]

Completed in 151 milliseconds

123456