HomeSort by relevance Sort by last modified time
    Searched refs:Candidates (Results 1 - 21 of 21) sorted by null

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
p2ptransport.h 62 Candidates* candidates,
65 const Candidates& candidates,
rawtransport.h 49 Candidates* candidates,
52 const Candidates& candidates,
transport.h 78 typedef std::vector<Candidate> Candidates;
80 // Used to parse and serialize (write) transport candidates. For
88 Candidates* candidates,
91 const Candidates& candidates,
171 // Handles sending of ready candidates and receiving of remote candidates.
174 void OnRemoteCandidates(const std::vector<Candidate>& candidates);
rawtransport.cc 56 Candidates* candidates,
70 candidates->push_back(candidate);
77 const Candidates& candidates,
81 cand = candidates.begin();
82 cand != candidates.end();
sessionmessages.h 49 typedef std::vector<Candidate> Candidates;
110 const Candidates& candidates)
113 candidates(candidates) {}
117 Candidates candidates; member in struct:cricket::TransportInfo
session.h 92 const Candidates& sent_candidates() const { return sent_candidates_; }
98 void AddSentCandidates(const Candidates& candidates);
121 Candidates sent_candidates_;
401 // Returns a TransportInfo without candidates for each content name.
422 const Candidates& candidates);
p2ptransport.cc 81 Candidates* candidates,
84 // candidates according to XEP-176.
94 candidates->push_back(candidate);
157 const Candidates& candidates,
161 // candidates according to XEP-176.
162 for (std::vector<Candidate>::const_iterator iter = candidates.begin();
163 iter != candidates.end(); ++iter) {
sessionmessages.cc 282 Candidates* candidates,
290 candidates, error);
298 TransportInfo tinfo(CN_OTHER, NS_GINGLE_P2P, Candidates());
301 &tinfo.candidates, error))
307 // If we don't have media, no need to separate the candidates.
313 // If we have media, separate the candidates. Create the
314 // TransportInfo here to avoid copying the candidates.
315 TransportInfo audio_tinfo(CN_AUDIO, NS_GINGLE_P2P, Candidates());
316 TransportInfo video_tinfo(CN_VIDEO, NS_GINGLE_P2P, Candidates());
    [all...]
session.cc 126 void TransportProxy::AddSentCandidates(const Candidates& candidates) {
127 for (Candidates::const_iterator cand = candidates.begin();
128 cand != candidates.end(); ++cand) {
412 TransportInfo(content->name, transport_type_, Candidates()));
427 // Must complete negotiation before sending remote candidates, or
430 for (Candidates::const_iterator cand = tinfo->candidates.begin();
431 cand != tinfo->candidates.end(); ++cand)
    [all...]
  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 262 BitVector &Candidates,
265 int Survivor = Candidates.find_first();
266 assert(Survivor > 0 && "No candidates for scavenging");
281 // Remove any candidates touched by instruction.
285 Candidates.clearBitsNotInMask(MO.getRegMask());
296 Candidates.reset(*AI);
307 if (Candidates.test(Survivor))
310 // All candidates gone?
311 if (Candidates.none())
314 Survivor = Candidates.find_first()
    [all...]
MachineLICM.cpp 151 /// CandidateInfo - Keep track of information about hoisting candidates.
175 SmallVector<CandidateInfo, 32> &Candidates);
407 SmallVector<CandidateInfo, 32> &Candidates) {
485 Candidates.push_back(CandidateInfo(MI, Def, FI));
500 SmallVector<CandidateInfo, 32> Candidates;
504 // collect potential LICM candidates.
528 ProcessMI(MI, PhysRegDefs, PhysRegClobbers, StoredFIs, Candidates);
548 // Now evaluate whether the potential candidates qualify.
556 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
557 if (Candidates[i].FI != INT_MIN &
    [all...]
  /external/clang/include/clang/Sema/
Overload.h 41 OR_Ambiguous, ///< Ambiguous candidates found.
46 /// Requests that all candidates be shown. Viable candidates will
50 /// Requests that only viable candidates be shown.
736 /// OverloadCandidateSet - A set of overload candidates, used in C++
739 SmallVector<OverloadCandidate, 16> Candidates;
766 /// \brief Clear out all of the candidates.
770 iterator begin() { return Candidates.begin(); }
771 iterator end() { return Candidates.end(); }
773 size_t size() const { return Candidates.size();
    [all...]
CodeCompleteConsumer.h     [all...]
  /external/llvm/include/llvm/CodeGen/
RegisterScavenging.h 162 BitVector &Candidates,
  /external/clang/lib/Sema/
CodeCompleteConsumer.cpp 520 OverloadCandidate *Candidates,
524 = Candidates[I].CreateSignatureString(CurrentArg, SemaRef,
SemaExprCXX.cpp     [all...]
SemaTemplate.cpp     [all...]
SemaOverload.cpp 745 Candidates.clear();
    [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 622 OverloadCandidate *Candidates,
627 = Candidates[I].CreateSignatureString(CurrentArg, S, getAllocator(),
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/clang/lib/Frontend/
ASTUnit.cpp     [all...]

Completed in 1052 milliseconds