HomeSort by relevance Sort by last modified time
    Searched refs:candidate (Results 201 - 225 of 402) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/third_party/libjingle/source/talk/base/
proxydetect.cc 450 Pathname candidate; local
459 candidate.clear();
469 candidate = path;
471 candidate.clear();
473 candidate.AppendFolder(line.substr(5));
476 if ((line.at(8) != '0') && !candidate.empty()) {
482 if (candidate.empty()) {
485 profile_path->SetPathname(candidate.pathname());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.idl 52 [RaisesException] void addIceCandidate(RTCIceCandidate candidate);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnectioninterface.h 43 // 5. Once an ice candidate have been found PeerConnection will call the
49 // 7. Once a remote candidate is received from the remote peer, provide it to
65 // 7. Once a candidate have been found PeerConnection will call the observer
224 // Provides a remote candidate to the ICE Agent.
225 // A copy of the |candidate| will be created and added to the remote
227 // |candidate|.
229 // take the ownership of the |candidate|.
230 virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0;
290 // New Ice candidate have been found.
291 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0
    [all...]
webrtcsession.h 86 // New Ice candidate have been found.
87 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0;
235 // and notify observers. Called when a new local candidate have been found.
238 // Returns the media index for a local ice candidate given the content name.
246 // Uses |candidate| in this session.
247 bool UseCandidate(const IceCandidateInterface* candidate);
webrtcsession_unittest.cc 152 // Found a new candidate.
153 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {
154 if (candidate->sdp_mline_index() == kMediaContentIndex0) {
155 mline_0_candidates_.push_back(candidate->candidate());
156 } else if (candidate->sdp_mline_index() == kMediaContentIndex1) {
157 mline_1_candidates_.push_back(candidate->candidate());
159 // The ICE gathering state should always be Gathering when a candidate is
160 // received (or possibly Completed in the case of the final candidate)
1274 cricket::Candidate candidate; local
2302 cricket::Candidate candidate; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
proxydetect.cc 452 Pathname candidate; local
461 candidate.clear();
471 candidate = path;
473 candidate.clear();
475 candidate.AppendFolder(line.substr(5));
478 if ((line.at(8) != '0') && !candidate.empty()) {
484 if (candidate.empty()) {
487 profile_path->SetPathname(candidate.pathname());
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
transportchannelproxy.cc 208 const Candidate& candidate) {
211 SignalRouteChange(this, candidate);
  /external/chromium_org/v8/src/mips/
code-stubs-mips.h 441 Register candidate = Register::FromAllocationIndex(i); local
442 if (candidate.is(r1)) continue;
443 if (candidate.is(r2)) continue;
444 if (candidate.is(r3)) continue;
445 return candidate;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBase.java 1357 int candidate=m_namespaceDeclSetElements.elementAt(-- wouldBeAt); local
    [all...]
  /external/v8/src/
mark-compact.cc 514 class Candidate {
516 Candidate() : fragmentation_(0), page_(NULL) { }
517 Candidate(int f, Page* p) : fragmentation_(f), page_(p) { }
555 Candidate candidates[kMaxMaxEvacuationCandidates];
559 Candidate* least = NULL;
611 candidates[count++] = Candidate(fragmentation, p);
622 *least = Candidate(fragmentation, p);
791 JSFunction* candidate = jsfunction_candidates_head_; local
793 while (candidate != NULL) {
794 next_candidate = GetNextCandidate(candidate);
826 SharedFunctionInfo* candidate = shared_function_info_candidates_head_; local
    [all...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageCache.java 489 * @param candidate - Bitmap to check
491 * @return true if <code>candidate</code> can be used for inBitmap re-use with
495 Bitmap candidate, BitmapFactory.Options targetOptions) {
499 return candidate.getWidth() == width && candidate.getHeight() == height;
  /external/chromium/chrome/browser/chromeos/login/
login_utils.cc 502 const std::string& candidate = candidates[i]; local
505 candidate) == 0) {
506 language_codes.push_back(candidate);
  /external/chromium_org/chrome/browser/
internal_auth.cc 457 int candidate = kVerificationWindowTicks;
459 candidate = verification_window_seconds_ *
461 return std::max(1, std::min(candidate, kVerificationWindowTicks));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTextAreaElement.cpp 485 bool HTMLTextAreaElement::isValidValue(const String& candidate) const
487 return !valueMissing(candidate) && !tooLong(candidate, IgnoreDirtyFlag);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 701 AccessibilityNodeInfo candidate = infos.get(j); local
702 if (root.getParentNodeId() == candidate.getSourceNodeId()) {
703 root = candidate;
  /packages/apps/Mms/src/com/android/mms/ui/
SearchActivity.java 145 // pull the candidate string out of the full text rather than body
147 String candidate = mFullText.substring(start, end); local
148 if (tp.measureText(candidate) > textFieldWidth) {
150 // do not use this "candidate"
157 candidate,
  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 851 * Appends message if the given name is similar to the candidate.
854 * @param name the (trimmed) name to be test against the candidate, not null
855 * @param candidate the candidate name (not null)
858 final String candidate) {
859 if (name.equals(candidate)) {
867 // then suggest the candidate adapter class name.
868 if (name.regionMatches(true, 0, candidate, 0, PKG_LEN + 5)) {
870 messageBuffer.append(candidate);
    [all...]
  /external/chromium/chrome/browser/sync/syncable/
syncable.cc 1711 ParentIdChildIndex::iterator candidate = local
1742 ParentIdChildIndex::iterator candidate = local
1779 EntryKernel* candidate = *sibling; local
    [all...]
  /external/chromium_org/content/renderer/media/
mock_peer_connection_impl.h 94 const webrtc::IceCandidateInterface* candidate) OVERRIDE;
  /external/chromium_org/remoting/protocol/
jingle_session.cc 21 #include "third_party/libjingle/source/talk/p2p/base/candidate.h"
30 // Delay after candidate creation before sending transport-info
235 channel->AddRemoteCandidate(it->candidate);
282 const cricket::Candidate& candidate) {
284 transport->name(), candidate));
509 channel->second->AddRemoteCandidate(it->candidate);
jingle_session.h 68 const cricket::Candidate& candidate) OVERRIDE;
  /external/chromium_org/third_party/skia/src/core/
SkPictureFlat.h 546 const SkFlatData* candidate = fHash[hashIndex]; local
547 if (candidate != NULL && SkFlatData::Compare(scratch, *candidate) == 0) {
548 return candidate;
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 19 auto end(T &&t) -> decltype(t.end()) { return t.end(); } // expected-note {{candidate template ignored: substitution failure [with T = }}
23 expected-note 2{{candidate template ignored: substitution failure [with T = }}
25 auto end(T &&t) -> decltype(t.alt_end()) { return t.alt_end(); } // expected-note {{candidate template ignored: substitution failure [with T = }}
35 struct A { // expected-note 2 {{candidate constructor}}
  /external/skia/src/core/
SkPictureFlat.h 546 const SkFlatData* candidate = fHash[hashIndex]; local
547 if (candidate != NULL && SkFlatData::Compare(scratch, *candidate) == 0) {
548 return candidate;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 154 ;// out the candidate MV if neccesary
168 ;// Store the candidate MV's into the pDstMVPredME,
178 ; Find the median of the 3 candidate MV's

Completed in 563 milliseconds

1 2 3 4 5 6 7 891011>>