HomeSort by relevance Sort by last modified time
    Searched refs:matching (Results 1 - 25 of 607) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/easymock/src/org/easymock/internal/
ErrorMessage.java 20 private final boolean matching; field in class:ErrorMessage
26 public ErrorMessage(boolean matching, String message, int actualCount) {
27 this.matching = matching;
33 return matching;
46 if (matching) {
  /external/selinux/libsepol/cil/src/
cil_find.h 37 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);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
locall1.s 1 % Get rid of labels that look compiler-generated, matching: "L.*:[0-9]+".
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
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...]
SlashdotPolicyExample.java 77 .allowAttributes("lang").matching(Pattern.compile("[a-zA-Z]{2,20}"))
81 .matching(true, "center", "left", "right", "justify", "char")
  /external/selinux/python/sepolgen/tests/
test_matching.py 21 import sepolgen.matching as matching
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(
    [all...]
  /external/clang/utils/
find-unused-diagnostics.sh 8 ALL_DIAGS=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' ./include/clang/Basic/Diagnostic*.td)
12 DIAGS_IN_SOURCES=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' $ALL_SOURCES)
  /toolchain/binutils/binutils-2.27/gold/testsuite/
arm_fix_v4bx.s 4 # Align this to 256-byte boundary for easier address matching.
17 # Align this to 256-byte boundary for easier address matching.
arm_cortex_a8_b.s 32 # Align stub table for address matching.
arm_cortex_a8_b_cond.s 32 # Align stub table for address matching.
arm_cortex_a8_bl.s 32 # Align stub table for address matching.
arm_cortex_a8_local.s 31 # Align stub table for address matching.
arm_cortex_a8_blx.s 36 # Align stub table for address matching.
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 22 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
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlSanitizer.java 191 .allowAttributes("dir").matching(true, "ltr", "rtl").globally()
197 .allowAttributes("href").matching(A_HREF_PROTOCOLS).onElements("a")
203 .allowAttributes("href").matching(URL_PROTOCOLS).onElements("area")
208 .allowAttributes("href").matching(URL_PROTOCOLS).onElements("base")
265 .allowAttributes("src").matching(IMG_SRC_PROTOCOLS).onElements("img")
266 .allowAttributes("longdesc").matching(URL_PROTOCOLS).onElements("img")
271 .allowAttributes("src").matching(URL_PROTOCOLS).onElements("input")
272 .allowAttributes("formaction").matching(URL_PROTOCOLS).onElements("input")
280 .allowAttributes("cite").matching(URL_PROTOCOLS).onElements("ins")
294 .allowAttributes("icon").matching(URL_PROTOCOLS).onElements("menuitem"
    [all...]
  /external/deqp/scripts/
check_resolution_list.py 56 matching = []
59 matching.append(case)
60 return matching
  /external/linux-kselftest/tools/testing/selftests/rcutorture/bin/
functions.sh 38 echo $1 needs argument $2 matching \"$5\"
  /packages/apps/DocumentsUI/src/com/android/documentsui/roots/
ProvidersAccess.java 69 final List<RootInfo> matching = new ArrayList<>(); local
133 matching.add(root);
136 if (DEBUG) Log.d(tag, "Matched roots: " + matching);
137 return matching;
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue13684.go 7 // Verify that a label name matching a constant name
  /prebuilts/go/linux-x86/test/fixedbugs/
issue13684.go 7 // Verify that a label name matching a constant name
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
bundle-bad.l 10 [^:]*:39:.*\.bundle_lock with no matching \.bundle_unlock
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsIterableContainingInAnyOrder.java 23 final Matching<T> matching = new Matching<T>(matchers, mismatchDescription); local
25 if (! matching.matches(item)) {
30 return matching.isFinished(items);
40 private static class Matching<S> {
44 public Matching(Collection<Matcher<? super S>> matchers, Description mismatchDescription) {
  /external/owasp/sanitizer/src/main/org/owasp/html/
Sanitizers.java 106 .allowAttributes("border", "height", "width").matching(INTEGER)
  /hardware/interfaces/camera/provider/
README.md 28 First HIDL version of the camera provider HAL, closely matching the feature set
36 matching the feature set and operation of the pre-HIDL camera HAL module
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
ModelClass.java 255 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>(); local
260 matching.add(method);
263 return matching.toArray(new ModelMethod[matching.size()]);
275 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>(); local
280 matching.add(method);
283 return matching.toArray(new ModelMethod[matching.size()]);
289 * will be returned. If no matching method was found, null is returned.
532 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>() local
    [all...]

Completed in 1517 milliseconds

1 2 3 4 5 6 7 8 91011>>