/external/owasp/sanitizer/src/main/org/owasp/html/examples/ |
D | EbayPolicyExample.java | 127 .allowAttributes("id").matching(HTML_ID).globally() 128 .allowAttributes("class").matching(HTML_CLASS).globally() 129 .allowAttributes("lang").matching(Pattern.compile("[a-zA-Z]{2,20}")) 131 .allowAttributes("title").matching(HTML_TITLE).globally() 133 .allowAttributes("align").matching(ALIGN).onElements("p") 134 .allowAttributes("for").matching(HTML_ID).onElements("label") 135 .allowAttributes("color").matching(COLOR_NAME_OR_COLOR_CODE) 138 .matching(Pattern.compile("[\\w;, \\-]+")) 140 .allowAttributes("size").matching(NUMBER).onElements("font") 141 .allowAttributes("href").matching(ONSITE_OR_OFFSITE_URL) [all …]
|
/external/selinux/python/sepolgen/tests/ |
D | test_matching.py | 21 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.Match() 78 b = matching.Match() [all …]
|
/external/easymock/src/org/easymock/internal/ |
D | ErrorMessage.java | 20 private final boolean matching; field in ErrorMessage 26 public ErrorMessage(boolean matching, String message, int actualCount) { in ErrorMessage() argument 27 this.matching = matching; in ErrorMessage() 33 return matching; in isMatching() 46 if (matching) { in appendTo()
|
/external/libxml2/result/schemas/ |
D | derivation-ok-restriction-2-1-1_0_0.err | 2 … : local complex type, attribute use 'barC_1': Neither a matching attribute use, nor a matching wi… 3 … : local complex type, attribute use 'barC_2': Neither a matching attribute use, nor a matching wi… 4 … : local complex type, attribute use 'barD_1': Neither a matching attribute use, nor a matching wi… 5 … : local complex type, attribute use 'barD_2': Neither a matching attribute use, nor a matching wi… 6 …sd:6: element complexType: Schemas parser error : local complex type: A matching attribute use for…
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-3.3 | 19 1. Extended wildcard pattern matching now supported in exclude files 34 Exclude all files matching "*.gz" in the top level directory "test". 41 Using extended wildcards, negative matching is also possible. 45 Exclude all files matching "*.gz" in top level directory "test", 51 often useful to exclude a file matching anywhere in the source directories. 59 Exclude files matching "*.gz" anywhere in the source directories. 65 Exclude files matching "*.gz" inside directories called "Test" or 68 Again, using extended wildcards, negative matching is also possible. 72 Exclude all files matching "*.gz" anywhere in the source directories, 75 2. Regular expression pattern matching now supported in exclude files [all …]
|
/external/clang/test/SemaObjCXX/ |
D | arc-templates.mm | 333 take_no_yes(consumes_first<id>); // expected-error {{no matching function}} 334 take_yes_yes(consumes_first<id>); // expected-error {{no matching function}} 339 take_yes_no(consumes_rest<id>); // expected-error {{no matching function}} 341 take_yes_yes(consumes_rest<id>); // expected-error {{no matching function}} 346 take_yes_no(consumes_two); // expected-error {{no matching function}} 347 take_no_yes(consumes_two); // expected-error {{no matching function}} 362 take_no_yes(consumes_first<2>::fn<id>); // expected-error {{no matching function}} 363 take_yes_yes(consumes_first<3>::fn<id>); // expected-error {{no matching function}} 365 take_no_yes(consumes_first<5>::fn); // expected-error {{no matching function}} 366 take_yes_yes(consumes_first<6>::fn); // expected-error {{no matching function}} [all …]
|
D | arc-overloading.mm | 17 f0(wip); // expected-error{{no matching function for call to 'f0'}} 69 f3(&uip); // expected-error{{no matching function for call to 'f3'}} 129 f7(weak_id); // expected-error{{no matching function for call to 'f7'}} 130 f7(autoreleasing_id); // expected-error{{no matching function for call to 'f7'}} 131 f7(unsafe_id); // expected-error{{no matching function for call to 'f7'}} 190 f9790531(self); // expected-error {{no matching function for call to 'f9790531'}} 191 f9790531_1(self); // expected-error {{no matching function for call to 'f9790531_1'}} 192 f9790531_2(self); // expected-error {{no matching function for call to 'f9790531_2'}}
|
D | gc-attributes.mm | 12 f0(&a2); // expected-error{{no matching function}} 21 f1(&a2); // expected-error{{no matching function}}
|
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/ |
D | Condition.java | 22 public abstract boolean matching(Matcher<T> match, String message); in matching() method in Condition 25 public final boolean matching(Matcher<T> match) { return matching(match, ""); } in matching() method in Condition 47 public boolean matching(Matcher<T> matcher, String message) { in matching() method in Condition.Matched 63 @Override public boolean matching(Matcher<T> match, String message) { return false; } in matching() method in Condition.NotMatched
|
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
D | matching_unittest.py | 7 from telemetry.util import matching 36 matching.GetMostLikelyMatchedObject( 41 matching.GetMostLikelyMatchedObject( 46 matching.GetMostLikelyMatchedObject(
|
/external/autotest/client/cros/chameleon/ |
D | audio_test_utils.py | 616 matching = [[0] * (length2 + 1)] * (length1 + 1) 623 matching[i + 1][j + 1] = max(matching[i + 1][j], 624 matching[i][j + 1]) 629 matching[i + 1][j + 1] = matching[i][j] + 1 638 if matching[i][j] == matching[i - 1][j - 1] + 1: 642 elif matching[i][j] == matching[i - 1][j]:
|
/external/owasp/sanitizer/src/main/org/owasp/html/ |
D | HtmlPolicyBuilder.java | 320 .matching(AttributePolicy.REJECT_ALL_ATTRIBUTE_POLICY); in disallowAttributes() 649 public AttributeBuilder matching(AttributePolicy policy) { in matching() method in HtmlPolicyBuilder.AttributeBuilder 660 public AttributeBuilder matching(final Pattern pattern) { in matching() method in HtmlPolicyBuilder.AttributeBuilder 661 return matching(new AttributePolicy() { in matching() 675 public AttributeBuilder matching( in matching() method 677 return matching(new AttributePolicy() { in matching() 691 public AttributeBuilder matching( 693 return matching(ignoreCase, ImmutableSet.copyOf(allowedValues)); 702 public AttributeBuilder matching( 705 return matching(new AttributePolicy() {
|
/external/iptables/extensions/ |
D | libxt_hashlimit.man | 21 default is 5. When byte-based rate matching is requested, this option specifies 57 matching on source host 61 matching on source port 65 matching on subnet 70 matching bytes per second 74 matching bytes per second 75 "hosts that exceed 512kbyte/s, but permit up to 1Megabytes without matching"
|
D | libxt_string.man | 1 This modules matches a given string by using some pattern matching strategy. It requires a linux ke… 4 Select the pattern matching strategy. (bm = Boyer-Moore, kmp = Knuth-Pratt-Morris) 7 Set the offset from which it starts looking for any matching. If not passed, default is 0.
|
D | libxt_LOG.man | 1 Turn on kernel logging of matching packets. When this option is set 3 matching packets (like most IP/IPv6 header fields) via the kernel log 8 separate rules with the same matching criteria, first using target LOG
|
/external/selinux/libsepol/cil/src/ |
D | cil_find.c | 41 struct cil_list *matching; member 294 …e, struct cil_avrule *avrule, struct cil_avrule *target, struct cil_list *matching, int match_self) in cil_find_matching_avrule() argument 336 cil_list_append(matching, CIL_NODE, node); in cil_find_matching_avrule() 340 cil_list_append(matching, CIL_NODE, node); in cil_find_matching_avrule() 366 rc = cil_find_matching_avrule(node, node->data, args->target, args->matching, args->match_self); in __cil_find_matching_avrule_in_ast() 374 …ree_node *current, enum cil_flavor flavor, void *target, struct cil_list *matching, int match_self) in cil_find_matching_avrule_in_ast() argument 381 args.matching = matching; in cil_find_matching_avrule_in_ast()
|
/external/deqp/scripts/ |
D | check_resolution_list.py | 56 matching = [] 59 matching.append(case) 60 return matching
|
/external/llvm/docs/CommandGuide/ |
D | llvm-extract.rst | 41 Extract the function(s) matching *function-regular-expr* from the LLVM bitcode. 42 All functions matching the regular expression will be extracted. May be 52 Extract the global variable(s) matching *global-regular-expr* from the LLVM 53 bitcode. All global variables matching the regular expression will be
|
/external/clang/utils/ |
D | find-unused-diagnostics.sh | 8 ALL_DIAGS=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' ./include/clang/… 12 DIAGS_IN_SOURCES=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' $ALL_SOUR…
|
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/ |
D | IsIterableContainingInAnyOrder.java | 23 final Matching<T> matching = new Matching<T>(matchers, mismatchDescription); in matchesSafely() local 25 if (! matching.matches(item)) { in matchesSafely() 30 return matching.isFinished(items); in matchesSafely()
|
/external/pcre/dist2/doc/ |
D | pcre2test.txt | 137 -dfa Behave as if each subject line has the dfa modifier; matching 177 -tm This is like -t except that it times only the matching phase, 446 line is treated as a comment line, and is not used for matching. For 656 greatly speed up pattern matching. See the pcre2jit documentation for 670 1 compile JIT code for non-partial matching 671 2 compile JIT code for soft partial matching 672 4 compile JIT code for hard partial matching 677 1 normal matching only 678 2 soft partial matching only 679 3 normal and soft partial matching [all …]
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | llvm-extract.pod | 42 Extract the function(s) matching I<function-regular-expr> from the LLVM bitcode. 43 All functions matching the regular expression will be extracted. May be 53 Extract the global variable(s) matching I<global-regular-expr> from the LLVM 54 bitcode. All global variables matching the regular expression will be extracted.
|
/external/pcre/dist2/testdata/ |
D | testinput14 | 1 # These test special (mostly error) UTF features of DFA matching. They are a 2 # selection of the more comprehensive tests that are run for non-DFA matching.
|
/external/llvm/test/MC/Mips/ |
D | sort-relocation-table.s | 104 # HILO 6: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16. 158 # HILO 9: R_MIPS_HI16's don't need a matching R_MIPS_LO16 to immediately follow 285 # GOTLO 6: R_MIPS_GOT16 must be followed by a matching R_MIPS_LO16. 339 # GOTLO 9: R_MIPS_GOT16's don't need a matching R_MIPS_LO16 to immediately
|
/external/libchrome/base/memory/ |
D | weak_ptr_unittest.nc | 54 #elif defined(NCTEST_STATIC_ASWEAKPTR_DOWNCAST) // [r"no matching function"] 69 #elif defined(NCTEST_UNSAFE_INSTANTIATED_HELPER_DOWNCAST) // [r"no matching function"] 90 #elif defined(NCTEST_UNSAFE_INSTANTIATED_HELPER_SIDECAST) // [r"fatal error: no matching function … 111 #elif defined(NCTEST_UNRELATED_INSTANTIATED_HELPER) // [r"no matching function"]
|