Home
last modified time | relevance | path

Searched refs:isExactMatch (Results 1 – 10 of 10) sorted by relevance

/external/autotest/frontend/client/src/autotest/common/table/
DFieldFilter.java8 protected boolean isExactMatch = true; field in FieldFilter
15 isExactMatch = exactMatch; in setExactMatch()
23 if (!isExactMatch) { in addParams()
DListFilter.java47 public void setExactMatch(boolean isExactMatch) { in setExactMatch() argument
48 this.isExactMatch = isExactMatch; in setExactMatch()
/external/libtextclassifier/native/utils/
Dresources.cc29 bool isExactMatch(const flatbuffers::String* left, const std::string& right) { in isExactMatch() function
41 if (isExactMatch(entry_locale->language(), locale.Language())) { in LocaleMatch()
47 if (isExactMatch(entry_locale->script(), locale.Script())) { in LocaleMatch()
53 if (isExactMatch(entry_locale->region(), locale.Region())) { in LocaleMatch()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/src/java-symbol-solver-core/com/github/javaparser/symbolsolver/resolution/
DConstructorResolutionLogic.java185 if (!MethodResolutionLogic.isExactMatch(winningCandidate, argumentsTypes)) { in findMostApplicable()
186 if (MethodResolutionLogic.isExactMatch(other, argumentsTypes)) { in findMostApplicable()
DMethodResolutionLogic.java432 if (!isExactMatch(winningCandidate, argumentsTypes)) { in findMostApplicable()
433 if (isExactMatch(other, argumentsTypes)) { in findMostApplicable()
444 protected static boolean isExactMatch(MethodLikeDeclaration method, List<Type> argumentsTypes) { in isExactMatch() method in MethodResolutionLogic
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/
DConstructorResolutionLogic.java185 if (!MethodResolutionLogic.isExactMatch(winningCandidate, argumentsTypes)) { in findMostApplicable()
186 if (MethodResolutionLogic.isExactMatch(other, argumentsTypes)) { in findMostApplicable()
DMethodResolutionLogic.java424 if (!isExactMatch(winningCandidate, argumentsTypes)) { in findMostApplicable()
425 if (isExactMatch(other, argumentsTypes)) { in findMostApplicable()
436 …protected static boolean isExactMatch(ResolvedMethodLikeDeclaration method, List<ResolvedType> arg… in isExactMatch() method in MethodResolutionLogic
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/expected_output/java-symbol-solver-core/
Dcom_github_javaparser_symbolsolver_resolution_ConstructorResolutionLogic.txt92 …utionLogic.isExactMatch(winningCandidate, argumentsTypes) ==> com.github.javaparser.symbolsolver.r…
93 …ResolutionLogic.isExactMatch(other, argumentsTypes) ==> com.github.javaparser.symbolsolver.resolut…
Dcom_github_javaparser_symbolsolver_resolution_MethodResolutionLogic.txt277 …Line 432) isExactMatch(winningCandidate, argumentsTypes) ==> com.github.javaparser.symbolsolver.re…
278 …Line 433) isExactMatch(other, argumentsTypes) ==> com.github.javaparser.symbolsolver.resolution.Me…
/external/deqp/modules/egl/
DteglChooseConfigTests.cpp200 bool isExactMatch = configListEqual(egl, m_display, resultConfigs, referenceConfigs); in executeTest() local
201 bool isMatch = isSetMatch && (checkOrder ? isExactMatch : true); in executeTest()
207 else if (!isExactMatch) in executeTest()