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

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
portproxy.cc 123 const std::vector<Candidate>& PortProxy::Candidates() const {
125 return impl_->Candidates();
transportdescription.h 99 typedef std::vector<Candidate> Candidates;
113 const Candidates& candidates)
121 candidates(candidates) {}
138 candidates(from.candidates) {}
154 candidates = from.candidates;
183 Candidates candidates member in struct:cricket::TransportDescription
    [all...]
sessionmessages.h 50 typedef std::vector<Candidate> Candidates;
transport.h 82 typedef std::vector<Candidate> Candidates;
84 // Used to parse and serialize (write) transport candidates. For
91 // ParseCandidates should return false if there are candidates to
93 // and there are no candidates to parse, then return true,
94 // indicating a successful parse of 0 candidates.
110 // candidates, since there is no enclosing transport description.
113 Candidate* candidates,
312 // Handles sending of ready candidates and receiving of remote candidates.
317 void OnRemoteCandidates(const std::vector<Candidate>& candidates);
    [all...]
port.h 206 // Fired when candidates are discovered by the port. When all candidates
211 virtual const std::vector<Candidate>& Candidates() const {
215 // SignalPortComplete is sent when port completes the task of candidates
218 // This signal sent when port fails to allocate candidates and this port
220 // and port fails to allocate one of the candidates, port shouldn't send
221 // this signal as other candidates might be usefull in establishing the
  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 288 BitVector &Candidates,
291 int Survivor = Candidates.find_first();
292 assert(Survivor > 0 && "No candidates for scavenging");
307 // Remove any candidates touched by instruction.
311 Candidates.clearBitsNotInMask(MO.getRegMask());
322 Candidates.reset(*AI);
333 if (Candidates.test(Survivor))
336 // All candidates gone?
337 if (Candidates.none())
340 Survivor = Candidates.find_first()
    [all...]
MachineLICM.cpp 152 /// CandidateInfo - Keep track of information about hoisting candidates.
176 SmallVectorImpl<CandidateInfo> &Candidates);
411 SmallVectorImpl<CandidateInfo> &Candidates) {
489 Candidates.push_back(CandidateInfo(MI, Def, FI));
504 SmallVector<CandidateInfo, 32> Candidates;
508 // collect potential LICM candidates.
532 ProcessMI(MI, PhysRegDefs, PhysRegClobbers, StoredFIs, Candidates);
552 // Now evaluate whether the potential candidates qualify.
560 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
561 if (Candidates[i].FI != INT_MIN &
    [all...]
  /external/clang/include/clang/Sema/
TemplateDeduction.h 226 /// For now, assume that the candidates are non-matching specializations.
246 /// TemplateSpecCandidateSet - A set of generalized overload candidates,
251 SmallVector<TemplateSpecCandidate, 16> Candidates;
266 /// \brief Clear out all of the candidates.
271 iterator begin() { return Candidates.begin(); }
272 iterator end() { return Candidates.end(); }
274 size_t size() const { return Candidates.size(); }
275 bool empty() const { return Candidates.empty(); }
280 Candidates.push_back(TemplateSpecCandidate());
281 return Candidates.back()
    [all...]
Overload.h 42 OR_Ambiguous, ///< Ambiguous candidates found.
47 /// Requests that all candidates be shown. Viable candidates will
51 /// Requests that only viable candidates be shown.
696 /// OverloadCandidateSet - A set of overload candidates, used in C++
703 /// Lookup for candidates for a call using operator syntax. Candidates
711 SmallVector<OverloadCandidate, 16> Candidates;
743 /// \brief Clear out all of the candidates.
747 iterator begin() { return Candidates.begin();
    [all...]
  /external/llvm/lib/Target/Mips/
Mips16InstrInfo.cpp 338 BitVector Candidates =
346 Candidates.reset(MO.getReg());
350 // it will not be in the list of candidates.
369 Available &= Candidates;
381 Reg = Candidates.find_first();
382 Candidates.reset(Reg);
396 SpReg = Candidates.find_first();
397 // Candidates.reset(SpReg); // not really needed
  /external/chromium_org/third_party/libjingle/source/talk/session/media/
mediasession_unittest.cc 54 typedef std::vector<cricket::Candidate> Candidates;
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp_unittest.cc 77 typedef std::vector<Candidate> Candidates;
208 // SDP reference string without the candidates.
    [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]

Completed in 340 milliseconds