Searched defs:matching (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium-trace/catapult/telemetry/telemetry/util/
H A Dmatching_unittest.py7 from telemetry.util import matching namespace
36 matching.GetMostLikelyMatchedObject(
41 matching.GetMostLikelyMatchedObject(
46 matching.GetMostLikelyMatchedObject(
/external/easymock/src/org/easymock/internal/
H A DErrorMessage.java20 private final boolean matching; field in class:ErrorMessage
26 public ErrorMessage(boolean matching, String message, int actualCount) { argument
27 this.matching = matching;
33 return matching;
46 if (matching) {
/external/selinux/python/sepolgen/tests/
H A Dtest_matching.py21 import sepolgen.matching as matching namespace
28 a = matching.Match()
32 b = matching.Match()
48 ml = matching.MatchList()
51 a = matching.Match()
56 a = matching.Match()
63 a = matching.Match()
71 ml = matching.MatchList()
74 a = matching
[all...]
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
H A DCondition.java22 public abstract boolean matching(Matcher<T> match, String message); method in class:Condition
25 public final boolean matching(Matcher<T> match) { return matching(match, ""); } method in class:Condition
47 public boolean matching(Matcher<T> matcher, String message) { method in class:Condition.Matched
63 @Override public boolean matching(Matcher<T> match, String message) { return false; } method in class:Condition.NotMatched
/external/chromium-trace/catapult/telemetry/telemetry/
H A Dbenchmark_runner.py24 from telemetry.util import matching namespace
217 most_likely_matched_benchmarks = matching.GetMostLikelyMatchedObject(
275 # Exact matching.
277 # Don't add aliases to search dict, only allow exact matching for them.
288 # Fuzzy matching.
H A Drecord_wpr.py17 from telemetry.util import matching namespace
214 candidates = matching.GetMostLikelyMatchedObject(
/external/selinux/python/sepolgen/src/sepolgen/
H A Dpolicygen.py37 from . import matching namespace
308 self.matcher = matching.AccessMatcher(perm_maps)
360 ans = matching.MatchList()
H A Dinterfaces.py30 from . import matching namespace
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlPolicyBuilder.java320 .matching(AttributePolicy.REJECT_ALL_ATTRIBUTE_POLICY);
645 * Multiple calls to {@code matching} are combined so that the policies
649 public AttributeBuilder matching(AttributePolicy policy) { method in class:HtmlPolicyBuilder.AttributeBuilder
656 * matching the pattern.
657 * Multiple calls to {@code matching} are combined to restrict to the
660 public AttributeBuilder matching(final Pattern pattern) { method in class:HtmlPolicyBuilder.AttributeBuilder
661 return matching(new AttributePolicy() {
671 * matching the given predicate.
672 * Multiple calls to {@code matching} are combined to restrict to the
675 public AttributeBuilder matching( method in class:HtmlPolicyBuilder.AttributeBuilder
691 public AttributeBuilder matching( method in class:HtmlPolicyBuilder.AttributeBuilder
702 public AttributeBuilder matching( method in class:HtmlPolicyBuilder.AttributeBuilder
[all...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dtrace.c47 char **matching; local
61 if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
63 free(matching);
/external/wpa_supplicant_8/src/utils/
H A Dtrace.c47 char **matching; local
61 if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
63 free(matching);
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dtrace.c47 char **matching; local
61 if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
63 free(matching);
/external/selinux/libsepol/cil/src/
H A Dcil_find.c41 struct cil_list *matching; member in struct:cil_args_find
294 int cil_find_matching_avrule(struct cil_tree_node *node, struct cil_avrule *avrule, struct cil_avrule *target, struct cil_list *matching, int match_self) argument
336 cil_list_append(matching, CIL_NODE, node);
340 cil_list_append(matching, CIL_NODE, node);
366 rc = cil_find_matching_avrule(node, node->data, args->target, args->matching, args->match_self);
374 int cil_find_matching_avrule_in_ast(struct cil_tree_node *current, enum cil_flavor flavor, void *target, struct cil_list *matching, int match_self) argument
381 args.matching = matching;
H A Dcil_binary.c4531 struct cil_list *matching; local
4557 cil_list_init(&matching, CIL_NODE);
4558 rc = cil_find_matching_avrule_in_ast(db->ast->root, avrule_flavor, &target, matching, CIL_FALSE);
4561 cil_list_destroy(&matching, CIL_FALSE);
4565 cil_list_for_each(i2, matching) {
4572 cil_list_destroy(&matching, CIL_FALSE);
4772 struct cil_list *matching; local
4780 cil_list_init(&matching, CIL_NODE);
4781 rc = cil_find_matching_avrule_in_ast(db->ast->root, CIL_AVRULE, &target, matching, CIL_TRUE);
4784 cil_list_destroy(&matching, CIL_FALS
[all...]
/external/libcups/cups/
H A Ddest-options.c913 * The "media" string is a PWG media name. "Flags" provides some matching
923 * The matching result (if any) is returned in the "cups_size_t" structure.
936 unsigned flags, /* I - Media matching flags */
979 * "Flags" provides some matching guidance (multiple flags can be combined):
988 * The matching result (if any) is returned in the "cups_size_t" structure.
1004 unsigned flags, /* I - Media matching flags */
1145 * Fall back to the first matching media size...
1710 unsigned flags, /* I - Media matching flags */
1715 *best = NULL, /* Best matching entry */
1945 * Return the matching siz
2012 cups_option_t *matching; /* Matching options */ local
[all...]
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java65 private boolean matching; field in class:InstructionSequenceMatcher
99 * Starts matching from the first instruction again next time.
118 return matching;
234 // Check if the instruction sequence is matching now.
256 // Check if the instruction sequence is matching now.
279 // Check if the instruction sequence is matching now.
301 // Check if the instruction sequence is matching now.
329 // Check if the instruction sequence is matching now.
355 // Check if the instruction sequence is matching now.
548 * Marks the specified argument (by index) as matching th
[all...]
/external/owasp/sanitizer/distrib/lib/
H A Dowasp-java-html-sanitizer.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/owasp/ org/owasp/html/ org/owasp/html/AbstractTokenStream ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/guice/extensions/struts2/lib/
H A Dcore-3.1.1.jar ... internal/core/search/indexing/ org/eclipse/jdt/internal/core/search/matching/ org/eclipse/jdt/internal/core/search/processing/ org/eclipse/jdt ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jar ... internal/core/search/indexing/ org/eclipse/jdt/internal/core/search/matching/ org/eclipse/jdt/internal/core/search/processing/ org/eclipse/jdt ...
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 1318 milliseconds

12