Searched refs:candidate (Results 1 - 25 of 157) sorted by relevance

1234567

/external/objenesis/tck/test/org/objenesis/tck/
H A DCandidateLoaderTest-sample.properties54 org.objenesis.tck.CandidateLoaderTest$A = A candidate
55 org.objenesis.tck.CandidateLoaderTest$B = B candidate
/external/elfutils/src/lib/
H A Dnext_prime.c35 is_prime (size_t candidate) argument
41 while (sq < candidate && candidate % divn != 0)
51 return candidate % divn != 0;
/external/mockito/src/org/mockito/exceptions/stacktrace/
H A DStackTraceCleaner.java25 * @param candidate element of the actual stack trace
28 boolean isOut(StackTraceElement candidate); argument
/external/vogar/src/vogar/
H A DClassAnalyzer.java32 Method candidate = klass.getMethod(name, parameters);
33 int modifier = candidate.getModifiers();
34 Class<?> actualReturnType = candidate.getReturnType();
/external/v8/src/
H A Dversion.cc49 #define CANDIDATE_STRING " (candidate)"
80 const char* candidate = IsCandidate() ? " (candidate)" : ""; local
88 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate,
92 GetMajor(), GetMinor(), GetBuild(), candidate,
102 const char* candidate = IsCandidate() ? "-candidate" : ""; local
105 GetMajor(), GetMinor(), GetBuild(), GetPatch(), candidate);
108 GetMajor(), GetMinor(), GetBuild(), candidate);
H A Dversion.h41 bool candidate, const char* soname);
/external/v8/test/cctest/
H A Dtest-version.cc40 bool candidate, const char* soname) {
45 Version::candidate_ = candidate;
53 int patch, bool candidate,
60 SetVersion(major, minor, build, patch, candidate, "");
68 SetVersion(major, minor, build, patch, candidate, soname);
80 "0.0.0 (candidate) SIMULATOR", "libv8-0.0.0-candidate.so");
83 "1.0.0 (candidate) SIMULATOR", "libv8-1.0.0-candidate.so");
86 "1.0.0.1 (candidate) SIMULATO
39 SetVersion(int major, int minor, int build, int patch, bool candidate, const char* soname) argument
52 CheckVersion(int major, int minor, int build, int patch, bool candidate, const char* expected_version_string, const char* expected_generic_soname) argument
[all...]
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DNanoWebSocketServer.java31 Response candidate = responseHandler.serve(session);
32 return candidate == null ? super.serve(session) : candidate;
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp3.cpp6 class C {}; // expected-note {{candidate}}
10 expected-note {{candidate}}
/external/google-tv-pairing-protocol/cpp/
H A Dautogen.sh22 for candidate in "$@"; do
23 if "$candidate" --version >/dev/null 2>&1; then
24 echo "$candidate"
28 echo "$candidate" # the last one in $@
/external/skia/src/core/
H A DSkTDynamicHash.h94 T* candidate = fArray[index]; local
95 if (Empty() == candidate) {
98 if (Deleted() != candidate && GetKey(*candidate) == key) {
99 return candidate;
148 const T* candidate = fArray[index]; local
149 if (Empty() == candidate || Deleted() == candidate || GetKey(*candidate) == key) {
212 const T* candidate local
231 const T* candidate = fArray[index]; local
[all...]
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatcher.java220 * @param leniency the leniency to use when evaluating candidate phone numbers
252 CharSequence candidate = text.subSequence(start, matcher.end());
257 candidate = trimAfterFirstMatch(PhoneNumberUtil.SECOND_NUMBER_START_PATTERN, candidate);
259 PhoneNumberMatch match = extractMatch(candidate, start);
264 index = start + candidate.length();
272 * Trims away any characters after the first match of {@code pattern} in {@code candidate},
275 private static CharSequence trimAfterFirstMatch(Pattern pattern, CharSequence candidate) { argument
276 Matcher trailingCharsMatcher = pattern.matcher(candidate);
278 candidate
314 extractMatch(CharSequence candidate, int offset) argument
348 extractInnerMatch(String candidate, int offset) argument
386 parseAndVerify(String candidate, int offset) argument
574 checkNumberGroupingIsValid( PhoneNumber number, String candidate, PhoneNumberUtil util, NumberGroupingChecker checker) argument
598 containsMoreThanOneSlashInNationalNumber(PhoneNumber number, String candidate) argument
624 containsOnlyValidXChars( PhoneNumber number, String candidate, PhoneNumberUtil util) argument
[all...]
/external/clang/include/clang/Sema/
H A DTypoCorrection.h263 /// candidate is viable, without ranking potentially viable candidates.
266 /// The default predicate always returns true if the candidate is not a type
270 virtual bool ValidateCandidate(const TypoCorrection &candidate);
273 /// to a candidate (where a lower value represents a better candidate), or
274 /// returning InvalidDistance if the candidate is not at all viable. For
275 /// validation callbacks that only need to determine if a candidate is viable,
278 virtual unsigned RankCandidate(const TypoCorrection &candidate) { argument
279 return (!MatchesTypo(candidate) && ValidateCandidate(candidate))
302 MatchesTypo(const TypoCorrection &candidate) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_pair.c42 int candidate = -1; local
88 candidate = i;
93 candidate = RC_PAIR_PRESUB_SRC;
94 } else if (candidate < 0 || (rgb && rgb_used > 2)
99 /* candidate >= 0 */
102 pair->RGB.Src[candidate].Used = 1;
103 pair->RGB.Src[candidate].File = file;
104 pair->RGB.Src[candidate].Index = index;
105 if (candidate == RC_PAIR_PRESUB_SRC) {
115 pair->Alpha.Src[candidate]
[all...]
/external/mockito/src/org/mockito/internal/invocation/
H A DInvocationMatcher.java77 public boolean hasSimilarMethod(Invocation candidate) { argument
79 String currentMethodName = candidate.getMethod().getName();
82 final boolean isUnverified = !candidate.isVerified();
83 final boolean mockIsTheSame = getInvocation().getMock() == candidate.getMock();
84 final boolean methodEquals = hasSameMethod(candidate);
90 final boolean overloadedButSameArgs = !methodEquals && safelyArgumentsMatch(candidate.getArguments());
95 public boolean hasSameMethod(Invocation candidate) { argument
99 Method m2 = candidate.getMethod();
H A DInvocationsFinder.java176 Invocation candidate = null;
179 candidate = candidate != null ? candidate : i;
181 candidate = null;
184 return candidate;
/external/guava/guava/src/com/google/common/collect/
H A DRegularImmutableSet.java50 Object candidate = table[i & mask];
51 if (candidate == null) {
54 if (candidate.equals(target)) {
/external/junit/src/org/junit/experimental/theories/
H A DParameterSignature.java43 public boolean canAcceptType(Class<?> candidate) { argument
44 return type.isAssignableFrom(candidate);
75 Annotation candidate= findDeepAnnotation(each.annotationType()
77 if (candidate != null)
78 return annotationType.cast(candidate);
/external/libvpx/libvpx/vp9/common/
H A Dvp9_mvref_common.c15 // to try and find candidate reference vectors.
42 const MB_MODE_INFO *const candidate = &candidate_mi->mbmi; local
44 context_counter += mode_2_counter[candidate->mode];
47 if (candidate->ref_frame[0] == ref_frame)
50 else if (candidate->ref_frame[1] == ref_frame)
62 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row * local
66 if (candidate->ref_frame[0] == ref_frame)
67 ADD_MV_REF_LIST(candidate->mv[0], refmv_count, mv_ref_list, Done);
68 else if (candidate->ref_frame[1] == ref_frame)
69 ADD_MV_REF_LIST(candidate
104 const MB_MODE_INFO *const candidate = &xd->mi[mv_ref->col + mv_ref->row local
[all...]
/external/bison/lib/
H A Dhash.c444 is_prime (size_t candidate) argument
449 while (square < candidate && (candidate % divisor))
456 return (candidate % divisor ? true : false);
463 next_prime (size_t candidate) argument
466 if (candidate < 10)
467 candidate = 10;
470 candidate |= 1;
472 while (SIZE_MAX != candidate && !is_prime (candidate))
544 compute_bucket_size(size_t candidate, const Hash_tuning *tuning) argument
594 hash_initialize(size_t candidate, const Hash_tuning *tuning, Hash_hasher hasher, Hash_comparator comparator, Hash_data_freer data_freer) argument
943 hash_rehash(Hash_table *table, size_t candidate) argument
1073 float candidate = local
1175 size_t candidate = local
[all...]
/external/ceres-solver/internal/ceres/
H A Dcanonical_views_clustering.cc70 double ComputeClusteringQualityDifference(const int candidate,
159 // Computes the difference in the quality score if 'candidate' were
162 const int candidate,
166 options_.view_score_weight * graph_->VertexWeight(candidate);
168 // Compute how much the quality score changes if the candidate view
171 const IntSet& neighbors = graph_->Neighbors(candidate);
177 const double new_similarity = graph_->EdgeWeight(*neighbor, candidate);
189 graph_->EdgeWeight(centers[i], candidate);
161 ComputeClusteringQualityDifference( const int candidate, const vector<int>& centers) const argument
/external/clang/test/SemaCXX/
H A Dusing-directive.cpp4 short i; // expected-note 2{{candidate found by name lookup is 'A::i'}}
6 long i; // expected-note{{candidate found by name lookup is 'A::B::i'}}
7 void f() {} // expected-note{{candidate function}}
10 expected-note{{candidate found by name lookup is 'A::B::E'}}
13 namespace E {} // expected-note{{candidate found by name lookup is 'A::E'}}
18 expected-note{{candidate found by name lookup is 'A::C::E'}}
21 void f() {} // expected-note{{candidate function}}
48 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'A::K2'}}
51 struct K2 {}; // expected-note 2{{candidate found by name lookup is 'K2'}}
61 class X { // expected-note{{candidate foun
[all...]
/external/deqp/framework/egl/
H A DegluConfigFilter.hpp87 typedef bool (*ConfigFilter) (const CandidateConfig& candidate);
100 bool match (const CandidateConfig& candidate) const;
/external/objenesis/tck/src/org/objenesis/tck/
H A DCandidateLoader.java24 * Loads a set of candidate classes from a properties file into the TCK. <p/> The properties file
41 * Called whenever, trying to retrieve a candidate class from its name, a
100 * Load a candidate property file
121 Class candidate = Class.forName(key, true, classloader);
122 tck.registerCandidate(candidate, value);
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
H A DDexmakerMockMaker.java103 public boolean isOut(StackTraceElement candidate) {
104 return defaultCleaner.isOut(candidate)
105 || candidate.getClassName().endsWith("_Proxy") // dexmaker class proxies
106 || candidate.getClassName().startsWith("$Proxy") // dalvik interface proxies
107 || candidate.getClassName().startsWith("com.google.dexmaker.mockito.");

Completed in 1742 milliseconds

1234567