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

1 2 3 4 5 6 7

  /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/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/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/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;
  /toolchain/binutils/binutils-2.27/binutils/
coffdump.c 482 char **matching; local
542 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
548 list_matching_formats (matching);
549 free (matching);
addr2line.c 368 char **matching;
383 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
388 list_matching_formats (matching);
389 free (matching);
365 char **matching; local
size.c 300 char **matching;
306 if (bfd_check_format_matches (abfd, bfd_object, &matching))
316 list_matching_formats (matching);
317 free (matching);
322 if (bfd_check_format_matches (abfd, bfd_core, &matching))
341 list_matching_formats (matching);
342 free (matching);
297 char **matching; local
rescoff.c 117 char **matching;
130 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
134 list_matching_formats (matching);
116 char **matching; local
ar.c 317 fprintf (s, _(" [P] - use full path names when matching\n"));
868 char **matching;
933 if (! bfd_check_format_matches (arch, bfd_archive, &matching))
938 list_matching_formats (matching);
939 free (matching);
865 char **matching; local
    [all...]
  /external/tensorflow/tensorflow/core/util/
command_line_flags_test.cc 249 bool matching = true; local
251 for (int str_i = 0; str_i != str.size() && matching; str_i++) {
253 matching = (pat_i != pat.size() && isspace(pat[pat_i]));
258 matching = (pat_i != pat.size() && str[str_i] == pat[pat_i++]);
264 return (matching && pat_i == pat.size());
  /hardware/google/av/codec2/vndk/util/
C2ParamUtils.cpp 142 size_t matching = countMatching( local
145 prefix.resize(matching);
  /platform_testing/libraries/app-helpers/core/src/android/platform/helpers/
HelperManager.java 168 * @param prefix a prefix for matching the helper implementation, if multiple exist
174 List<T> matching = new ArrayList<>(); local
177 Log.i(LOG_TAG, "Found matching implementation: "
179 matching.add(implementation);
183 if (!matching.isEmpty()) {
184 T result = matching.get(0);
223 Log.w(LOG_TAG, String.format("Failed to find a matching constructor for %s",
  /external/perfetto/tools/trace_to_text/
main.cc 371 char matching[2048]; local
375 sprintf(matching,
379 sprintf(matching, "Thread ids with process info: %zu/%zu -> %zu %%\n\n",
382 *output << std::string(matching);
  /external/selinux/libsepol/cil/src/
cil_find.c 41 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)
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)
381 args.matching = matching;
  /external/wpa_supplicant_8/src/utils/
trace.c 73 char **matching; local
87 if (!bfd_check_format_matches(abfd, bfd_object, &matching)) {
89 free(matching);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
Sources.java 252 final ArrayList<Account> matching = Lists.newArrayList(); local
261 matching.add(account);
264 return matching;
268 * Find the best {@link DataKind} matching the requested
278 // Try finding source and kind matching request
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
DirectoryScanner.java 113 * Action#NOTIFY notify} for matching files.
283 // matching file.
336 // Deletes a matching file.
352 // Notifies of a matching file.
402 private volatile long matching=0; field in class:DirectoryScanner.ScanTask
419 return info+" - ["+scanned+" scanned, "+matching+" matching]";
460 task.matching++;
470 // Gets matching files and directories
474 // Adds all matching file to the list
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
DirectoryScanner.java 113 * Action#NOTIFY notify} for matching files.
283 // matching file.
336 // Deletes a matching file.
352 // Notifies of a matching file.
402 private volatile long matching=0; field in class:DirectoryScanner.ScanTask
419 return info+" - ["+scanned+" scanned, "+matching+" matching]";
460 task.matching++;
470 // Gets matching files and directories
474 // Adds all matching file to the list
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlPolicyBuilder.java 320 .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
    [all...]
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 65 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 the specifie
    [all...]
  /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...]
  /external/flac/libFLAC/
metadata_object.c 1420 unsigned matching = 0; local
    [all...]
  /external/libcups/cups/
dest-options.c 967 * The "media" string is a PWG media name. "Flags" provides some matching
977 * The matching result (if any) is returned in the "cups_size_t" structure.
990 unsigned flags, /* I - Media matching flags */
1040 * "Flags" provides some matching guidance (multiple flags can be combined):
1049 * The matching result (if any) is returned in the "cups_size_t" structure.
1065 unsigned flags, /* I - Media matching flags */
1227 * Fall back to the first matching media size...
2094 cups_option_t *matching; \/* Matching options *\/ local
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/leakcanary/leakcanary-watcher/1.4/
leakcanary-watcher-1.4.jar 
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
Difference.java 214 private static boolean matching(CsmElement a, CsmElement b) { method in class:Difference
296 // For performance reasons we use the positions of matching children
367 } else if (matching(nextOriginal, nextAfter)) {
706 && matching(ne, pe)) {
    [all...]

Completed in 540 milliseconds

1 2 3 4 5 6 7