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

1 2 3 4 56 7 8 91011>>

  /external/tensorflow/tensorflow/core/platform/posix/
env.cc 138 const char* candidates[] = { local
154 for (const char* d : candidates) {
  /packages/apps/Settings/src/com/android/settings/applications/
AppStorageSettings.java 336 final List<VolumeInfo> candidates = context.getPackageManager() local
338 if (candidates.size() > 1) {
339 Collections.sort(candidates, VolumeInfo.getDescriptionComparator());
341 CharSequence[] labels = new CharSequence[candidates.size()];
343 for (int i = 0; i < candidates.size(); i++) {
344 final String volDescrip = storage.getBestVolumeDescription(candidates.get(i));
350 mCandidates = candidates.toArray(new VolumeInfo[candidates.size()]);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
test_mutants.py 109 # where i and j are selected at random from the candidates list.
112 def fill_dict(d, candidates, numentries):
115 d[Horrid(random.choice(candidates))] = \
116 Horrid(random.choice(candidates))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
test_mutants.py 109 # where i and j are selected at random from the candidates list.
112 def fill_dict(d, candidates, numentries):
115 d[Horrid(random.choice(candidates))] = \
116 Horrid(random.choice(candidates))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_typechecks.py 16 candidates = cls.__dict__.get("__subclass__", set()) | set([cls])
17 return any(c in candidates for c in sub.mro())
test_mutants.py 109 # where i and j are selected at random from the candidates list.
112 def fill_dict(d, candidates, numentries):
115 d[Horrid(random.choice(candidates))] = \
116 Horrid(random.choice(candidates))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/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/webp/src/mux/
anim_encode.c 40 // Used to store two candidates of encoded data for an animation frame. One of
849 // Generates candidates for a given dispose method given pre-filled sub-frame
852 WebPAnimEncoder* const enc, Candidate candidates[CANDIDATE_COUNT],
859 is_dispose_none ? &candidates[LL_DISP_NONE] : &candidates[LL_DISP_BG];
861 ? &candidates[LOSSY_DISP_NONE]
862 : &candidates[LOSSY_DISP_BG];
1067 Candidate candidates[CANDIDATE_COUNT]; local
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistEnumDeclaration.java 173 List<ResolvedMethodDeclaration> candidates = new ArrayList<>(); local
179 candidates.add(new JavassistMethodDeclaration(method, typeSolver));
188 candidates.add(ref.getCorrespondingDeclaration());
195 return MethodResolutionLogic.findMostApplicable(candidates, name, argumentsTypes, typeSolver);
  /external/objenesis/tck/src/main/java/org/objenesis/tck/search/
SearchWorkingInstantiator.java 20 import org.objenesis.tck.candidates.SerializableNoConstructor;
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/
TypeAdapterStore.kt 445 fun exactMatch(candidates: List<TypeConverter>): TypeConverter? {
446 return candidates.firstOrNull {
451 val candidates = getAllTypeConverters(input, excludes)
452 val match = exactMatch(candidates)
456 candidates.forEach {
465 val candidates = getAllTypeConverters(from, excludes)
466 val match = exactMatch(candidates)
470 candidates.forEach {
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultAutofillPicker.java 190 final List<DefaultAppInfo> candidates = new ArrayList<>(); local
197 candidates.add(new DefaultAppInfo(context, mPm, mUserId, new ComponentName(
205 candidates.add(new DefaultAppInfo(context, mPm, mUserId, new ComponentName(
209 return candidates;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_mutants.py 109 # where i and j are selected at random from the candidates list.
112 def fill_dict(d, candidates, numentries):
115 d[Horrid(random.choice(candidates))] = \
116 Horrid(random.choice(candidates))
  /external/autotest/client/bin/
setup_job.py 174 candidates, broken_tests = load_all_client_tests(options)
178 need_to_setup = candidates
182 for candidate in candidates:
195 logging.error('### No test setup candidates ###')
196 raise error.AutoservError('No test setup candidates.')
  /external/objenesis/tck/src/main/java/org/objenesis/tck/
TextReporter.java 25 * being read by a human. It can be reused to provide a summary reports of different candidates as
170 Set<String> candidates = this.allCandidates.keySet(); local
173 int maxCandidateWidth = lengthOfLongestStringIn(candidates);
184 // Candidates (and keep the exceptions meanwhile)
185 for(String candidateDesc : candidates) {
  /external/python/cpython2/Lib/test/
test_mutants.py 109 # where i and j are selected at random from the candidates list.
112 def fill_dict(d, candidates, numentries):
115 d[Horrid(random.choice(candidates))] = \
116 Horrid(random.choice(candidates))
  /external/python/cpython2/PC/VC6/
build_ssl.py 63 candidates = []
74 candidates.append(fqn)
75 # Now we have all the candidates, locate the best.
78 for c in candidates:
  /external/python/cpython2/PC/VS8.0/
build_ssl.py 68 candidates = []
79 candidates.append(fqn)
80 # Now we have all the candidates, locate the best.
83 for c in candidates:
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
RobolectricPackageManager.java 92 List<ResolveInfo> candidates = queryIntentActivities(intent, flags); local
93 return candidates.isEmpty() ? null : candidates.get(0);
  /libcore/ojluni/src/main/java/java/lang/
Runtime.java 1022 List<String> candidates = new ArrayList<String>(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/accessibility/
VibrationPreferenceFragment.java 150 List<VibrationIntensityCandidateInfo> candidates = new ArrayList<>(mCandidates.values()); local
151 candidates.sort(
153 return candidates;
  /packages/apps/Settings/src/com/android/settings/applications/assist/
DefaultAssistPicker.java 81 final List<DefaultAppInfo> candidates = new ArrayList<>(); local
89 candidates.add(new DefaultAppInfo(getContext(), mPm, mUserId, info.component));
91 return candidates;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/
DevicePrefFragment.java 196 List<DefaultAppInfo> candidates = AutofillHelper.getAutofillCandidates(getContext(), local
200 if (candidates.isEmpty()) {
218 DefaultAppInfo appInfo = AutofillHelper.getCurrentAutofill(getContext(), candidates);

Completed in 483 milliseconds

1 2 3 4 56 7 8 91011>>