Home
last modified time | relevance | path

Searched refs:matching (Results 1 – 25 of 822) sorted by relevance

12345678910>>...33

/external/owasp/sanitizer/src/main/org/owasp/html/examples/
DEbayPolicyExample.java127 .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/
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.Match()
78 b = matching.Match()
[all …]
/external/squashfs-tools/RELEASE-READMEs/
DREADME-3.319 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/libxml2/result/schemas/
Dderivation-ok-restriction-2-1-1_0_0.err2 … : 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/easymock/src/org/easymock/internal/
DErrorMessage.java20 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/clang/test/SemaObjCXX/
Darc-templates.mm333 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 …]
Darc-overloading.mm17 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'}}
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
DCondition.java22 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/autotest/client/cros/chameleon/
Daudio_test_utils.py632 matching = [[0] * (length2 + 1)] * (length1 + 1)
639 matching[i + 1][j + 1] = max(matching[i + 1][j],
640 matching[i][j + 1])
645 matching[i + 1][j + 1] = matching[i][j] + 1
654 if matching[i][j] == matching[i - 1][j - 1] + 1:
658 elif matching[i][j] == matching[i - 1][j]:
/external/python/cpython3/Doc/distutils/
Dcommandref.rst63 | :command:`include pat1 pat2 ...` | include all files matching any of the listed |
66 | :command:`exclude pat1 pat2 ...` | exclude all files matching any of the listed |
69 | :command:`recursive-include dir pat1 pat2 | include all files under *dir* matching any of |
72 | :command:`recursive-exclude dir pat1 pat2 | exclude all files under *dir* matching any of |
76 | | matching --- & any of the listed patterns |
79 | | matching --- & any of the listed patterns |
/external/owasp/sanitizer/src/main/org/owasp/html/
DHtmlPolicyBuilder.java320 .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/
Dlibxt_hashlimit.man21 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"
Dlibxt_string.man1 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.
Dlibxt_LOG.man1 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/
Dcil_find.c41 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/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_BatchNormWithGlobalNormalization.pbtxt12 A 1D mean Tensor with size matching the last dimension of t.
20 A 1D variance Tensor with size matching the last dimension of t.
28 A 1D beta Tensor with size matching the last dimension of t.
35 A 1D gamma Tensor with size matching the last dimension of t.
Dapi_def_QuantizedBatchNormWithGlobalNormalization.pbtxt24 A 1D mean Tensor with size matching the last dimension of t.
44 A 1D variance Tensor with size matching the last dimension of t.
64 A 1D beta Tensor with size matching the last dimension of t.
83 A 1D gamma Tensor with size matching the last dimension of t.
/external/pcre/dist2/doc/
Dpcre2test.txt137 -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/tensorflow/tensorflow/core/util/
Dcommand_line_flags_test.cc249 bool matching = true; in MatchWithAnyWhitespace() local
251 for (int str_i = 0; str_i != str.size() && matching; str_i++) { in MatchWithAnyWhitespace()
253 matching = (pat_i != pat.size() && isspace(pat[pat_i])); in MatchWithAnyWhitespace()
258 matching = (pat_i != pat.size() && str[str_i] == pat[pat_i++]); in MatchWithAnyWhitespace()
264 return (matching && pat_i == pat.size()); in MatchWithAnyWhitespace()
/external/python/cpython2/Doc/distutils/
Dsourcedist.rst187 matching :file:`\*.txt`, all files anywhere under the :file:`examples` directory
188 matching :file:`\*.txt` or :file:`\*.py`, and exclude all directories matching
229 #. include anything matching :file:`\*.txt` or :file:`\*.py` in the sub-tree
232 #. exclude all files in the sub-trees starting at directories matching
254 | :command:`include pat1 pat2 ...` | include all files matching any of the listed |
257 | :command:`exclude pat1 pat2 ...` | exclude all files matching any of the listed |
260 | :command:`recursive-include dir pat1 pat2 | include all files under *dir* matching any of |
263 | :command:`recursive-exclude dir pat1 pat2 | exclude all files under *dir* matching any of |
267 | | matching --- & any of the listed patterns |
270 | | matching --- & any of the listed patterns |
/external/deqp/scripts/
Dcheck_resolution_list.py56 matching = []
59 matching.append(case)
60 return matching
/external/llvm/docs/CommandGuide/
Dllvm-extract.rst41 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/python/cpython2/Doc/library/
Drfc822.rst55 All header matching is done independent of upper or lower case; e.g.
180 Return a list of lines consisting of all headers matching *name*, if any. Each
187 Return a list of lines comprising the first header matching *name*, and its
188 continuation line(s), if any. Return ``None`` if there is no header matching
195 header matching *name*. This includes leading whitespace, the trailing
197 line(s) were present. Return ``None`` if there is no header matching *name*.
202 Return a single string consisting of the last header matching *name*,
206 matching *name*; it defaults to ``None``.
219 ``getheader(name)``. If no header matching *name* exists, return ``(None,
234 If there is no header matching *name*, return an empty list.
[all …]
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
DIsIterableContainingInAnyOrder.java23 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/swiftshader/third_party/LLVM/docs/CommandGuide/
Dllvm-extract.pod42 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.

12345678910>>...33