/external/regex-re2/re2/testing/ |
D | backtrack.cc | 54 bool anchored, bool longest, 95 bool anchored, bool longest, in Search() argument 105 anchored_ = anchored | prog_->anchor_start(); in Search() 245 bool anchored = anchor == kAnchored; in UnsafeSearchBacktrack() local 247 if (!b.Search(text, context, anchored, longest, match, nmatch)) in UnsafeSearchBacktrack()
|
/external/regex-re2/re2/ |
D | bitstate.cc | 39 bool anchored, bool longest, 294 bool anchored, bool longest, in Search() argument 305 anchored_ = anchored || prog_->anchor_start(); in Search() 369 bool anchored = anchor == kAnchored; in SearchBitState() local 371 if (!b.Search(text, context, anchored, longest, match, nmatch)) in SearchBitState()
|
D | dfa.cc | 76 bool anchored, bool want_earliest_match, bool run_forward, 255 anchored(false), in SearchParams() 267 bool anchored; member 1654 if (params->anchored || prog_->anchor_start()) in AnalyzeSearch() 1672 params->anchored, params->run_forward, flags, in AnalyzeSearch() 1698 params->anchored ? prog_->start() : prog_->start_unanchored(), in AnalyzeSearchHelper() 1749 bool anchored, in Search() argument 1765 text.as_string().c_str(), anchored, want_earliest_match, in Search() 1771 params.anchored = anchored; in Search() 1891 bool anchored = anchor == kAnchored || anchor_start() || kind == kFullMatch; in SearchDFA() local [all …]
|
D | nfa.cc | 51 bool anchored, bool longest, 401 bool anchored, bool longest, in Search() argument 423 anchored |= prog_->anchor_start(); in Search() 455 text.as_string().c_str(), context.as_string().c_str(), anchored, in Search() 565 if (!matched_ && (!anchored || p == text.begin())) { in Search() 569 if (!anchored && first_byte_ >= 0 && runq->size() == 0 && in Search()
|
/external/squashfs-tools/RELEASE-READMEs/ |
D | README-3.3 | 23 Supports both anchored and non-anchored exclude files. 48 1.2 Non-anchored excludes 52 For this non-anchored excludes can be used, specified by pre-fixing the 81 Supports both anchored and non-anchored exclude files.
|
/external/llvm/test/Transforms/LoopVectorize/ |
D | undef-inst-bug.ll | 6 ; invariant instruction anchored in the loop when used as a getelementptr index. 24 ; Loop invariant anchored in loop.
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-05-06.data | 1 anchored: !local &anchor value
|
D | spec-05-06.canonical | 4 ? !!str "anchored"
|
/external/llvm/test/YAMLParser/ |
D | spec-05-06.test | 3 anchored: !local &anchor value
|
/external/pcre/dist/testdata/ |
D | testoutput21-32 | 61 Options: anchored extended 94 Options: anchored extended
|
D | testoutput21-16 | 49 Options: anchored extended 82 Options: anchored extended
|
D | testoutput2 | 40 Options: anchored 80 Options: anchored 344 Options: anchored 492 Options: anchored caseless 498 Options: anchored 505 Options: anchored dotall 639 Options: anchored multiline 651 Options: anchored 842 Options: anchored 1051 Options: anchored [all …]
|
D | testoutput5 | 106 Options: anchored utf 129 Options: anchored utf 507 Options: anchored utf
|
/external/mksh/src/ |
D | histrap.c | 438 bool anchored = *str == '?' ? (++str, false) : true; in hist_get() local 441 if ((n = findhist(histptr - history - 1, 0, str, anchored)) < 0) in hist_get() 505 findhist(int start, int fwd, const char *str, bool anchored) in findhist() argument 517 if ((anchored && strncmp(*hp, str, len) == 0) || in findhist() 518 (!anchored && strstr(*hp, str))) in findhist()
|
D | edit.c | 5072 bool anchored; in grabsearch() local 5080 anchored = *pat == '^' ? (++pat, true) : false; in grabsearch() 5081 if ((hist = findhist(start, fwd, pat, anchored)) < 0) { in grabsearch()
|
/external/llvm/test/CodeGen/Thumb2/ |
D | thumb2-tbh.ll | 17 ; Jump tables are not anchored next to the TBB/TBH any more. Make sure the
|
/external/squashfs-tools/ |
D | RELEASE-README | 449 In addition to wildcards/regex expressions, exclude files can be "anchored" or 450 "non-anchored". An anchored exclude is one which matches from the root of the 451 directory and nowhere else, a non-anchored exclude matches anywhere. For 452 example given the directory hierarchy "a/b/c/a/b", the anchored exclude 455 non-anchored exclude would. 477 Non-anchored excludes 481 For this non-anchored excludes can be used, specified by pre-fixing the
|
D | CHANGES | 249 added for non-anchored excludes, which means it is 253 directory (anchored excludes).
|
/external/pcre/dist/ |
D | pcre_dfa_exec.c | 3195 BOOL utf, anchored, startline, firstline; in pcre_dfa_exec() local 3271 anchored = (options & (PCRE_ANCHORED|PCRE_DFA_RESTART)) != 0 || in pcre_dfa_exec() 3387 if (!anchored) in pcre_dfa_exec() 3630 if (rc != PCRE_ERROR_NOMATCH || anchored) in pcre_dfa_exec()
|
D | PrepareRelease | 141 # forces an anchored regex. Also exclude them for small pages that have
|
D | pcre_exec.c | 6365 BOOL anchored; in pcre_exec() local 6545 anchored = ((re->options | options) & PCRE_ANCHORED) != 0; in pcre_exec() 6698 if (!anchored) in pcre_exec() 7013 if (anchored || start_match > end_subject) break; in pcre_exec()
|
D | ChangeLog | 325 36. The use of \K in a positive lookbehind assertion in a non-anchored pattern 1269 4. For a non-anchored pattern, if (*SKIP) was given with a name that did not 1391 is a non-match for a non-anchored pattern. For example, if 1610 (^a|^)+ was not marked as anchored. 1715 had alternative anchored branches, the search for a second match in a line 2012 possible starting bytes for non-anchored patterns. 2363 anchored. Updated pcretest and pcredemo to use this option. 3532 lookahead was broken if it was not anchored. PCRE was mistakenly expecting 4736 first character of an anchored pattern as "needed", thus provoking a search 4738 fail. The "needed" character is now not set for anchored patterns, unless it [all …]
|
/external/regex-re2/ |
D | ucs2.diff | 198 - if (!ucs2 && !anchored && first_byte_ >= 0 && runq->size() == 0 && 199 + if (!anchored && first_byte_ >= 0 && runq->size() == 0 &&
|
/external/pcre/dist/doc/ |
D | pcre.txt | 1862 ment for a non-anchored pattern. There is more detail about this in the 2118 If this bit is set, the pattern is forced to be "anchored", that is, it 2598 Studying a pattern is also useful for non-anchored patterns that do not 2749 a non-anchored pattern. The name of this option refers to the 8-bit 2769 set (if it were set, the pattern would be anchored), 2773 -2 is returned. For anchored patterns, -2 is returned. 2790 a non-anchored pattern. The fourth argument should point to an int 2802 set (if it were set, the pattern would be anchored), 2806 returned. For anchored patterns, 0 is returned. 2850 is no such value, -1 is returned. For anchored patterns, a last literal [all …]
|
D | pcregrep.txt | 617 Force the patterns to be anchored (each must start matching
|