HomeSort by relevance Sort by last modified time
    Searched refs:candidate (Results 251 - 275 of 996) sorted by null

<<11121314151617181920>>

  /external/apache-http/src/org/apache/commons/logging/impl/
LogFactoryImpl.java 856 * Appends message if the given name is similar to the candidate.
859 * @param name the (trimmed) name to be test against the candidate, not null
860 * @param candidate the candidate name (not null)
863 final String candidate) {
864 if (name.equals(candidate)) {
872 // then suggest the candidate adapter class name.
873 if (name.regionMatches(true, 0, candidate, 0, PKG_LEN + 5)) {
875 messageBuffer.append(candidate);
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
CallActivity.java 550 public void onRemoteIceCandidate(final IceCandidate candidate) {
556 "Received ICE candidate for non-initilized peer connection.");
559 peerConnectionClient.addRemoteIceCandidate(candidate);
603 public void onIceCandidate(final IceCandidate candidate) {
608 appRtcClient.sendLocalIceCandidate(candidate);
  /external/webrtc/webrtc/p2p/base/
tcpport.h 50 Connection* CreateConnection(const Candidate& address,
121 TCPConnection(TCPPort* port, const Candidate& candidate,
transport.h 31 #include "webrtc/p2p/base/candidate.h"
46 typedef std::vector<Candidate> Candidates;
114 Candidate local_candidate; // The local candidate for this connection.
115 Candidate remote_candidate; // The remote candidate for this connection.
238 bool AddRemoteCandidates(const std::vector<Candidate>& candidates,
241 // If candidate is not acceptable, returns false and sets error.
243 virtual bool VerifyCandidate(const Candidate& candidate,
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 168 ;// out the candidate MV if neccesary
182 ;// Store the candidate MV's into the pDstMVPredME,
192 ; Find the median of the 3 candidate MV's
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_FindMVpred_s.s 168 ;// out the candidate MV if neccesary
182 ;// Store the candidate MV's into the pDstMVPredME,
192 ; Find the median of the 3 candidate MV's
  /frameworks/base/services/core/java/com/android/server/wm/
WindowContainer.java 530 * @param candidate The current orientation candidate that will be returned if we don't find a
534 int getOrientation(int candidate) {
542 // specified and fall back on this container's unset or unspecified value as a candidate
543 // if none of the children have a better candidate for the orientation.
554 final int orientation = wc.getOrientation(candidate == SCREEN_ORIENTATION_BEHIND
560 candidate = orientation;
575 return candidate;
  /external/webrtc/talk/app/webrtc/
peerconnection.h 130 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
184 void OnIceCandidate(const IceCandidateInterface* candidate) override;
webrtcsession_unittest.cc 200 // Found a new candidate.
201 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {
202 switch (candidate->sdp_mline_index()) {
204 mline_0_candidates_.push_back(candidate->candidate());
207 mline_1_candidates_.push_back(candidate->candidate());
213 // The ICE gathering state should always be Gathering when a candidate is
214 // received (or possibly Completed in the case of the final candidate).
231 std::vector<cricket::Candidate> mline_0_candidates_
2140 cricket::Candidate candidate; local
3611 cricket::Candidate candidate; local
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
BackupAppsStepFragment.java 156 for (final VolumeInfo candidate : candidates) {
157 if (!TextUtils.equals(candidate.getId(), mVolumeId)) {
StorageFragment.java 143 for (final VolumeInfo candidate : candidates) {
144 if (TextUtils.equals(candidate.getId(), mVolumeInfo.getId())) {
  /prebuilts/go/darwin-x86/src/os/exec/
lp_windows.go 57 // a suitable candidate.
  /prebuilts/go/linux-x86/src/os/exec/
lp_windows.go 57 // a suitable candidate.
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker-mockito/1.0/
dexmaker-mockito-1.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/dexmaker/dexmaker-mockito/1.2/
dexmaker-mockito-1.2.jar 
  /packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 570 for (Bitmap candidate : mUnusedBitmaps) {
571 if (candidate != null && candidate.isMutable() &&
572 candidate.getWidth() == mPreviewWidth &&
573 candidate.getHeight() == mPreviewHeight) {
574 unusedBitmap = candidate;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 635 * structured names for all candidate contacts and recomputes match scores using approximate
826 final NameMatchCandidate candidate = candidates.mList.get(i); local
879 NameMatchCandidate candidate = candidates.mList.get(i); local
    [all...]
  /bionic/linker/
linker.cpp     [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiMetrics.java 106 /** Boot-relative timestamp when the last candidate scanresult was received, used to calculate
107 RSSI deltas. -1 designates no candidate scanResult being tracked */
166 // If there's a ScanResult candidate associated with this config already, get it and
168 ScanResult candidate = config.getNetworkSelectionStatus().getCandidate(); local
169 if (candidate != null) {
170 updateMetricsFromScanResult(candidate);
414 ScanResult candidate = config.getNetworkSelectionStatus().getCandidate(); local
415 if (candidate != null) {
416 // Cache the RSSI of the candidate, as the connection event level is updated
419 mScanResultRssi = candidate.level
1578 ScanResult candidate = config.getNetworkSelectionStatus().getCandidate(); local
    [all...]
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
LayoutBinderWriter.kt 98 var candidate = candidateBase
100 candidate = candidate.decapitalize()
103 while (usedFieldNames[scope]!!.contains(candidate)) {
105 candidate = candidateBase + i
107 usedFieldNames[scope]!!.add(candidate)
108 return candidate
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
handshake_server.go 773 var candidate *cipherSuite
777 candidate = s
781 if candidate == nil {
786 if candidate.flags&suiteECDHE != 0 {
790 if candidate.flags&suiteECDSA != 0 {
800 if version < VersionTLS12 && candidate.flags&suiteTLS12 != 0 {
803 hs.suite = candidate
  /prebuilts/go/linux-x86/src/crypto/tls/
handshake_server.go 773 var candidate *cipherSuite
777 candidate = s
781 if candidate == nil {
786 if candidate.flags&suiteECDHE != 0 {
790 if candidate.flags&suiteECDSA != 0 {
800 if version < VersionTLS12 && candidate.flags&suiteTLS12 != 0 {
803 hs.suite = candidate
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 539 NJ_CHAR candidate[ NJ_MAX_LEN + NJ_TERM_LEN ]; local
541 if( njx_get_candidate( &( work->wnnClass ), &( work->result ), candidate, sizeof( NJ_CHAR ) * ( NJ_MAX_RESULT_LEN + NJ_TERM_LEN ) ) >= 0 &&
542 convertNjCharToString( env, &str, candidate, NJ_MAX_RESULT_LEN ) >= 0 ) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
spark.py 266 for rule, i, candidate, oldrule in worklist:
273 candidate = 0
281 candidate, oldrule))
282 candidate = 0
285 if candidate:
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
android_platform_backend.py 77 candidate = os.path.join(build_path, binary_name)
78 if os.path.isfile(candidate) and os.access(candidate, required_mode):
79 candidate_mtime = os.stat(candidate).st_mtime
81 command = candidate

Completed in 2021 milliseconds

<<11121314151617181920>>