Searched refs:candidates (Results 151 - 175 of 209) sorted by last modified time

123456789

/external/chromium_org/remoting/protocol/
H A Djingle_session.cc36 // message. This is neccessary to be able to pack multiple candidates
286 // Delay sending the new candidates in case we get more candidates
367 message.candidates.swap(pending_candidates_);
501 message.candidates.begin();
502 it != message.candidates.end(); ++it) {
/external/chromium_org/third_party/android_platform/development/scripts/
H A Dsymbol.py208 candidates = PathListJoin([out_dir], buildtype_list) + [CHROME_SYMBOLS_DIR]
209 candidates = PathListJoin(candidates, dirs)
210 candidates = PathListJoin(candidates, [filepart])
211 candidates = list(
212 itertools.chain.from_iterable(map(candidate_fun, candidates)))
213 candidates = sorted(candidates, key=os.path.getmtime, reverse=True)
214 return candidates
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/chromium_org/courgette/
H A Dadjustment_method_2.cc38 (symbol) U,V,... in A2 has a set of candidates from A1, each candidate with a
175 AssignmentCandidates* candidates();
352 AssignmentCandidates* LabelInfo::candidates() { function in class:courgette::adjustment_method_2::LabelInfo
755 AssignmentCandidates* candidates = p->second->candidates(); local
756 candidates->Print(std::numeric_limits<int>::max());
762 AssignmentCandidates* candidates = program_info->candidates(); local
763 if (!candidates->HasPendingUpdates()) {
764 pending_update_candidates_.push_back(candidates);
771 AssignmentCandidates* candidates = pending_update_candidates_[i]; local
[all...]
/external/chromium_org/gpu/config/
H A Dgpu_control_list.cc1107 std::vector<GPUInfo::GPUDevice> candidates; local
1110 candidates.push_back(gpu_info.gpu);
1113 candidates = gpu_info.secondary_gpus;
1116 candidates = gpu_info.secondary_gpus;
1117 candidates.push_back(gpu_info.gpu);
1121 candidates.push_back(gpu_info.gpu);
1124 candidates.push_back(gpu_info.secondary_gpus[ii]);
1134 for (size_t ii = 0; ii < candidates.size(); ++ii) {
1135 if (gpu.vendor_id == candidates[ii].vendor_id) {
1143 for (size_t jj = 0; jj < candidates
[all...]
/external/chromium_org/content/renderer/media/
H A Dmedia_stream_video_source.cc273 media::VideoCaptureFormats candidates = supported_formats; local
275 FilterFormatsByConstraint(mandatory[i], true, &candidates);
276 if (candidates.empty()) {
278 return candidates;
282 if (candidates.empty())
283 return candidates;
285 // Ok - all mandatory checked and we still have candidates.
288 // But if a constraint produce zero candidates, the constraint is ignored and
292 media::VideoCaptureFormats current_candidates = candidates;
295 candidates
[all...]
/external/chromium_org/content/renderer/media/webrtc/
H A Dmock_peer_connection_dependency_factory.cc383 virtual const IceCandidateCollection* candidates(
/external/chromium_org/content/browser/frame_host/
H A Drender_frame_host_manager_unittest.cc182 const std::vector<FaviconURL>& candidates) OVERRIDE {
/external/chromium_org/content/browser/media/capture/
H A Daudio_mirroring_manager.cc53 std::set<SourceFrameRef> candidates; local
54 candidates.insert(routes_.back().source_render_frame);
55 InitiateQueriesToFindNewDestination(NULL, candidates);
86 std::set<SourceFrameRef> candidates; local
90 candidates.insert(it->source_render_frame);
92 if (!candidates.empty()) {
94 candidates,
130 const std::set<SourceFrameRef>& candidates) {
137 candidates,
128 InitiateQueriesToFindNewDestination( MirroringDestination* old_destination, const std::set<SourceFrameRef>& candidates) argument
H A Daudio_mirroring_manager.h65 // audio sourced from each of the |candidates|. |results_callback| is run
72 const std::set<SourceFrameRef>& candidates,
132 // |candidates| to be diverted to.
135 const std::set<SourceFrameRef>& candidates);
H A Daudio_mirroring_manager_unittest.cc50 void(const std::set<SourceFrameRef>& candidates,
55 void SimulateQuery(const std::set<SourceFrameRef>& candidates, argument
60 if (candidates.find(SourceFrameRef(render_process_id_, render_frame_id_)) !=
61 candidates.end()) {
H A Dweb_contents_audio_input_stream.cc83 const std::set<SourceFrameRef>& candidates,
85 void QueryForMatchesOnUIThread(const std::set<SourceFrameRef>& candidates,
259 const std::set<SourceFrameRef>& candidates,
266 candidates,
271 const std::set<SourceFrameRef>& candidates,
280 for (std::set<SourceFrameRef>::const_iterator i = candidates.begin();
281 i != candidates.end(); ++i) {
258 QueryForMatches( const std::set<SourceFrameRef>& candidates, const MatchesCallback& results_callback) argument
270 QueryForMatchesOnUIThread( const std::set<SourceFrameRef>& candidates, const MatchesCallback& results_callback) argument
H A Dweb_contents_audio_muter.cc79 const std::set<SourceFrameRef>& candidates,
86 candidates,
90 void QueryForMatchesOnUIThread(const std::set<SourceFrameRef>& candidates, argument
96 for (std::set<SourceFrameRef>::const_iterator i = candidates.begin();
97 i != candidates.end(); ++i) {
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl.cc3071 const std::vector<FaviconURL>& candidates) {
3073 DidUpdateFaviconURL(candidates));
3070 OnUpdateFaviconURL( const std::vector<FaviconURL>& candidates) argument
H A Dweb_contents_impl.h831 void OnUpdateFaviconURL(const std::vector<FaviconURL>& candidates);
/external/chromium_org/content/public/browser/
H A Dweb_contents_observer.h289 // Invoked when new FaviconURL candidates are received from the renderer.
290 virtual void DidUpdateFaviconURL(const std::vector<FaviconURL>& candidates) {} argument
/external/chromium_org/chrome/installer/util/
H A Dlanguage_selector.cc6 // set of candidates.
71 // that it will win if it precedes another valid tag in a list of candidates.
189 // Adds to |candidates| the eligible languages on the system. Any language
192 void GetCandidatesFromSystem(std::vector<std::wstring>* candidates) { argument
193 DCHECK(candidates);
199 candidates->push_back(language);
204 base::win::i18n::GetThreadPreferredUILanguageList(candidates);
216 std::vector<std::wstring> candidates; local
218 GetCandidatesFromSystem(&candidates);
219 DoSelect(candidates);
222 LanguageSelector(const std::vector<std::wstring>& candidates) argument
257 SelectIf(const std::vector<std::wstring>& candidates, SelectPred_Fn select_predicate, std::wstring* matched_name, int* matched_offset) argument
280 DoSelect(const std::vector<std::wstring>& candidates) argument
[all...]
H A Dlanguage_selector.h6 // set of candidates.
18 // A helper class for selecting a supported language from a set of candidates.
19 // By default, the candidates are retrieved from the operating system.
27 explicit LanguageSelector(const std::vector<std::wstring>& candidates);
46 static bool SelectIf(const std::vector<std::wstring>& candidates,
49 void DoSelect(const std::vector<std::wstring>& candidates);
H A Dlanguage_selector_unittest.cc43 std::wstring candidates[] = { local
47 std::vector<std::wstring>(&candidates[0],
48 &candidates[arraysize(candidates)]));
53 std::wstring candidates[] = { local
57 std::vector<std::wstring>(&candidates[0],
58 &candidates[arraysize(candidates)]));
63 std::wstring candidates[] = { local
67 std::vector<std::wstring>(&candidates[
[all...]
/external/chromium_org/chrome/test/chromedriver/
H A Drun_buildbot_steps.py245 # Fetch release candidates.
250 assert result == 0 and output, 'No release candidates found'
253 candidates = []
259 candidates.append(int(result.group(1)))
264 candidates.sort(reverse=True)
265 for revision in candidates:
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_scan_manager.cc113 const MediaFolderFinder::MediaFolderFinderResults& candidates) {
116 candidates.begin(); it != candidates.end(); ++it) {
396 // |candidates| keeps track of directories which might have enough
399 ContainerCandidates candidates; local
430 candidates.find(parent_directory);
431 if (parent_it == candidates.end()) {
436 candidates.insert(std::make_pair(parent_directory, count)).first;
438 ++candidates[parent_directory].seen_count;
454 for (ContainerCandidates::const_iterator it = candidates
111 SumFilesUnderPath( const base::FilePath& path, const MediaFolderFinder::MediaFolderFinderResults& candidates) argument
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_local_predictor.cc139 // We first insert local candidates, then service candidates.
141 // candidates, we need to double the maximum number of candidates once
142 // we start seeing service candidates.
786 "candidates": [
817 base::ListValue* candidates = new base::ListValue(); local
823 candidates->Append(candidate);
828 candidate_check_request->Set("candidates", candidates);
[all...]
/external/chromium_org/chrome/browser/resources/whispernet_proxy/js/
H A Dwrapper.js191 * @param {!Array.string} candidates Array of token candidates.
192 * @param {boolean} audible Whether the received candidates are from the audible
196 WhisperDecoder.prototype.handleCandidates_ = function(candidates, audible) {
197 if (!this.tokenCallback_ || !candidates || candidates.length == 0)
201 for (var i = 0; i < candidates.length; ++i) {
202 returnCandidates[i] = { token: bytesToBase64(candidates[i]),
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dfolder_creator.cc69 ScopedVector<google_apis::FileResource> candidates,
84 candidates.reserve(candidates.size() + file_list->items().size());
85 candidates.insert(candidates.end(),
95 base::Passed(&candidates)));
100 for (size_t i = 0; i < candidates.size(); ++i) {
101 const google_apis::FileResource& entry = *candidates[i];
116 status = metadata_database_->UpdateByFileResourceList(candidates.Pass());
67 DidListFolders( const FileIDCallback& callback, ScopedVector<google_apis::FileResource> candidates, google_apis::GDataErrorCode error, scoped_ptr<google_apis::FileList> file_list) argument
H A Dfolder_creator.h50 ScopedVector<google_apis::FileResource> candidates,

Completed in 622 milliseconds

123456789