Home
last modified time | relevance | path

Searched refs:match (Results 1 – 25 of 114) sorted by relevance

12345

/l4re-core-master/uclibc/lib/contrib/uclibc/test/regex/
A Dtst-regex2.c138 int match; in do_test() local
155 if (match < 0) { in do_test()
156 printf("re_search failed (err:%d)\n", match); in do_test()
160 if (match + 13 > len) { in do_test()
165 if (match < len - 100) { in do_test()
175 "(found '%s' instead)\n", string + match); in do_test()
191 if (regs.start[0] != match || regs.end[0] != match + 13) { in do_test()
195 match, match + 13 in do_test()
215 if (regs.start[l] != match + j in do_test()
216 || regs.end[l] != match + j + 1 in do_test()
[all …]
A Dtestregex.c828 …if ((match[nmatch-1].rm_so != -1 || match[nmatch-1].rm_eo != -1) && (!(test & TEST_IGNORE_POSITION… in matchprint()
833 matchoffprint(match[i].rm_so); in matchprint()
835 matchoffprint(match[i].rm_eo); in matchprint()
897 if (m!=match[i].rm_so || n!=match[i].rm_eo) in matchcheck()
909 if (match[i].rm_so!=-1 || match[i].rm_eo!=-1) in matchcheck()
913 if ((test & TEST_IGNORE_POSITION) && (match[i].rm_so<0 || match[i].rm_eo<0)) in matchcheck()
1075 matchprint(match, nmatch, nsub, NiL, test); in extract()
1150 regmatch_t match[100]; in old_main() local
1434 if (nmatch >= elementsof(match)) in old_main()
1954 for (i = 0; i < elementsof(match); i++) in old_main()
[all …]
A Dcategorize.dat24 |E (aba|a*b)(aba|a*b) ababa (0,4)(0,3)(3,4) BUG=first-match
25 ; BUG=unknown-match
28 |B a\(b\)*\1 a (0,1) BUG=nomatch-match
30 ; BUG=nomatch-match-UNKNOWN
37 |B a\(b\)*\1 abab (0,1) # BUG=nomatch-match
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/glob/
A Dglob-susv3.c27 struct match struct
29 struct match *next; argument
37 extern void __glob_freelist(struct match *head) attribute_hidden;
83 struct match *new = malloc(sizeof(struct match) + len + 1); in __glob_append()
195 void __glob_freelist(struct match *head) in __glob_freelist()
197 struct match *match, *next; in __glob_freelist() local
198 for (match=head->next; match; match=next) { in __glob_freelist()
199 next = match->next; in __glob_freelist()
200 free(match); in __glob_freelist()
216 struct match head = { .next = NULL }, *tail = &head; in glob()
[all …]
/l4re-core-master/uclibc/lib/contrib/uclibc/extra/scripts/
A Dgetent17 match="^$2:\|^[^:]*:[^:]*:$2:" ;;
19 match="^$2:" ;;
21 match="^[[:space:]]*$2\>" ;;
23 match="\<$2\>" ;;
25 match="^[[:space:]]*$2[[:space:]]*:" ;;
42 sed "s/#.*//; /$match/q; d" "$file" | grep . || exit 2
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/arm/
A Dfind_exidx.c38 int match; in find_exidx_callback() local
45 match = 0; in find_exidx_callback()
52 match = 1; in find_exidx_callback()
61 return match; in find_exidx_callback()
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::(__\d+::)?array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
591 elif re.match('^std::(__\d+::)?tuple<.*>$', impl_type):
642 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
712 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::(__\d+::)?array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
591 elif re.match('^std::(__\d+::)?tuple<.*>$', impl_type):
642 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
712 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
A Dprinters.py1253 if not self.compiled_rx.match(name):
1288 match = self.compiled_rx.match(typename)
1289 if not match:
1292 basename = match.group(1)
1355 match = '^std::' + match + '$'
1360 match = match.replace('std::', 'std::' + _versioned_namespace)
1365 def __init__(self, match, name): argument
1366 self.match = match
1371 def __init__(self, match, name): argument
1372 self.match = match
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::(__\d+::)?array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
592 elif re.match('^std::(__\d+::)?tuple<.*>$', impl_type):
653 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
723 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::(__\d+::)?array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
592 elif re.match('^std::(__\d+::)?tuple<.*>$', impl_type):
653 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
723 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::(__\d+::)?array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
591 elif re.match('^std::(__\d+::)?tuple<.*>$', impl_type):
642 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
712 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
268 if not re.match('^std::deque<.*>$', class_type.tag):
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
392 def match(self, class_type, method_name): member in ListMethodsMatcher
507 def match(self, class_type, method_name): member in VectorMethodsMatcher
556 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
637 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
695 m = re.match('.*\[(\d+)]$', str(self._elem_type))
[all …]
A Dprinters.py951 m = re.match(rx, func.function.name)
1098 if not self.compiled_rx.match(name):
1132 match = self.compiled_rx.match(typename)
1133 if not match:
1136 basename = match.group(1)
1180 m = self.pattern.match(type_obj.tag)
1203 def __init__(self, match, name): argument
1204 self.match = match
1209 def __init__(self, match, name): argument
1210 self.match = match
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/python/libstdcxx/v6/
A Dxmethods.py150 def match(self, class_type, method_name): member in ArrayMethodsMatcher
151 if not re.match('^std::array<.*>$', class_type.tag):
267 def match(self, class_type, method_name): member in DequeMethodsMatcher
268 if not re.match('^std::deque<.*>$', class_type.tag):
311 def match(self, class_type, method_name): member in ForwardListMethodsMatcher
383 def match(self, class_type, method_name): member in ListMethodsMatcher
498 def match(self, class_type, method_name): member in VectorMethodsMatcher
499 if not re.match('^std::vector<.*>$', class_type.tag):
547 def match(self, class_type, method_name): member in AssociativeContainerMethodsMatcher
591 def match(self, class_type, method_name): member in UniquePtrMethodsMatcher
[all …]
A Dprinters.py928 m = re.match(rx, func.function.name)
1078 if not self.compiled_rx.match(name):
1112 match = self.compiled_rx.match(typename)
1113 if not match:
1116 basename = match.group(1)
1159 m = self.pattern.match(type_obj.tag)
1182 def __init__(self, match, name): argument
1183 self.match = match
1188 def __init__(self, match, name): argument
1189 self.match = match
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1858 * if there was no match or mark_count() + 1 if a match was successful.
1906 * match.
1931 * match if @p sub is zero.
1945 * start of the match.
2096 * @param lhs A match result.
2097 * @param rhs A match result.
2123 * @retval true A match exists.
2148 * @retval true A match exists.
2169 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1858 * if there was no match or mark_count() + 1 if a match was successful.
1906 * match.
1931 * match if @p sub is zero.
1945 * start of the match.
2096 * @param lhs A match result.
2097 * @param rhs A match result.
2123 * @retval true A match exists.
2148 * @retval true A match exists.
2169 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1858 * if there was no match or mark_count() + 1 if a match was successful.
1906 * match.
1931 * match if @p sub is zero.
1945 * start of the match.
2096 * @param lhs A match result.
2097 * @param rhs A match result.
2123 * @retval true A match exists.
2148 * @retval true A match exists.
2169 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1858 * if there was no match or mark_count() + 1 if a match was successful.
1906 * match.
1931 * match if @p sub is zero.
1945 * start of the match.
2096 * @param lhs A match result.
2097 * @param rhs A match result.
2123 * @retval true A match exists.
2148 * @retval true A match exists.
2169 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1855 * if there was no match or mark_count() + 1 if a match was successful.
1903 * match.
1928 * match if @p sub is zero.
1942 * start of the match.
2093 * @param lhs A match result.
2094 * @param rhs A match result.
2120 * @retval true A match exists.
2145 * @retval true A match exists.
2166 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1855 * if there was no match or mark_count() + 1 if a match was successful.
1903 * match.
1928 * match if @p sub is zero.
1942 * start of the match.
2093 * @param lhs A match result.
2094 * @param rhs A match result.
2120 * @retval true A match exists.
2145 * @retval true A match exists.
2166 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1855 * if there was no match or mark_count() + 1 if a match was successful.
1903 * match.
1928 * match if @p sub is zero.
1942 * start of the match.
2093 * @param lhs A match result.
2094 * @param rhs A match result.
2120 * @retval true A match exists.
2145 * @retval true A match exists.
2166 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/tr1/
A Dregex247 * If more than one match is possible then any match is an acceptable
1855 * if there was no match or mark_count() + 1 if a match was successful.
1903 * match.
1928 * match if @p sub is zero.
1942 * start of the match.
2093 * @param lhs A match result.
2094 * @param rhs A match result.
2120 * @retval true A match exists.
2145 * @retval true A match exists.
2166 * @param m The match results.
[all …]
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/python/libstdcxx/v6/
A Dprinters.py873 if not self.compiled_rx.match(name + '<>'):
907 match = self.compiled_rx.match(typename)
908 if not match:
911 basename = match.group(1)
926 def __init__(self, match, name): argument
927 self.match = match
932 def __init__(self, match, name): argument
933 self.match = match
942 if not self.match in type_obj.tag:
954 return self._recognizer(self.match, self.name)
[all …]

Completed in 91 milliseconds

12345