HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 451 - 475 of 2257) sorted by null

<<11121314151617181920>>

  /external/ltrace/testsuite/ltrace.torture/
signals.exp 33 regexp {define LOOP.*([0-9]+)} $line match count
  /external/markdown/markdown/extensions/
meta.py 69 m1 = META_RE.match(line)
74 m2 = META_MORE_RE.match(line)
  /external/markdown/markdown/
treeprocessors.py 213 match = pattern.getCompiledRegExp().match(data[startIndex:])
216 if not match:
219 node = pattern.handleMatch(match)
222 return data, True, len(leftData) + match.span(len(match.groups()))[0]
239 match.group(1),
240 placeholder, match.groups()[-1]), True, 0
inlinepatterns.py 12 pattern.handleMatch(m) # takes a match object and returns
106 def attributeCallback(match):
107 parent.set(match.group(1), match.group(2).replace('\n', ' '))
141 """Return a ElementTree element from the given match.
147 * m: A re match object containing a match of the pattern.
224 """ Return a link element from the given match. """
276 """ Return a img element from the given match. """
299 """ Match to a stored reference and return link element. ""
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
ContactParser.java 63 this.lexer.match('*');
75 this.lexer.match(',');
RAckParser.java 85 this.lexer.match(TokenTypes.ID);
93 this.lexer.match('\n');
TimeStampParser.java 81 this.lexer.match('.');
106 this.lexer.match('.');
  /external/nist-sip/java/gov/nist/javax/sip/parser/ims/
PAssertedIdentityParser.java 87 this.lexer.match(',');
97 this.lexer.match('\n');
PMediaAuthorizationParser.java 90 this.lexer.match(TokenTypes.ID);
102 this.lexer.match(',');
PServedUserParser.java 59 this.lexer.match(TokenTypes.P_SERVED_USER);
61 this.lexer.match(':');
  /external/oprofile/libregex/
op_regex.h 4 * lightweight wrapper around libc regex, providing match
77 * Return true if too many match occur and replacing has been stopped
95 regmatch_t const * match) const;
103 // return the match of throw if idx is invalid
104 regmatch_t const & get_match(regmatch_t const * match, char idx) const;
108 // Note than you can use grouping match operator > 9 only in the
109 // replace rule not in match regular expression since POSIX don't allow
  /external/oprofile/libutil++/
comma_list.h 33 * match anything.
45 * return true if value match one the stored value in items
47 bool match(T const & value) const;
85 bool comma_list<T>::match(T const & value) const function in class:comma_list
  /external/oprofile/
opimport_pull 104 match = pattern.search(line)
105 leading_dir = match.group(1)
106 middle_part = match.group(2)
107 file_name = match.group(3)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
SearchConfig.js 76 var queryParts = this._query.match(regexp) || [];
119 if (!!filePath.match(this._fileRegexQueries[i].regex) === this._fileRegexQueries[i].isNegative)
149 var match = query.match(/^(-)?file:/);
150 if (!match)
152 var isNegative = !!match[1];
153 query = query.substr(match[0].length);
  /external/chromium_org/third_party/icu/source/i18n/
tznames.cpp 397 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
398 if (match) {
399 return match->nameType;
406 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
407 if (match) {
408 return match->matchLength;
416 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
417 if (match && match->isTZID) {
418 tzID.setTo(match->id)
427 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
    [all...]
  /external/icu/icu4c/source/i18n/
tznames.cpp 397 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
398 if (match) {
399 return match->nameType;
406 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
407 if (match) {
408 return match->matchLength;
416 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
417 if (match && match->isTZID) {
418 tzID.setTo(match->id)
427 const MatchInfo* match = (const MatchInfo*)fMatches->elementAt(idx); local
    [all...]
  /external/chromium_org/sandbox/win/src/
policy_engine_opcodes.h 76 OP_NUMBER_MATCH, // Match a 32-bit integer as n == a.
77 OP_ULONG_MATCH_RANGE, // Match an ulong integer as a <= n <= b.
78 OP_ULONG_AND_MATCH, // Match using bitwise AND; as in: n & a != 0.
79 OP_WSTRING_MATCH, // Match a string for equality.
105 // from the last character position from the current opcode. The match
147 // match: The match context that is persisted across the opcode evaluation
150 MatchContext* match);
218 MatchContext* match);
228 EXACT_LENGHT = 2 // Don't do substring match. Do full string match
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.cc 163 // extension to match the last group of the subscriber number. Note the
244 // Pattern to check that brackets match. Opening brackets should be closed
250 // is found, continues to match all characters that are not typically used to
407 PhoneNumberMatch* match) {
408 DCHECK(match);
456 match->set_start(offset);
457 match->set_raw_string(candidate);
465 match->set_number(number);
524 PhoneNumberMatch* match) {
525 DCHECK(match);
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
chrome_scaled_image.py 95 match = self.split_context_re_.match(output_context)
96 if not match:
100 req_layout, req_scale = match.group(1), int(match.group(2))
rc.py 50 def Replace(match):
51 return _ESCAPE_CHARS[match.group()]
57 def Replace(match):
58 return _UNESCAPE_CHARS[match.group()]
80 if out or first_line_re.match(line):
120 # more than one description per regular expression match.
189 # Match the MENU ID on the first line
192 # Match the translateable caption for a popup menu
195 # Match the caption & ID of a MENUITEM
253 # Match the ID on the first lin
    [all...]
  /external/chromium_org/tools/metrics/histograms/
update_histogram_enum.py 54 if END_REGEX.match(line):
58 m = ITEM_REGEX_WITH_INIT.match(line)
63 m = ITEM_REGEX.match(line)
71 if START_REGEX.match(line):
123 SOURCE_COMMENT_REGEX.match(child.data) is None):
  /external/iptables/extensions/
libxt_devgroup.c 15 "devgroup match options:\n"
16 "[!] --src-group value[/mask] Match device group of incoming device\n"
17 "[!] --dst-group value[/mask] Match device group of outgoing device\n"
37 static void devgroup_init(struct xt_entry_match *match)
131 static void devgroup_print(const void *ip, const struct xt_entry_match *match,
134 const struct xt_devgroup_info *info = (const void *)match->data;
139 static void devgroup_save(const void *ip, const struct xt_entry_match *match)
141 const struct xt_devgroup_info *info = (const void *)match->data;
150 "devgroup match: You must specify either "
  /external/lldb/examples/python/
jump.py 23 mo = re.match("^([0-9]+)$", linespec)
35 mo = re.match("^\+([0-9]+)$", linespec)
47 mo = re.match("^\-([0-9]+)$", linespec)
59 mo = re.match("^(.*):([0-9]+)$", linespec)
68 mo = re.match("\*((0x)?([0-9a-f]+))$", linespec)
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangDumpDecl.m 144 [self match:input TokenType:DECL Follow:FOLLOW_DECL_in_decl45];
146 [self match:input TokenType:DOWN Follow:nil];
163 [self match:input TokenType:UP Follow:nil];
200 [self match:input TokenType:INTTYPE Follow:FOLLOW_INTTYPE_in_type81];
237 [self match:input TokenType:ID Follow:FOLLOW_ID_in_declarator95];
  /external/chromium_org/cc/
PRESUBMIT.py 123 match = re.search(
127 if match:
130 (f.LocalPath(), match.group('type'))))
150 match = re.search(r"(?<!\\)(?P<quote>\")", contents[pos:])
151 return -1 if not match else match.start("quote") + pos
199 if re.match(w, contents[next:]):
215 match = re.search(r'namespace\s*cc\s*{', contents)
216 if match:
220 if FindNamespaceInBlock(match.end(), 'cc', contents, whitelist=whitelist)
    [all...]

Completed in 1108 milliseconds

<<11121314151617181920>>