HomeSort by relevance Sort by last modified time
    Searched refs:candidate (Results 126 - 150 of 516) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
tcpport.cc 76 Connection* TCPPort::CreateConnection(const Candidate& address,
86 // It's active only candidate, we should not try to create connections
238 TCPConnection::TCPConnection(TCPPort* port, const Candidate& candidate,
240 : Connection(port, 0, candidate), socket_(socket), error_(0) {
244 int opts = (candidate.protocol() == SSLTCP_PROTOCOL_NAME) ?
248 candidate.address(), port->proxy(), port->user_agent(), opts);
253 << candidate.address().ToSensitiveString();
258 << candidate.address().ToSensitiveString();
313 << "different address from the local candidate."
    [all...]
transport.cc 30 #include "talk/p2p/base/candidate.h"
62 ChannelParams() : channel(NULL), candidate(NULL) {}
64 : component(component), channel(NULL), candidate(NULL) {}
65 explicit ChannelParams(Candidate* candidate)
66 : channel(NULL), candidate(candidate) {
70 delete candidate;
76 Candidate* candidate; member in struct:cricket::ChannelParams
    [all...]
transportchannelimpl.h 39 class Candidate;
94 const Candidate&> SignalCandidateReady;
95 virtual void OnCandidate(const Candidate& candidate) = 0;
transport.h 52 #include "talk/p2p/base/candidate.h"
82 typedef std::vector<Candidate> Candidates;
109 // Parse a single candidate. This must be used when parsing Gingle
113 Candidate* candidates,
115 virtual bool WriteGingleCandidate(const Candidate& candidate,
166 Candidate local_candidate; // The local candidate for this connection.
167 Candidate remote_candidate; // The remote candidate for this connection
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
peerconnectiontestwrapper.h 73 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
85 const std::string& candidate);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
conductor.cc 42 const char kCandidateSdpName[] = "candidate";
161 void Conductor::OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {
162 LOG(INFO) << __FUNCTION__ << " " << candidate->sdp_mline_index();
166 jmessage[kCandidateSdpMidName] = candidate->sdp_mid();
167 jmessage[kCandidateSdpMlineIndexName] = candidate->sdp_mline_index();
169 if (!candidate->ToString(&sdp)) {
170 LOG(LS_ERROR) << "Failed to serialize candidate";
275 rtc::scoped_ptr<webrtc::IceCandidateInterface> candidate(
277 if (!candidate.get()) {
278 LOG(WARNING) << "Can't parse received candidate message."
    [all...]
  /external/llvm/lib/Target/Sparc/
DelaySlotFiller.cpp 82 bool delayHasHazard(MachineBasicBlock::iterator candidate,
229 bool Filler::delayHasHazard(MachineBasicBlock::iterator candidate,
236 if (candidate->isImplicitDef() || candidate->isKill())
239 if (candidate->mayLoad()) {
245 if (candidate->mayStore()) {
253 for (unsigned i = 0, e = candidate->getNumOperands(); i!= e; ++i) {
254 const MachineOperand &MO = candidate->getOperand(i);
  /frameworks/base/core/java/android/app/
ApplicationErrorReport.java 171 String candidate = null; local
175 candidate = pm.getInstallerPackageName(packageName);
180 if (candidate != null) {
181 result = getErrorReportReceiver(pm, packageName, candidate);
190 candidate = SystemProperties.get(SYSTEM_APPS_ERROR_RECEIVER_PROPERTY);
191 result = getErrorReportReceiver(pm, packageName, candidate);
198 candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY);
199 return getErrorReportReceiver(pm, packageName, candidate);
207 * @param receiverPackage candidate package to receive the error
  /external/chromium_org/third_party/WebKit/Source/core/editing/
VisiblePosition.cpp 547 static Position canonicalizeCandidate(const Position& candidate)
549 if (candidate.isNull())
551 ASSERT(candidate.isCandidate());
552 Position upstream = candidate.upstream();
555 return candidate;
565 // FIXME (9535): Canonicalizing to the leftmost candidate means that if we're at a line wrap, we will
568 // the appropriate renderer for VisiblePosition's like these, or b) canonicalize to the rightmost candidate
578 Position candidate = position.upstream(); local
579 if (candidate.isCandidate())
580 return candidate;
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_tab_helper.cc 251 const content::FaviconURL& candidate = candidates[i]; local
253 favicon::FaviconURL(candidate.icon_url,
254 ToChromeIconType(candidate.icon_type),
255 candidate.icon_sizes));
  /external/chromium_org/chrome/installer/util/
language_selector.cc 253 // candidate, in which case |matched_name| is assigned the value of the
254 // candidate and |matched_offset| is assigned the language offset of the
261 std::wstring candidate; local
264 candidate.assign(*scan);
265 base::StringToLowerASCII(&candidate);
266 if (select_predicate(candidate, matched_offset)) {
277 // are set to the name of the selected candidate and the offset of the matched
  /external/chromium_org/content/child/npapi/
webplugin_ime_win.cc 294 CANDIDATEFORM* candidate) {
297 return ::ImmSetCandidateWindow(context, candidate);
299 gfx::Rect caret_rect(candidate->rcArea);
300 if ((candidate->dwStyle & CFS_EXCLUDE) &&
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceCache.cpp 216 CSSSegmentedFontFace* candidate = i->value.get(); local
217 FontTraits candidateTraits = candidate->traits();
222 if (!faceResult.storedValue->value || compareFontFaces(candidate, faceResult.storedValue->value.get(), traits))
223 faceResult.storedValue->value = candidate;
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.idl 54 [RaisesException] void addIceCandidate(RTCIceCandidate candidate);
56 [RaisesException] void addIceCandidate(RTCIceCandidate candidate, VoidCallback successCallback, RTCErrorCallback failureCallback);
  /external/chromium_org/tools/clang/plugins/
ChromeClassTester.h 66 const std::string& candidate);
  /external/clang/test/SemaCXX/
for-range-dereference.cpp 19 int* begin(DeletedADLBegin) = delete; //expected-note {{candidate function has been explicitly deleted}} \
20 expected-note 5 {{candidate function not viable: no known conversion}}
30 Data * begin(ADLNoEnd); // expected-note 6 {{candidate function not viable: no known conversion}}
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheStrategy.java 169 CacheStrategy candidate = getCandidate(); local
171 if (candidate.source != ResponseSource.CACHE && request.cacheControl().onlyIfCached()) {
174 .request(candidate.networkRequest)
182 return candidate;
  /libcore/luni/src/main/java/java/lang/
Runtime.java 380 String candidate = directory + filename; local
381 candidates.add(candidate);
383 if (IoUtils.canOpenReadOnly(candidate)) {
384 String error = doLoad(candidate, loader);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_ext.h 87 NJ_CHAR *candidate, NJ_UINT16 size);
94 extern NJ_INT16 njd_b_get_candidate(NJ_WORD *word, NJ_CHAR *candidate,
103 extern NJ_INT16 njd_f_get_candidate(NJ_WORD *word, NJ_CHAR *candidate,
117 NJ_CHAR *candidate, NJ_UINT16 size);
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 402 NJ_INT16 njd_f_get_candidate(NJ_WORD *word, NJ_CHAR *candidate, NJ_UINT16 size)
434 NJ_CHAR_COPY(candidate + j, area);
437 candidate[len] = NJ_CHAR_NUL;
450 nje_convert_hira_to_kata(work, candidate, len);
453 candidate[j] = work[j];
460 NJ_CHAR_COPY(candidate + j, area);
465 candidate[len] = NJ_CHAR_NUL;
  /external/owasp/sanitizer/empiricism/
html-containment.js 303 var candidate = stack.shift();
304 if (isEnd(candidate.node)) {
305 var path = [candidate.node];
306 while (candidate.next) {
307 candidate = candidate.next;
308 path.push(candidate.node);
312 var adjacentNodes = adjacent(candidate.node);
316 for (var dupe = candidate; dupe; dupe = dupe.next) {
319 stack.push({ node: adjacentNode, next: candidate });
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsession.cc 894 bool WebRtcSession::ProcessIceMessage(const IceCandidateInterface* candidate) {
1387 const IceCandidateInterface* candidate = candidates->at(n); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 463 @Override public void onIceCandidate(final IceCandidate candidate){
467 jsonPut(json, "type", "candidate");
468 jsonPut(json, "label", candidate.sdpMLineIndex);
469 jsonPut(json, "id", candidate.sdpMid);
470 jsonPut(json, "candidate", candidate.sdp);
609 for (IceCandidate candidate : queuedRemoteCandidates) {
610 pc.addIceCandidate(candidate);
631 if (type.equals("candidate")) {
632 IceCandidate candidate = new IceCandidate local
    [all...]
  /external/lldb/source/Expression/
IRMemoryMap.cpp 71 lldb::addr_t candidate = LLDB_INVALID_ADDRESS; local
78 candidate = random_data;
79 candidate &= ~0xfffull;
86 candidate = random_high;
87 candidate <<= 32ull;
88 candidate |= random_low;
89 candidate &= ~0xfffull;
94 if (IntersectsAllocation(candidate, size))
97 ret = candidate;
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/
sunspider-compare-results.js 273 var candidate = categoryMeans[category].toFixed(1).toString().length;
274 if (candidate > width)
275 width = candidate;
277 var candidate = testMeansByCategory[category][test].toFixed(1).toString().length;
278 if (candidate > width)
279 width = candidate;

Completed in 899 milliseconds

1 2 3 4 56 7 8 91011>>