HomeSort by relevance Sort by last modified time
    Searched refs:matching (Results 26 - 50 of 511) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/strings/
search.go 21 // shift the matching frame at least badCharSkip[b] until the next time
22 // the matching char could be in alignment.
25 // goodSuffixSkip[i] defines how far we can shift the matching frame given
31 // shift the matching frame to align with the next suffix chunk. For
37 // matching frame may share part of its prefix with the end of the
38 // matching suffix. In this case, goodSuffixSkip[i] will contain how far
41 // mismatch from the back is found to be in position 3, the matching
  /prebuilts/go/linux-x86/src/strings/
search.go 21 // shift the matching frame at least badCharSkip[b] until the next time
22 // the matching char could be in alignment.
25 // goodSuffixSkip[i] defines how far we can shift the matching frame given
31 // shift the matching frame to align with the next suffix chunk. For
37 // matching frame may share part of its prefix with the end of the
38 // matching suffix. In this case, goodSuffixSkip[i] will contain how far
41 // mismatch from the back is found to be in position 3, the matching
  /toolchain/binutils/binutils-2.25/binutils/
size.c 299 char **matching;
305 if (bfd_check_format_matches (abfd, bfd_object, &matching))
315 list_matching_formats (matching);
316 free (matching);
321 if (bfd_check_format_matches (abfd, bfd_core, &matching))
340 list_matching_formats (matching);
341 free (matching);
296 char **matching; local
addr2line.c 360 char **matching;
375 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
380 list_matching_formats (matching);
381 free (matching);
357 char **matching; local
coffdump.c 480 char **matching; local
539 if (! bfd_check_format_matches (abfd, bfd_object, &matching))
545 list_matching_formats (matching);
546 free (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;
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/microblaze/
reloc_sym.exp 42 regexp_test {reloc_sym.dump} "$srcdir/$subdir/reloc_sym.d" {matching disassembly}
  /build/blueprint/bootstrap/bpglob/
bpglob.go 15 // bpglob is the command line tool that checks if the list of files matching a glob has
17 // out build.ninja regenerations when non-matching files are added. See
  /build/soong/cmd/soong_env/
soong_env.go 15 // soong_glob is the command line tool that checks if the list of files matching a glob has
17 // out build.ninja regenerations when non-matching files are added. See
  /external/llvm/utils/vim/indent/
llvm.vim 7 " - On '}' align the same as the line containing the matching '{'
34 " On '}' align the same as the line containing the matching '{'
  /frameworks/base/services/core/java/com/android/server/
IntentResolver.java 147 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) {
155 if (filterEquals(cur, matching)) {
166 public ArrayList<F> findFilters(IntentFilter matching) {
167 if (matching.countDataSchemes() == 1) {
169 return collectFilters(mSchemeToFilter.get(matching.getDataScheme(0)), matching);
170 } else if (matching.countDataTypes() != 0 && matching.countActions() == 1) {
172 return collectFilters(mTypedActionToFilter.get(matching.getAction(0)), matching);
    [all...]
  /prebuilts/sdk/tools/
jack-diagnose 92 JAVA_VERSION=$("$JAVA_COMMAND" -version 2>&1 | head -1 | grep --only-matching -e \"1\\.[0-9]* | cut -c 4-)
  /external/autotest/client/cros/chameleon/
audio_test_utils.py 623 matching = [[0] * (length2 + 1)] * (length1 + 1)
624 # matching[i][j] is the maximum number of matched pairs for first i items
630 matching[i + 1][j + 1] = max(matching[i + 1][j],
631 matching[i][j + 1])
636 matching[i + 1][j + 1] = matching[i][j] + 1
643 # Maximum number is obtained by matching i-th item in list1
645 if matching[i][j] == matching[i - 1][j - 1] + 1
    [all...]
  /build/blueprint/bootstrap/
glob.go 29 // The build.ninja file needs to be regenerated any time a file matching the glob is added
32 // non-matching file is added to a traversed directory, including backup files created by
37 // is only updated when a file matching the glob is added or removed. The intermediate file
68 // matching files has changed.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
trie.go 34 // is a list of ranges with an accompanying value. Given a matching range r,
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
trie.go 34 // is a list of ranges with an accompanying value. Given a matching range r,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mep/
complex-relocs.exp 51 regexp_test {relocs.dump} "$srcdir/$subdir/relocs.d" {matching disassembly for relocs.x}
  /build/soong/cc/
sabi.go 47 // If the suffix of a filter element is *, try matching prefixes as well.
57 // Go through the filter, matching and optionally doing a prefix search for list elements.
  /external/google-breakpad/src/testing/scripts/
gmock_doctor.py 130 # Regex for matching source file path and line number in the compiler's errors.
145 """Diagnoses the given disease by pattern matching.
153 for matching regex).
281 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
283 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function for '
302 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for call to '
304 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching '
327 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
330 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function '
418 r'.*error: no matching function for call to \'ImplicitCast_\(
    [all...]
  /external/googletest/googlemock/scripts/
gmock_doctor.py 130 # Regex for matching source file path and line number in the compiler's errors.
145 """Diagnoses the given disease by pattern matching.
153 for matching regex).
285 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
287 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function for '
306 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for call to '
308 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching '
331 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
334 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function '
422 r'.*error: no matching function for call to \'ImplicitCast_\(
    [all...]
  /external/llvm/test/MC/Mips/
sort-relocation-table.s 16 # followed by a matching R_MIPS_LO16) but the rule is less strict in practice.
32 # HILO 2: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16.
42 # HILO 3: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16.
71 # HILO 4: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16.
87 # HILO 5: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16.
104 # HILO 6: R_MIPS_HI16 must be followed by a matching R_MIPS_LO16.
121 # HILO 7: 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
174 # HILO 10: R_MIPS_HI16's must have a matching R_MIPS_LO16 somewhere though.
178 # matching R_MIPS_LO16
    [all...]
  /external/v8/testing/gmock/scripts/
gmock_doctor.py 130 # Regex for matching source file path and line number in the compiler's errors.
145 """Diagnoses the given disease by pattern matching.
153 for matching regex).
285 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
287 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function for '
306 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for call to '
308 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching '
331 gcc_regex = (_GCC_FILE_LINE_RE + r'error: no matching function for '
334 clang_regex = (_CLANG_FILE_LINE_RE + r'error: no matching function '
422 r'.*error: no matching function for call to \'ImplicitCast_\(
    [all...]
  /external/iptables/
iptables-test.py 99 matching = 0
126 matching = out.find(rule_save)
127 if matching < 0:
  /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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 587 * @return a list (possibly empty but never null) of matching markers
    [all...]

Completed in 953 milliseconds

12 3 4 5 6 7 8 91011>>