HomeSort by relevance Sort by last modified time
    Searched full:matched (Results 101 - 125 of 1264) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
test_expectations.py 103 matched = self._output_regex.match(error)
104 if matched:
105 lineno, message = matched.group('line', 'message')
cpp.py 188 matched = search(pattern, s)
189 if not matched:
191 start_match_index = matched.start(0)
192 end_match_index = matched.end(0)
208 # Start with the given row and trim off everything past what may be matched.
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
glob.h 54 #define GLOB_PERIOD (1 << 7)/* Leading `.' can be matched by metachars. */
92 __size_t gl_pathc; /* Count of paths matched by the pattern. */
93 char **gl_pathv; /* List of matched pathnames. */
  /external/chromium/third_party/libjingle/source/talk/session/phone/
rtpdump.cc 154 bool matched = (0 == first_line.find("#!rtpplay1.0 ")); local
159 matched &= (pos != std::string::npos && pos < first_line.size() - 1);
160 for (++pos; pos < first_line.size() && matched; ++pos) {
161 matched &= (0 != isdigit(first_line[pos]));
164 return matched;
  /ndk/sources/host-tools/sed-4.2.1/doc/
sed.1 220 If successful, replace that portion matched
227 to refer to that portion of the pattern space which matched,
262 matched will always be accepted,
272 matched.
319 Start out in "matched first address" state, until
sed.x 168 If successful, replace that portion matched
175 to refer to that portion of the pattern space which matched,
210 matched will always be accepted,
220 matched.
267 Start out in "matched first address" state, until
  /external/pcre/doc/html/
pcrepartial.html 74 have been inspected. This character need not form part of the final matched
76 inspecting characters before the start of a matched substring. The requirement
78 be matched; without such a restriction there would always be a partial match of
90 partially matched string. However, for patterns that contain lookbehind
127 If this is matched against the subject string "abc123dog", both
163 longer string if possible). If it is matched against the string "dog" with
200 string "dog" matched against the ungreedy pattern shown above:
263 The first data string is matched completely, so <b>pcretest</b> shows the
264 matched substrings. The remaining four strings do not match the complete
292 not retain the previously partially-matched string. It is up to the callin
    [all...]
pcrematching.html 46 is matched against the string
55 The set of strings that are matched by a regular expression can be represented
85 matched by portions of the pattern in parentheses. This provides support for
119 is matched against the string "the caterpillar catchment", the result will be
137 This pattern matches "aaab!" but not "aaa!", which would be matched by a
139 matched as if it were a standalone pattern at the current point, and the
190 algorithm (<b>pcre_exec()</b>), by retaining partially matched substrings, it is
pcregrep.html 57 pattern to be matched when neither <b>-e</b> nor <b>-f</b> is present.
88 output only the part of the line that matched (either shown literally, or as an
92 matched are not tried on the earlier part of the line.
174 This option specifies under what circumstances the parts of a line that matched
206 Specify a pattern to be matched. This option can be used multiple times in
213 patterns are matched first, followed by the patterns from the file, independent
220 that matched.
229 matched against the final component of the file name (not the entire path). If
238 subdirectories.) The pattern is a PCRE regular expression, and is matched
303 options. The pattern is a PCRE regular expression, and is matched against th
    [all...]
pcreposix.html 153 newlines are matched by . (they are not) or by a negative class such as [^a]
233 how it is matched.
236 If the pattern was compiled with the REG_NOSUB flag, no data about any matched
242 no data about any matched strings is returned.
245 Otherwise,the portion of the string that was matched, and also any captured
251 entire portion of <i>string</i> that was matched; subsequent elements relate to
  /external/pcre/doc/
pcrepartial.3 50 have been inspected. This character need not form part of the final matched
52 inspecting characters before the start of a matched substring. The requirement
54 be matched; without such a restriction there would always be a partial match of
64 partially matched string. However, for patterns that contain lookbehind
98 If this is matched against the subject string "abc123dog", both
133 longer string if possible). If it is matched against the string "dog" with
170 string "dog" matched against the ungreedy pattern shown above:
237 The first data string is matched completely, so \fBpcretest\fP shows the
238 matched substrings. The remaining four strings do not match the complete
267 not retain the previously partially-matched string. It is up to the callin
    [all...]
pcregrep.1 31 pattern to be matched when neither \fB-e\fP nor \fB-f\fP is present.
59 output only the part of the line that matched (either shown literally, or as an
63 matched are not tried on the earlier part of the line.
137 This option specifies under what circumstances the parts of a line that matched
165 Specify a pattern to be matched. This option can be used multiple times in
172 patterns are matched first, followed by the patterns from the file, independent
179 that matched.
187 matched against the final component of the file name (not the entire path). If
195 subdirectories.) The pattern is a PCRE regular expression, and is matched
252 options. The pattern is a PCRE regular expression, and is matched against th
    [all...]
pcregrep.txt 33 single pattern to be matched when neither -e nor -f is present. Con-
62 of the line that matched (either shown literally, or as an offset),
66 low the one that matched are not tried on the earlier part of the line.
148 line that matched a pattern should be coloured in the output.
181 Specify a pattern to be matched. This option can be used mul-
189 used with -e, the command line patterns are matched first,
198 part(s) of the line that matched.
207 matched against the final component of the file name (not the
217 The pattern is a PCRE regular expression, and is matched
282 tern is a PCRE regular expression, and is matched against th
    [all...]
pcrepattern.3 130 A regular expression is a pattern that is matched against a subject string from
137 caseless matching is specified (the PCRE_CASELESS option), letters are matched
420 accented letters, and these are then matched by \ew. The use of locales with
504 either at compile time or when the pattern is matched. (BSR is an abbrevation
555 character from one of these sets can be matched using a script name. For
790 The escape sequence \eK causes any previously matched characters not to be
791 included in the final matched sequence. For example, the pattern:
795 matches "foobar", but reports that it has matched "bar". This feature is
877 previous match. In Perl, these can be different when the previously matched
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
regex 87 * Specifies that when a regular expression is matched against a character
95 * the speed with which regular expressions are matched, and less to the
218 * The expression "\b" is not matched against the sub-sequence
224 * The expression "\b" should not be matched against the sub-sequence
264 * @li $& The matched substring.
265 * @li $` The portion of <em>string</em> that precedes the matched substring.
267 * @li $' The portion of <em>string</em> that follows the matched substring.
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 87 * Specifies that when a regular expression is matched against a character
95 * the speed with which regular expressions are matched, and less to the
218 * The expression "\b" is not matched against the sub-sequence
224 * The expression "\b" should not be matched against the sub-sequence
264 * @li $& The matched substring.
265 * @li $` The portion of <em>string</em> that precedes the matched substring.
267 * @li $' The portion of <em>string</em> that follows the matched substring.
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
regex 87 * Specifies that when a regular expression is matched against a character
95 * the speed with which regular expressions are matched, and less to the
218 * The expression "\b" is not matched against the sub-sequence
224 * The expression "\b" should not be matched against the sub-sequence
264 * @li $& The matched substring.
265 * @li $` The portion of <em>string</em> that precedes the matched substring.
267 * @li $' The portion of <em>string</em> that follows the matched substring.
    [all...]
  /external/pcre/
pcre_get.c 178 ovector the vector of matched substrings
216 subject the subject string that was matched
261 subject the subject string that was matched
298 subject the subject string that was matched
372 subject the subject string that was matched
419 subject the subject string that was matched
  /bionic/libc/regex/
engine.c 288 - dissect - figure out what matched what, no back references
296 char *sp; /* start of string matched by it */
297 char *stp; /* string matched by it cannot pass here */
302 char *ssp; /* start of string matched by subsubRE */
303 char *sep; /* end of string matched by subsubRE */
324 /* figure out what it matched */
391 break; /* failed or matched null */
425 break; /* it matched all of it */
469 - backref - figure out what matched what, figuring in back references
477 char *sp; /* start of string matched by it *
    [all...]
  /external/chromium/chrome/browser/
global_keyboard_shortcuts_mac.mm 27 // '{' / '}' characters should be matched earlier than virtual key code
98 // The given shortcut key is to be matched by a keyboard character.
106 // The given shortcut key is to be matched by a virtual key code.
  /external/kernel-headers/original/linux/
mod_devicetable.h 118 /* not matched against */
218 /* not matched against in kernelspace*/
226 /* not matched against */
  /external/llvm/lib/Support/
regengine.inc 292 - dissect - figure out what matched what, no back references
301 const char *sp; /* start of string matched by it */
302 const char *stp; /* string matched by it cannot pass here */
307 const char *ssp; /* start of string matched by subsubRE */
308 const char *sep; /* end of string matched by subsubRE */
328 /* figure out what it matched */
396 break; /* failed or matched null */
433 break; /* it matched all of it */
480 - backref - figure out what matched what, figuring in back references
488 const char *sp; /* start of string matched by it *
    [all...]
  /ndk/sources/host-tools/make-3.81/glob/
glob.h 83 #define GLOB_PERIOD (1 << 7)/* Leading `.' can be matched by metachars. */
122 __size_t gl_pathc; /* Count of paths matched by the pattern. */
123 char **gl_pathv; /* List of matched pathnames. */
  /ndk/sources/host-tools/ndk-stack/regex/
engine.c 288 - dissect - figure out what matched what, no back references
296 char *sp; /* start of string matched by it */
297 char *stp; /* string matched by it cannot pass here */
302 char *ssp; /* start of string matched by subsubRE */
303 char *sep; /* end of string matched by subsubRE */
324 /* figure out what it matched */
391 break; /* failed or matched null */
425 break; /* it matched all of it */
469 - backref - figure out what matched what, figuring in back references
477 char *sp; /* start of string matched by it *
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
RewriteRuleNodeStream.java 32 /** Queues up nodes matched on left side of -> in a tree parser. This is

Completed in 491 milliseconds

1 2 3 45 6 7 8 91011>>