HomeSort by relevance Sort by last modified time
    Searched refs:candidates (Results 101 - 125 of 571) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/python/cpython2/PC/VS7.1/
build_ssl.py 59 candidates = []
70 candidates.append(fqn)
71 # Now we have all the candidates, locate the best.
74 for c in candidates:
  /external/python/cpython3/Lib/test/
test_compare.py 27 candidates = set1 + set2 variable in class:ComparisonTest
30 for a in self.candidates:
31 for b in self.candidates:
test_typechecks.py 15 candidates = cls.__dict__.get("__subclass__", set()) | {cls}
16 return any(c in candidates for c in sub.mro())
  /external/webrtc/webrtc/p2p/base/
transportcontroller.cc 33 const Candidates& candidates)
34 : transport_name(transport_name), candidates(candidates) {}
37 Candidates candidates; member in struct:cricket::CandidatesData
123 const Candidates& candidates,
127 transport_name, candidates, err));
254 SignalCandidatesGathered(data->transport_name, data->candidates);
514 std::vector<Candidate> candidates; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultBrowserPreferenceController.java 51 final List<ResolveInfo> candidates = getCandidates(); local
52 return candidates != null && !candidates.isEmpty();
DefaultHomePicker.java 61 final List<DefaultAppInfo> candidates = new ArrayList<>(); local
83 candidates.add(candidate);
85 return candidates;
  /packages/apps/SettingsIntelligence/src/com/android/settings/intelligence/suggestions/eligibility/
CandidateSuggestionFilter.java 66 List<CandidateSuggestion> candidates) {
70 if (candidates == null) {
74 for (CandidateSuggestion candidate : candidates) {
  /prebuilts/go/darwin-x86/test/chan/
sieve2.go 10 // This sieve is Eratosthenesque and only considers odd candidates.
150 // Sieve out 'composites' from 'candidates'.
160 candidates := odds()
161 p := <-candidates
168 p = <-candidates
171 p = <-candidates
  /prebuilts/go/linux-x86/test/chan/
sieve2.go 10 // This sieve is Eratosthenesque and only considers odd candidates.
150 // Sieve out 'composites' from 'candidates'.
160 candidates := odds()
161 p := <-candidates
168 p = <-candidates
171 p = <-candidates
  /cts/hostsidetests/seccomp/app/
gen_blacklist.py 133 candidates = sorted(glob.glob(os.path.join(os.getenv('ANDROID_BUILD_TOP'),
135 for clang_dir in candidates:
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator2.java 93 MatchCandidateList candidates) {
120 // Find the set of matching candidates
121 matchingCandidates = findRawContactMatchingCandidates(db, rawContactId, candidates,
139 // on the number of matching candidates and the number of raw_contacts in the
207 * candidates with matching scores > threshold to RawContactMatchingCandidates. Keep doing
211 rawContactId, MatchCandidateList candidates, RawContactMatcher matcher) {
212 updateMatchScores(db, rawContactId, candidates, matcher);
635 MatchCandidateList candidates, RawContactMatcher matcher) {
636 candidates.clear();
638 mNameSplitter, candidates);
810 MatchCandidateList candidates = new MatchCandidateList(); local
    [all...]
  /external/autotest/server/cros/dynamic_suite/
control_file_getter.py 132 candidates = filter(regexp.search, self._files)
133 if not candidates:
135 if len(candidates) > 1:
137 return candidates[0]
  /external/webrtc/talk/app/webrtc/
jsep.h 80 // This class represents a collection of candidates for a specific m-line.
82 // candidates for a certain m-line.
117 // Returns a collection of all candidates that belong to a certain m-line
118 virtual const IceCandidateCollection* candidates(
jsepsessiondescription.h 78 virtual const IceCandidateCollection* candidates(
videosource.cc 216 std::vector<cricket::VideoFormat> candidates = supported_formats; local
220 FilterFormatsByConstraint(*constraints_it, true, &candidates);
222 if (candidates.size() == 0)
223 return candidates;
229 std::vector<cricket::VideoFormat> current_candidates = candidates;
232 candidates = current_candidates;
237 return candidates;
  /packages/apps/Settings/src/com/android/settings/accessibility/
ShortcutServicePickerFragment.java 80 final List<CandidateInfo> candidates = new ArrayList<>(numInstalledServices); local
92 candidates.add(new FrameworkCandidateInfo(frameworkFeatureInfoMap.get(componentName),
96 candidates.add(new ServiceCandidateInfo(installedServices.get(i)));
99 return candidates;
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistInterfaceDeclaration.java 108 List<ResolvedMethodDeclaration> candidates = new ArrayList<>(); local
114 candidates.add(new JavassistMethodDeclaration(method, typeSolver));
123 candidates.add(ref.getCorrespondingDeclaration());
134 candidates.add(ref.getCorrespondingDeclaration());
141 return MethodResolutionLogic.findMostApplicable(candidates, name, argumentsTypes, typeSolver);
  /external/libtextclassifier/
types.h 57 const int considered_candidate, const std::vector<T>& candidates,
66 SpansOverlap(candidates[considered_candidate].span,
67 candidates[*conflicting_it].span)) {
79 if (!SpansOverlap(candidates[considered_candidate].span,
80 candidates[*conflicting_it].span)) {
  /external/tensorflow/tensorflow/examples/speech_commands/
input_data.py 423 candidates = self.data_index[mode]
425 sample_count = len(candidates)
427 sample_count = max(0, min(how_many, len(candidates) - offset))
441 sample_index = np.random.randint(len(candidates))
442 sample = candidates[sample_index]
501 candidates = self.data_index[mode]
503 sample_count = len(candidates)
522 sample_index = np.random.randint(len(candidates))
523 sample = candidates[sample_index]
  /frameworks/native/services/surfaceflinger/
DisplayDevice.cpp 116 std::vector<ColorMode> candidates; local
119 candidates.push_back(mode);
130 // add other HDR candidates when mode is HDR
134 candidates.push_back(hdrMode);
139 // add other SDR candidates
142 candidates.push_back(sdrMode);
146 return candidates;
151 std::vector<RenderIntent> candidates; local
154 candidates.push_back(intent);
166 // add other HDR candidates when intent is HD
188 std::vector<ColorMode> candidates = getColorModeCandidates(mode); local
201 std::vector<RenderIntent> candidates = getRenderIntentCandidates(intent); local
    [all...]
  /external/jline/
jline-1.0.jar 
  /prebuilts/tools/common/m2/repository/jline/jline/0.9.94/
jline-0.9.94.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
  /external/libvpx/libvpx/vp9/encoder/
vp9_mcomp.c     [all...]
  /external/python/cpython2/Lib/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())

Completed in 1292 milliseconds

1 2 3 45 6 7 8 91011>>