HomeSort by relevance Sort by last modified time
    Searched refs:candidate (Results 76 - 100 of 807) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
cast-conversion.cpp 11 struct B { // expected-note 3 {{candidate constructor (the implicit copy constructor) not viable}} \
12 expected-note 3 {{candidate constructor (the implicit move constructor) not viable}}
13 B(A); // expected-note 3 {{candidate constructor not viable}}
40 template <int> float* &f0(); // expected-note{{candidate}}
41 template <unsigned> float* &f0(); // expected-note{{candidate}}
69 operator int(); // expected-note {{candidate function}}
70 operator unsigned int(); // expected-note {{candidate function}}
  /external/libvpx/libvpx/vp9/common/
vp9_mvref_common.h 137 static INLINE int_mv get_sub_block_mv(const MODE_INFO *candidate, int which_mv,
139 return block_idx >= 0 && candidate->mbmi.sb_type < BLOCK_8X8
140 ? candidate->bmi[idx_n_column_to_subblock[block_idx][search_col == 0]]
142 : candidate->mbmi.mv[which_mv];
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnectionObserver.mm 101 const IceCandidateInterface* candidate) {
103 [[RTCICECandidate alloc] initWithCandidate:candidate];
  /prebuilts/gdb/darwin-x86/lib/python2.7/
__future__.py 14 PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
  /prebuilts/gdb/linux-x86/lib/python2.7/
__future__.py 14 PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
__future__.py 14 PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
__future__.py 14 PY_RELEASE_LEVEL, # "alpha", "beta", "candidate" or "final"; string
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
SimpleServer.java 145 InetAddress candidate = null; local
157 candidate = address; // Probably an ipv6
160 if (candidate != null) {
161 return candidate; // return ipv6 address if no suitable ipv6
168 InetAddress candidate = null; local
179 candidate = address; // Probably an ipv6
182 if (candidate != null) {
183 return candidate; // return ipv6 address if no suitable ipv6
  /external/v8/src/heap/
objects-visiting.cc 198 // Check whether to keep the candidate in the list.
199 T* candidate = reinterpret_cast<T*>(list); local
218 candidate = reinterpret_cast<T*>(retained);
219 tail = candidate;
225 WeakListVisitor<T>::VisitPhantomObject(heap, candidate);
229 list = WeakListVisitor<T>::WeakNext(candidate);
242 T* candidate = reinterpret_cast<T*>(list); local
243 list = WeakListVisitor<T>::WeakNext(candidate);
244 WeakListVisitor<T>::SetWeakNext(candidate, undefined);
  /frameworks/base/tools/aapt2/util/
ImmutableMap.h 61 auto cmp = [](const std::pair<TKey, TValue>& candidate, const TKey2& target) -> bool {
62 return candidate.first < target;
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ClusterManager.java 196 // assign each candidate to a semantic cluster and check if new semantic
198 for (LocationCluster candidate : mLocationClusters) {
199 if (candidate.hasSemanticId() ||
200 candidate.hasSemanticClusterId() ||
201 !candidate.passThreshold(SEMANTIC_CLUSTER_THRESHOLD)) {
209 float distance = cluster.distanceToCluster(candidate);
219 // if candidate doesn't belong to any semantic cluster, create a new
222 candidate.generateSemanticId(mSemanticClusterCount++);
223 mSemanticClusters.add(candidate);
225 candidate.setSemanticClusterId(bestClusterId)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ReadOnlyBinaryDictionary.java 83 public boolean shouldAutoCommit(final SuggestedWordInfo candidate) {
86 return mBinaryDictionary.shouldAutoCommit(candidate);
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 122 const IceCandidateInterface* candidate) {
124 EXPECT_TRUE(candidate->ToString(&sdp));
127 SignalOnIceCandidateReady(candidate->sdp_mid(), candidate->sdp_mline_index(),
202 const std::string& candidate) {
204 webrtc::CreateIceCandidate(sdp_mid, sdp_mline_index, candidate, NULL));
  /frameworks/av/services/audiopolicy/common/managerdefinitions/src/
AudioProfile.cpp 80 uint32_t candidate = mSamplingRates[orderOfDesiredRate]; local
81 if (candidate / AUDIO_RESAMPLER_DOWN_RATIO_MAX <= samplingRate) {
82 updatedSamplingRate = candidate;
88 uint32_t candidate = mSamplingRates[orderOfDesiredRate - 1]; local
89 if (candidate * AUDIO_RESAMPLER_UP_RATIO_MAX >= samplingRate) {
90 updatedSamplingRate = candidate;
  /system/connectivity/shill/cellular/
mobile_operator_info_impl.cc 512 const MobileNetworkOperator* candidate = nullptr; local
537 candidate = candidates_by_operator_code_[0];
541 if (candidate_by_name == candidate) {
559 // Try to find an intersection of the two candidate lists. These lists
564 candidate = candidate_by_mccmnc;
568 if (candidate != nullptr) {
572 if (candidate == nullptr) {
582 candidate = PickOneFromDuplicates(candidates_by_operator_code_);
596 candidate = candidates_by_name_[0];
601 candidate = PickOneFromDuplicates(candidates_by_name_)
    [all...]
  /external/webrtc/webrtc/p2p/base/
p2ptransportchannel.cc 112 // Compare the candidate information.
342 // Note: Candidate gathering will restart when MaybeStartGathering is next
357 // Update the pwd of remote candidate if needed.
358 for (RemoteCandidate& candidate : remote_candidates_) {
359 if (candidate.username() == ice_ufrag && candidate.password().empty()) {
360 candidate.set_password(ice_pwd);
472 // A new candidate is available, let listeners know
475 const std::vector<Candidate>& candidates) {
500 // is currently available for. See if we already have a candidate with th
517 const Candidate* candidate = NULL; local
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
WebSocketRTCClient.java 226 // Send Ice candidate to the other participant.
228 public void sendLocalIceCandidate(final IceCandidate candidate) {
233 jsonPut(json, "type", "candidate");
234 jsonPut(json, "label", candidate.sdpMLineIndex);
235 jsonPut(json, "id", candidate.sdpMid);
236 jsonPut(json, "candidate", candidate.sdp);
240 reportError("Sending ICE candidate in non connected state.");
245 events.onRemoteIceCandidate(candidate);
272 if (type.equals("candidate")) {
273 IceCandidate candidate = new IceCandidate( local
    [all...]
  /external/toybox/toys/pending/
diff.c 67 struct candidate { struct
69 struct candidate *prev, *next;
99 static int search (struct candidate **K, int r, int k, int j)
105 if (((struct candidate*)(K[mid]))->b < j &&
106 ((struct candidate*)(K[mid + 1]))->b > j)
109 if (((struct candidate*)(K[mid]))->b < j) low = mid + 1;
110 else if (((struct candidate*)(K[mid]))->b > j) upper = mid - 1;
118 static struct candidate * new_candidate (int i, int j, struct candidate* prev)
120 struct candidate *c = xzalloc(sizeof(struct candidate))
    [all...]
  /external/v8/src/arm/
assembler-arm-inl.h 395 Address candidate = pc - 2 * Assembler::kInstrSize; local
396 Instr candidate_instr(Memory::int32_at(candidate));
399 return candidate;
402 candidate -= Assembler::kInstrSize;
405 candidate -= 1 * Assembler::kInstrSize;
406 DCHECK(IsMovW(Memory::int32_at(candidate)) &&
407 IsMovT(Memory::int32_at(candidate + Assembler::kInstrSize)));
409 candidate -= 3 * Assembler::kInstrSize;
411 IsMovImmed(Memory::int32_at(candidate)) &&
412 IsOrrImmed(Memory::int32_at(candidate + Assembler::kInstrSize)) &
    [all...]
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 27 const char kCandidateSdpName[] = "candidate";
173 void Conductor::OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {
174 LOG(INFO) << __FUNCTION__ << " " << candidate->sdp_mline_index();
177 if (!peer_connection_->AddIceCandidate(candidate)) {
178 LOG(WARNING) << "Failed to apply the received candidate";
186 jmessage[kCandidateSdpMidName] = candidate->sdp_mid();
187 jmessage[kCandidateSdpMlineIndexName] = candidate->sdp_mline_index();
189 if (!candidate->ToString(&sdp)) {
190 LOG(LS_ERROR) << "Failed to serialize candidate";
311 rtc::scoped_ptr<webrtc::IceCandidateInterface> candidate(
    [all...]
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 75 /** Triggered when a new ICE candidate has been found. */
76 public void onIceCandidate(IceCandidate candidate);
208 public boolean addIceCandidate(IceCandidate candidate) {
210 candidate.sdpMid, candidate.sdpMLineIndex, candidate.sdp);
  /external/webrtc/talk/app/webrtc/
jsepsessiondescription_unittest.cc 32 #include "webrtc/p2p/base/candidate.h"
101 cricket::Candidate candidate(cricket::ICE_CANDIDATE_COMPONENT_RTP, "udp",
103 candidate_ = candidate;
126 cricket::Candidate candidate_;
136 // Test that we can add a candidate to a session description.
147 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
164 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
181 EXPECT_TRUE(ice_candidate->candidate().IsEquivalent(candidate_));
186 // Test that we can not add a candidate if there is no corresponding medi
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
DefaultHomePreference.java 79 for (ResolveInfo candidate : homeActivities) {
80 final ActivityInfo info = candidate.activityInfo;
98 for (ResolveInfo candidate : homeActivities) {
99 final ActivityInfo info = candidate.activityInfo;
106 if (mustSupportManagedProfile && !launcherHasManagedProfilesFeature(candidate, pm)) {
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
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/guava/guava-tests/test/com/google/common/collect/
CollectionBenchmarkSampleData.java 88 Element candidate = newElement(); local
89 if (!elementsInSet.contains(candidate)) {
90 queryList.add(candidate);

Completed in 788 milliseconds

1 2 34 5 6 7 8 91011>>