Searched refs:candidate (Results 76 - 100 of 320) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DFocusController.cpp736 static void updateFocusCandidateIfNeeded(FocusType type, const FocusCandidate& current, FocusCandidate& candidate, FocusCandidate& closest) argument
738 ASSERT(candidate.visibleNode->isElementNode());
739 ASSERT(candidate.visibleNode->renderer());
742 if (frameOwnerElement(candidate) && (!frameOwnerElement(candidate)->contentFrame() || candidate.rect.isEmpty()))
746 if (candidate.isOffscreen && !canBeScrolledIntoView(type, candidate))
749 distanceDataForNode(type, current, candidate);
750 if (candidate
807 FocusCandidate candidate = FocusCandidate(element, type); local
[all...]
/external/clang/include/clang/Sema/
H A DTypoCorrection.h261 /// candidate is viable, without ranking potentially viable candidates.
264 /// The default predicate always returns true if the candidate is not a type
268 virtual bool ValidateCandidate(const TypoCorrection &candidate);
271 /// to a candidate (where a lower value represents a better candidate), or
272 /// returning InvalidDistance if the candidate is not at all viable. For
273 /// validation callbacks that only need to determine if a candidate is viable,
276 virtual unsigned RankCandidate(const TypoCorrection &candidate) { argument
277 return ValidateCandidate(candidate) ? 0 : InvalidDistance;
298 bool ValidateCandidate(const TypoCorrection &candidate) overrid
[all...]
/external/chromium_org/extensions/renderer/
H A Dscript_context_set.cc30 ScriptContext* candidate = *iter; local
31 if (candidate != context)
32 DCHECK(candidate->v8_context() != context->v8_context());
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Djsep.h54 // Class representation of an ICE candidate.
61 // identification" as defined in [RFC 3388] for m-line this candidate is
65 // candidate is assocated with.
67 virtual const cricket::Candidate& candidate() const = 0;
68 // Creates a SDP-ized form of this candidate.
92 // Returns true if an equivalent |candidate| exist in the collection.
93 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0;
115 // Adds the specified candidate to the description.
118 // corresponds to the |candidate| label.
119 virtual bool AddCandidate(const IceCandidateInterface* candidate)
[all...]
/external/chromium_org/v8/src/
H A Dcodegen.h157 bool IsYoung(byte* candidate) const {
158 return memcmp(candidate,
167 bool IsOld(byte* candidate) const;
/external/objenesis/tck/src/org/objenesis/tck/
H A DTCK.java30 * This TCK accepts a set of candidate classes (class it attempts to instantiate) and a set of
31 * Objenesis implementations. It then tries instantiating every candidate with every Objenesis
37 * // register candidate classes.
61 * Register a candidate class to attempt to instantiate.
110 private void runTest(Reporter reporter, Class candidate, Objenesis objenesis, argument
113 Object instance = objenesis.newInstance(candidate);
114 boolean success = instance != null && instance.getClass() == candidate;
/external/wpa_supplicant_8/hostapd/src/rsn_supp/
H A Dpreauth.c34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
282 * Go through the PMKSA candidates and start pre-authentication if a candidate
288 struct rsn_pmksa_candidate *candidate, *n; local
293 /* TODO: drop priority for old candidate entries */
295 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
307 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
310 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
311 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
314 "candidate " MACSTR
316 MAC2STR(candidate
[all...]
/external/wpa_supplicant_8/src/rsn_supp/
H A Dpreauth.c34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
282 * Go through the PMKSA candidates and start pre-authentication if a candidate
288 struct rsn_pmksa_candidate *candidate, *n; local
293 /* TODO: drop priority for old candidate entries */
295 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
307 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
310 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
311 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
314 "candidate " MACSTR
316 MAC2STR(candidate
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/rsn_supp/
H A Dpreauth.c34 * pmksa_candidate_free - Free all entries in PMKSA candidate list
282 * Go through the PMKSA candidates and start pre-authentication if a candidate
288 struct rsn_pmksa_candidate *candidate, *n; local
293 /* TODO: drop priority for old candidate entries */
295 wpa_msg(sm->ctx->msg_ctx, MSG_DEBUG, "RSN: processing PMKSA candidate "
307 dl_list_for_each_safe(candidate, n, &sm->pmksa_candidates,
310 p = pmksa_cache_get(sm->pmksa, candidate->bssid, NULL, NULL);
311 if (os_memcmp(sm->bssid, candidate->bssid, ETH_ALEN) != 0 &&
314 "candidate " MACSTR
316 MAC2STR(candidate
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLImageElement.cpp221 void HTMLImageElement::setBestFitURLAndDPRFromImageCandidate(const ImageCandidate& candidate) argument
223 m_bestFitImageURL = candidate.url();
224 float candidateDensity = candidate.density();
227 if (candidate.resourceWidth() > 0) {
230 } else if (!candidate.srcOrigin()) {
307 ImageCandidate candidate = bestFitSourceForSrcsetAttribute(document().devicePixelRatio(), effectiveSize, source->fastGetAttribute(srcsetAttr)); local
308 if (candidate.isEmpty())
310 return candidate;
363 ImageCandidate candidate = findBestFitImageFromPictureParent(); local
364 if (!candidate
625 ImageCandidate candidate = findBestFitImageFromPictureParent(); local
642 ImageCandidate candidate = bestFitSourceForImageAttributes(document().devicePixelRatio(), effectiveSize, fastGetAttribute(srcAttr), fastGetAttribute(srcsetAttr)); local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
H A DCompositingLayerAssigner.h85 bool squashingWouldExceedSparsityTolerance(const RenderLayer* candidate, const SquashingState&);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCPeerConnectionObserver.h70 // New Ice candidate have been found.
71 virtual void OnIceCandidate(const IceCandidateInterface* candidate) OVERRIDE;
H A DRTCPeerConnectionObserver.mm105 const IceCandidateInterface* candidate) {
107 [[RTCICECandidate alloc] initWithCandidate:candidate];
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_mvref_common.h137 static INLINE int_mv get_sub_block_mv(const MODE_INFO *candidate, int which_mv, argument
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/clang/test/SemaCXX/
H A Dcast-conversion.cpp11 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/guava/guava/src/com/google/common/hash/
H A DHashing.java191 int candidate = 0;
200 next = (int) ((candidate + 1) * inv);
203 candidate = next;
205 return candidate;
/external/chromium_org/remoting/protocol/
H A Djingle_messages.h12 #include "third_party/libjingle/source/talk/p2p/base/candidate.h"
47 const cricket::Candidate& candidate);
50 cricket::Candidate candidate; member in struct:remoting::protocol::JingleMessage::NamedCandidate
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCPeerConnectionDelegate.h67 // New Ice candidate have been found.
69 gotICECandidate:(RTCICECandidate *)candidate;
/external/chromium_org/v8/src/heap/
H A Dobjects-visiting.cc198 // Check whether to keep the candidate in the list.
199 T* candidate = reinterpret_cast<T*>(list); local
217 candidate = reinterpret_cast<T*>(retained);
218 tail = candidate;
224 WeakListVisitor<T>::VisitPhantomObject(heap, candidate);
228 list = WeakListVisitor<T>::WeakNext(candidate);
243 T* candidate = reinterpret_cast<T*>(list); local
244 list = WeakListVisitor<T>::WeakNext(candidate);
245 WeakListVisitor<T>::SetWeakNext(candidate, undefined);
H A Dmark-compact.h432 static JSFunction** GetNextCandidateSlot(JSFunction* candidate) { argument
434 HeapObject::RawField(candidate, JSFunction::kNextFunctionLinkOffset));
437 static JSFunction* GetNextCandidate(JSFunction* candidate) { argument
438 Object* next_candidate = candidate->next_function_link();
442 static void SetNextCandidate(JSFunction* candidate, argument
444 candidate->set_next_function_link(next_candidate);
447 static void ClearNextCandidate(JSFunction* candidate, Object* undefined) { argument
449 candidate->set_next_function_link(undefined, SKIP_WRITE_BARRIER);
452 static SharedFunctionInfo* GetNextCandidate(SharedFunctionInfo* candidate) { argument
453 Object* next_candidate = candidate
457 SetNextCandidate(SharedFunctionInfo* candidate, SharedFunctionInfo* next_candidate) argument
462 ClearNextCandidate(SharedFunctionInfo* candidate) argument
[all...]
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/
H A Dsunspider-analyze-results.js209 var candidate = categoryMeans[category].toFixed(2).toString().length;
210 if (candidate > width)
211 width = candidate;
213 var candidate = testMeansByCategory[category][test].toFixed(2).toString().length;
214 if (candidate > width)
215 width = candidate;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/test/
H A Dpeerconnectiontestwrapper.cc122 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));
121 OnIceCandidate( const IceCandidateInterface* candidate) argument
200 AddIceCandidate(const std::string& sdp_mid, int sdp_mline_index, const std::string& candidate) argument
/external/chromium_org/third_party/libjingle/source/talk/examples/objc/AppRTCDemo/
H A DAPPRTCConnectionManager.m202 if ([type isEqualToString:@"candidate"]) {
205 NSString* sdp = messageData[@"candidate"];
206 RTCICECandidate* candidate =
211 [self.queuedRemoteCandidates addObject:candidate];
213 [self.peerConnection addICECandidate:candidate];
294 gotICECandidate:(RTCICECandidate*)candidate {
297 candidate.sdpMid,
298 (long)candidate.sdpMLineIndex,
299 candidate.sdp);
301 @"type" : @"candidate",
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm-inl.h223 // evacuation candidate.
457 Address candidate = pc - 2 * Assembler::kInstrSize; local
458 Instr candidate_instr(Memory::int32_at(candidate));
461 return candidate;
464 candidate -= Assembler::kInstrSize;
467 candidate -= 1 * Assembler::kInstrSize;
468 DCHECK(IsMovW(Memory::int32_at(candidate)) &&
469 IsMovT(Memory::int32_at(candidate + Assembler::kInstrSize)));
471 candidate -= 3 * Assembler::kInstrSize;
473 IsMovImmed(Memory::int32_at(candidate))
[all...]
/external/chromium_org/content/renderer/media/
H A Drtc_peer_connection_handler.cc627 const blink::WebRTCICECandidate& candidate) {
630 bool result = addICECandidate(candidate);
640 const blink::WebRTCICECandidate& candidate) {
643 base::UTF16ToUTF8(candidate.sdpMid()),
644 candidate.sdpMLineIndex(),
645 base::UTF16ToUTF8(candidate.candidate())));
651 LOG_IF(ERROR, !return_value) << "Error processing ICE candidate.";
653 LOG(ERROR) << "Could not create native ICE candidate.";
658 this, candidate, PeerConnectionTracke
625 addICECandidate( const blink::WebRTCVoidRequest& request, const blink::WebRTCICECandidate& candidate) argument
639 addICECandidate( const blink::WebRTCICECandidate& candidate) argument
969 OnIceCandidate( const webrtc::IceCandidateInterface* candidate) argument
[all...]

Completed in 598 milliseconds

1234567891011>>