/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
socketmonitor.h | 52 Candidate local_candidate; 53 Candidate remote_candidate;
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCPeerConnection.idl | 53 [RaisesException] void addIceCandidate(RTCIceCandidate candidate); 55 [RaisesException] void addIceCandidate(RTCIceCandidate candidate, VoidCallback successCallback, RTCErrorCallback failureCallback);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/ |
RTCPeerConnectionObserver.h | 71 // New Ice candidate have been found. 72 virtual void OnIceCandidate(const IceCandidateInterface* candidate) OVERRIDE;
|
RTCPeerConnectionObserver.mm | 97 const IceCandidateInterface* candidate) { 99 [[RTCICECandidate alloc] initWithCandidate:candidate];
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/ |
RTCPeerConnectionDelegate.h | 66 // New Ice candidate have been found. 68 gotICECandidate:(RTCICECandidate *)candidate;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
tcpport.cc | 76 Connection* TCPPort::CreateConnection(const Candidate& address, 237 TCPConnection::TCPConnection(TCPPort* port, const Candidate& candidate, 239 : Connection(port, 0, candidate), socket_(socket), error_(0) { 243 int opts = (candidate.protocol() == SSLTCP_PROTOCOL_NAME) ? 247 candidate.address(), port->proxy(), port->user_agent(), opts); 252 << candidate.address().ToSensitiveString(); 257 << candidate.address().ToSensitiveString();
|
/external/chromium_org/ui/base/ime/ |
input_method_base.h | 83 // Interface for for signalling candidate window events. 98 // Deferred callbacks for signalling TextInputClient about candidate window
|
/external/clang/test/CXX/special/class.inhctor/ |
p1.cpp | 14 struct B : A { // expected-note 6{{candidate}} 15 using A::A; // expected-warning 4{{inheriting constructor does not inherit ellipsis}} expected-note 16{{candidate}} expected-note 3{{deleted constructor was inherited here}}
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p1.cpp | 51 struct NonDefaultConstructible { // expected-note{{candidate constructor (the implicit copy constructor) not viable}} 52 NonDefaultConstructible(int); // expected-note{{candidate constructor}}
|
/external/clang/test/SemaCXX/ |
cxx0x-initializer-scalars.cpp | 83 void ambiguous(int, double); // expected-note {{candidate}} 84 void ambiguous(double, int); // expected-note {{candidate}}
|
cxx98-compat-flags.cpp | 24 Ambiguous(const Ambiguous &, int = 0); // expected-note {{candidate}} 25 Ambiguous(const Ambiguous &, double = 0); // expected-note {{candidate}}
|
namespace-alias.cpp | 23 namespace A { namespace B { } } // expected-note {{candidate found by name lookup is 'F::A::B'}} 24 namespace B { } // expected-note {{candidate found by name lookup is 'F::B'}}
|
trailing-return-0x.cpp | 75 auto f1(T t) -> decltype(f1(t)) {} // expected-note{{candidate template ignored}} 82 auto f2(T t) -> decltype(f2(&t)) {} // expected-note{{candidate template ignored}}
|
/external/clang/test/SemaTemplate/ |
local-member-templates.cpp | 32 int inner_mem(T t, U u, V v) { //expected-note{{candidate function}} 57 void itc_mem(T t, U u, V v, W w) { //expected-note{{candidate function}}
|
/external/objenesis/tck/test/org/objenesis/tck/ |
CandidateLoaderTest-sample.properties | 54 org.objenesis.tck.CandidateLoaderTest$A = A candidate 55 org.objenesis.tck.CandidateLoaderTest$B = B candidate
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
ReadOnlyBinaryDictionary.java | 88 public boolean shouldAutoCommit(final SuggestedWordInfo candidate) { 91 return mBinaryDictionary.shouldAutoCommit(candidate);
|
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/ |
OpenWnnEvent.java | 120 * Select a candidate 198 * Update the candidate view 218 * Touch the candidate view. 233 * Start focus candidate. 238 * End focus candidate. 366 * Generate {@link OpenWnnEvent} for selecting a candidate 369 * @param word The selected candidate 381 * @param word The selected candidate
|
OpenWnnDictionaryImpl.java | 46 /** The maximum length of candidate */ 62 protected static final String COLUMN_NAME_CANDIDATE = "candidate"; 475 queryArgs[ 1 ] = wnnWord.candidate; 606 OpenWnnDictionaryImplJni.setCandidate( this.mWnnWork, wnnWord.candidate ); 650 result.candidate = mDbCursor.getString( 1 ); 685 result.candidate = OpenWnnDictionaryImplJni.getCandidate( this.mWnnWork ); 728 words[ i ].candidate = cursor.getString( 1 ); [all...] |
/external/chromium_org/chrome/common/extensions/api/ |
input_ime.json | 8 "description": "Use the <code>chrome.input.ime</code> API to implement a custom IME for Chrome OS. This allows your extension to handle keystrokes, set the composition, and manage the candidate window.", 221 "description": "Sets the properties of the candidate window. This fails if the extension doesn't own the active IME", 237 "description": "True to show the Candidate window, false to hide it." 247 "description": "True if the candidate window should be rendered vertical, false to make it horizontal." 257 "description": "Text that is shown at the bottom of the candidate window." 266 "description": "Where to display the candidate window. If set to 'cursor', the window follows the cursor. If set to 'composition', the window is locked to the beginning of the composition.", 291 "description": "Sets the current candidate list. This fails if this extension doesn't own the active IME", 298 "description": "ID of the context that owns the candidate window.", 302 "description": "List of candidates to show in the candidate window", 307 "candidate": {"type": "string", "description": "The candidate"} [all...] |
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
port.h | 42 #include "talk/p2p/base/candidate.h" 136 const std::vector<Candidate>& candidates() const { return candidates_; } 148 virtual Connection* CreateConnection(const Candidate& remote_candidate, 252 std::vector<Candidate> candidates_; 283 virtual const Candidate& local_candidate() const; 286 const Candidate& remote_candidate() const { return remote_candidate_; } 363 Connection(Port* port, size_t index, const Candidate& candidate); 387 Candidate remote_candidate_; 413 ProxyConnection(Port* port, size_t index, const Candidate& candidate) [all...] |
rawtransportchannel.h | 36 #include "talk/p2p/base/candidate.h" 87 virtual void OnCandidate(const Candidate& candidate); 108 const std::vector<Candidate>& candidates);
|
/external/chromium_org/content/renderer/media/ |
rtc_peer_connection_handler.cc | 494 const blink::WebRTCICECandidate& candidate) { 497 bool result = addICECandidate(candidate); 507 const blink::WebRTCICECandidate& candidate) { 510 UTF16ToUTF8(candidate.sdpMid()), 511 candidate.sdpMLineIndex(), 512 UTF16ToUTF8(candidate.candidate()))); 514 LOG(ERROR) << "Could not create native ICE candidate."; 520 LOG_IF(ERROR, !return_value) << "Error processing ICE candidate."; 524 this, candidate, PeerConnectionTracker::SOURCE_REMOTE) [all...] |
/external/clang/lib/Sema/ |
SemaOverload.cpp | 565 /// to the form used in overload-candidate information. [all...] |
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
register_app_task.h | 45 FileTracker* candidate);
|
/external/chromium_org/chrome/installer/util/ |
language_selector_unittest.cc | 40 // Test some hypothetical candidate sets. 74 // A fixture for testing sets of single-candidate selections. 111 // candidate that should be aliased to the expectation. 117 // Test that the candidate language maps to the aliased translation.
|