Searched defs:regexp (Results 1 - 25 of 36) sorted by relevance

12

/external/snakeyaml/src/main/java/org/yaml/snakeyaml/resolver/
H A DResolverTuple.java24 private final Pattern regexp; field in class:ResolverTuple
26 public ResolverTuple(Tag tag, Pattern regexp) { argument
28 this.regexp = regexp;
36 return regexp;
41 return "Tuple tag=" + tag + " regexp=" + regexp;
H A DResolver.java76 public void addImplicitResolver(Tag tag, Pattern regexp, String first) { argument
83 curr.add(new ResolverTuple(tag, regexp));
97 curr.add(new ResolverTuple(tag, regexp));
113 Pattern regexp = v.getRegexp();
114 if (regexp.matcher(value).matches()) {
122 Pattern regexp = v.getRegexp();
123 if (regexp.matcher(value).matches()) {
/external/testng/src/test/java/test/
H A DTest1.java111 public void regexp() { method in class:Test1
H A DBaseTest.java390 * @param regexp The regular expression
392 * that matched the regexp
398 public static List<Integer> grep(File fileName, String regexp, List<String> resultLines) { argument
405 Pattern p = Pattern.compile(".*" + regexp + ".*");
/external/libxml2/doc/
H A Dlibxml-doc.el38 ;; html-functions are excluded (C-h v libxmldoc-filter-regexp)
78 ;; libxmldoc-filter-regexp is non-nil.
103 (defvar libxmldoc-filter-regexp "^html\\|^\\*\\|^[A-Z_]+"
147 (if (or symbol (null libxmldoc-filter-regexp))
150 (not (libxmldoc-string-match-cs libxmldoc-filter-regexp
161 ;; (null libxmldoc-filter-regexp))
166 ;; libxmldoc-filter-regexp
174 (defun libxmldoc-string-match-cs(regexp str)
178 (string-match regexp str)))
207 (error "regexp erro
[all...]
/external/libxml2/
H A DtestAutomata.c38 xmlRegexpPtr regexp = NULL; local
171 regexp = xmlAutomataCompile(am);
174 if (regexp == NULL) {
180 if (regexp == NULL) {
184 exec = xmlRegNewExecCtxt(regexp, NULL, NULL);
198 } else if (regexp != NULL) {
200 exec = xmlRegNewExecCtxt(regexp, NULL, NULL);
209 if (regexp != NULL)
210 xmlRegFreeRegexp(regexp);
225 xmlRegexpPtr regexp; local
[all...]
H A Drelaxng.c385 xmlRegExecCtxtPtr elem; /* the current element regexp */
388 xmlRegExecCtxtPtr *elemTab; /* the stack of regexp runtime */
393 * outside the regexp */
2852 * Compiling element content into regexp *
2854 * Sometime the element content can be compiled into a pure regexp, *
7972 * @regexp: the regular expression as compiled
7973 * @content: list of children to test against the regexp
7975 * Validate the content model of an element or start using the regexp
7981 xmlRegexpPtr regexp, xmlNodePtr content)
7988 if ((ctxt == NULL) || (regexp
7980 xmlRelaxNGValidateCompiledContent(xmlRelaxNGValidCtxtPtr ctxt, xmlRegexpPtr regexp, xmlNodePtr content) argument
[all...]
H A Dxmlregexp.c2 * regexp.c: generic and extensible Regular Expression engine
313 xmlRegexpPtr comp; /* the compiled regexp */
380 const char *regexp = NULL; local
382 regexp = (const char *) ctxt->string;
387 regexp, NULL, 0, 0,
400 const char *regexp = NULL; local
404 regexp = (const char *) ctxt->string;
410 regexp, NULL, idx, 0,
425 * Allocate a new regexp and fill it with the result from the parser
427 * Returns the new regexp o
5426 xmlRegexpPrint(FILE *output, xmlRegexpPtr regexp) argument
5466 xmlRegexpCompile(const xmlChar *regexp) argument
5568 xmlRegFreeRegexp(xmlRegexpPtr regexp) argument
[all...]
H A Dxmlschemas.c995 xmlRegExecCtxtPtr regexp; member in struct:_xmlSchemaValidCtxt
3977 if (facet->regexp != NULL)
3978 xmlRegFreeRegexp(facet->regexp);
18783 facet->regexp = xmlRegexpCompile(facet->value);
18784 if (facet->regexp == NULL) {
24396 ret = xmlRegexpExec(facetLink->facet->regexp, value);
H A Dtestapi.c33685 xmlRegExecCtxtPtr exec; /* a regexp execution context generating an error */
33754 xmlRegExecCtxtPtr exec; /* a regexp execution context */
33816 xmlRegExecCtxtPtr exec; /* a regexp execution context or NULL to indicate the end */
33864 xmlRegExecCtxtPtr exec; /* a regexp execution context or NULL to indicate the end */
34025 xmlRegexpPtr regexp; /* the compiled regexp */ local
34032 regexp = gen_xmlRegexpPtr(n_regexp, 1);
34034 xmlRegexpPrint(output, regexp);
34037 des_xmlRegexpPtr(n_regexp, regexp, 1);
[all...]
/external/v8/src/regexp/
H A Dregexp-utils.cc5 #include "src/regexp/regexp-utils.h"
10 #include "src/regexp/jsregexp.h"
69 Handle<JSReceiver> regexp,
75 Object::GetProperty(regexp, isolate->factory()->exec_string()), Object);
86 Execution::Call(isolate, exec, regexp, argc, argv.start()), Object);
96 if (!regexp->IsJSRegExp()) {
101 regexp),
112 return Execution::Call(isolate, regexp_exec, regexp, argc, argv.start());
174 Isolate* isolate, Handle<JSReceiver> regexp, Handl
68 RegExpExec(Isolate* isolate, Handle<JSReceiver> regexp, Handle<String> string, Handle<Object> exec) argument
173 SetAdvancedStringIndex( Isolate* isolate, Handle<JSReceiver> regexp, Handle<String> string, bool unicode) argument
[all...]
H A Djsregexp.cc5 #include "src/regexp/jsregexp.h"
17 #include "src/regexp/interpreter-irregexp.h"
18 #include "src/regexp/jsregexp-inl.h"
19 #include "src/regexp/regexp-macro-assembler-irregexp.h"
20 #include "src/regexp/regexp-macro-assembler-tracer.h"
21 #include "src/regexp/regexp-macro-assembler.h"
22 #include "src/regexp/regex
191 Exec(Handle<JSRegExp> regexp, Handle<String> subject, int index, Handle<RegExpMatchInfo> last_match_info) argument
232 AtomExecRaw(Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) argument
452 IrregexpPrepare(Handle<JSRegExp> regexp, Handle<String> subject) argument
475 IrregexpExecRaw(Handle<JSRegExp> regexp, Handle<String> subject, int index, int32_t* output, int output_size) argument
562 IrregexpExec( Handle<JSRegExp> regexp, Handle<String> subject, int previous_index, Handle<RegExpMatchInfo> last_match_info) argument
647 GlobalCache(Handle<JSRegExp> regexp, Handle<String> subject, Isolate* isolate) argument
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/
H A DYaml.java578 * given regexp, the corresponding tag is assigned to the scalar.
582 * @param regexp
588 public void addImplicitResolver(Tag tag, Pattern regexp, String first) { argument
589 resolver.addImplicitResolver(tag, regexp, first);
/external/libxml2/python/
H A Dtypes.c773 libxml_xmlRegexpPtrWrap(xmlRegexpPtr regexp) argument
778 printf("libxml_xmlRegexpPtrWrap: regexp = %p\n", regexp);
780 if (regexp == NULL) {
785 PyCapsule_New((void *) regexp,
/external/one-true-awk/
H A Db.c47 #define ELEAF case EMPTYRE: /* empty string in regexp */
612 /* GNU compatibility: an empty regexp matches anything */
617 np = regexp();
623 Node *regexp(void) /* top-level parse of reg expr */ function
666 np = regexp();
/external/pcre/pcrecpp/
H A Dpcrecpp_unittest.cc212 const char *regexp; member in struct:ReplaceTest
336 RE re(t->regexp, RE_Options().set_newline_mode(PCRE2_NEWLINE_CRLF)
495 // A string containing meaningful regexp characters, which is then meta-
/external/icu/icu4c/source/i18n/
H A Drematch.cpp44 // This value puts ICU's limits higher than most other regexp implementations,
86 RegexMatcher::RegexMatcher(const UnicodeString &regexp, const UnicodeString &input, argument
93 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
105 RegexMatcher::RegexMatcher(UText *regexp, UText *input, argument
112 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
122 RegexMatcher::RegexMatcher(const UnicodeString &regexp, argument
129 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
137 RegexMatcher::RegexMatcher(UText *regexp, argument
144 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
H A Duregex.cpp326 RegularExpression *regexp = (RegularExpression*)regexp2; local
328 if (validateRE(regexp, FALSE, status) == FALSE) {
332 *patLength = regexp->fPatStringLen;
334 return regexp->fPatString;
346 RegularExpression *regexp = (RegularExpression*)regexp2; local
347 return regexp->fPat->patternText(*status);
358 RegularExpression *regexp = (RegularExpression*)regexp2; local
359 if (validateRE(regexp, FALSE, status) == FALSE) {
362 int32_t flags = regexp->fPat->flags();
377 RegularExpression *regexp local
410 RegularExpression *regexp = (RegularExpression*)regexp2; local
440 RegularExpression *regexp = (RegularExpression*)regexp2; local
480 RegularExpression *regexp = (RegularExpression*)regexp2; local
497 RegularExpression *regexp = (RegularExpression*)regexp2; local
521 RegularExpression *regexp = (RegularExpression*)regexp2; local
551 RegularExpression *regexp = (RegularExpression*)regexp2; local
582 RegularExpression *regexp = (RegularExpression*)regexp2; local
605 RegularExpression *regexp = (RegularExpression*)regexp2; local
621 RegularExpression *regexp = (RegularExpression*)regexp2; local
640 RegularExpression *regexp = (RegularExpression*)regexp2; local
653 RegularExpression *regexp = (RegularExpression*)regexp2; local
671 RegularExpression *regexp = (RegularExpression*)regexp2; local
741 RegularExpression *regexp = (RegularExpression*)regexp2; local
766 RegularExpression *regexp = (RegularExpression*)regexp2; local
790 RegularExpression *regexp = (RegularExpression*)regexp2; local
814 RegularExpression *regexp = (RegularExpression*)regexp2; local
840 RegularExpression *regexp = (RegularExpression*)regexp2; local
859 RegularExpression *regexp = (RegularExpression*)regexp2; local
880 RegularExpression *regexp = (RegularExpression*)regexp2; local
902 RegularExpression *regexp = (RegularExpression*)regexp2; local
918 RegularExpression *regexp = (RegularExpression*)regexp2; local
935 RegularExpression *regexp = (RegularExpression*)regexp2; local
951 RegularExpression *regexp = (RegularExpression*)regexp2; local
968 RegularExpression *regexp = (RegularExpression*)regexp2; local
984 RegularExpression *regexp = (RegularExpression*)regexp2; local
1000 RegularExpression *regexp = (RegularExpression*)regexp2; local
1017 RegularExpression *regexp = (RegularExpression*)regexp2; local
1034 RegularExpression *regexp = (RegularExpression*)regexp2; local
1052 RegularExpression *regexp = (RegularExpression*)regexp2; local
1069 RegularExpression *regexp = (RegularExpression*)regexp2; local
1087 RegularExpression *regexp = (RegularExpression*)regexp2; local
1104 RegularExpression *regexp = (RegularExpression*)regexp2; local
1121 RegularExpression *regexp = (RegularExpression*)regexp2; local
1138 RegularExpression *regexp = (RegularExpression*)regexp2; local
1157 RegularExpression *regexp = (RegularExpression*)regexp2; local
1205 RegularExpression *regexp = (RegularExpression*)regexp2; local
1231 RegularExpression *regexp = (RegularExpression*)regexp2; local
1266 RegularExpression *regexp = (RegularExpression*)regexp2; local
1339 appendReplacement(RegularExpression *regexp, const UChar *replacementText, int32_t replacementLength, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1591 RegularExpression *regexp = (RegularExpression*)regexp2; local
1604 RegularExpression *regexp = (RegularExpression*)regexp2; local
1614 appendTail(RegularExpression *regexp, UChar **destBuf, int32_t *destCapacity, UErrorCode *status) argument
1744 RegularExpression *regexp = (RegularExpression*)regexp2; local
1756 RegularExpression *regexp = (RegularExpression*)regexp2; local
1804 split(RegularExpression *regexp, UChar *destBuf, int32_t destCapacity, int32_t *requiredCapacity, UChar *destFields[], int32_t destFieldsCapacity, UErrorCode *status) argument
1947 RegularExpression *regexp = (RegularExpression*)regexp2; local
1971 RegularExpression *regexp = (RegularExpression*)regexp2; local
[all...]
/external/libxml2/include/libxml/
H A DschemasInternals.h833 xmlRegexpPtr regexp; /* The regex for patterns */ member in struct:_xmlSchemaFacet
/external/v8/src/builtins/
H A Dbuiltins-regexp.cc5 #include "src/builtins/builtins-regexp.h"
14 #include "src/objects/regexp-match-info.h"
15 #include "src/regexp/jsregexp.h"
16 #include "src/regexp/regexp-utils.h"
28 Node* RegExpBuiltinsAssembler::FastLoadLastIndex(Node* regexp) { argument
32 return LoadObjectField(regexp, field_offset);
35 Node* RegExpBuiltinsAssembler::SlowLoadLastIndex(Node* context, Node* regexp) { argument
39 return CallStub(getproperty_callable, context, regexp, name);
42 Node* RegExpBuiltinsAssembler::LoadLastIndex(Node* context, Node* regexp, argument
50 FastStoreLastIndex(Node* regexp, Node* value) argument
57 SlowStoreLastIndex(Node* context, Node* regexp, Node* value) argument
67 StoreLastIndex(Node* context, Node* regexp, Node* value, bool is_fastpath) argument
76 ConstructNewResultFromMatchInfo( Node* const context, Node* const regexp, Node* const match_info, Node* const string) argument
224 RegExpPrototypeExecBodyWithoutResult( Node* const context, Node* const regexp, Node* const string, Label* if_didnotmatch, const bool is_fastpath) argument
352 RegExpPrototypeExecBody(Node* const context, Node* const regexp, Node* const string, const bool is_fastpath) argument
543 FlagsGetter(Node* const context, Node* const regexp, bool is_fastpath) argument
680 RegExpInitialize(Node* const context, Node* const regexp, Node* const maybe_pattern, Node* const maybe_flags) argument
832 Node* const regexp = AllocateJSObjectFromMap(initial_map); local
840 Node* const regexp = constructor_assembler.EmitFastNewObject( local
998 FastFlagGetter(Node* const regexp, JSRegExp::Flag flag) argument
1009 SlowFlagGetter(Node* const context, Node* const regexp, JSRegExp::Flag flag) argument
1061 FlagGetter(Node* const context, Node* const regexp, JSRegExp::Flag flag, bool is_fastpath) argument
1243 RegExpExec(Node* context, Node* regexp, Node* string) argument
1563 RegExpPrototypeMatchBody(Node* const context, Node* const regexp, Node* const string, const bool is_fastpath) argument
1875 RegExpPrototypeSplitBody(Node* const context, Node* const regexp, Node* const string, Node* const limit) argument
2123 Node* const regexp = Parameter(Descriptor::kReceiver); local
2211 ReplaceGlobalCallableFastPath( Node* context, Node* regexp, Node* string, Node* replace_callable) argument
2418 ReplaceSimpleStringFastPath( Node* context, Node* regexp, Node* string, Node* replace_string) argument
2521 Node* const regexp = Parameter(Descriptor::kReceiver); local
2640 Node* const regexp = Parameter(1); local
[all...]
/external/v8/src/
H A Dvalue-serializer.cc29 // Version 12: regexp and string objects share normal string encoding
674 void ValueSerializer::WriteJSRegExp(JSRegExp* regexp) { argument
676 WriteString(handle(regexp->Pattern(), isolate_));
677 WriteVarint(static_cast<uint32_t>(regexp->GetFlags()));
1431 Handle<JSRegExp> regexp; local
1435 .ToHandle(&regexp)) {
1438 AddObjectWithID(id, regexp);
1439 return regexp;
H A Dfactory.cc2644 void Factory::SetRegExpAtomData(Handle<JSRegExp> regexp, argument
2655 regexp->set_data(*store);
2659 void Factory::SetRegExpIrregexpData(Handle<JSRegExp> regexp, argument
2677 regexp->set_data(*store);
H A Dobjects.cc59 #include "src/regexp/jsregexp.h"
15984 Handle<JSRegExp> regexp = local
15987 return JSRegExp::Initialize(regexp, pattern, flags);
15992 Handle<JSRegExp> JSRegExp::Copy(Handle<JSRegExp> regexp) { argument
15993 Isolate* const isolate = regexp->GetIsolate();
15994 return Handle<JSRegExp>::cast(isolate->factory()->CopyJSObject(regexp));
16066 MaybeHandle<JSRegExp> JSRegExp::Initialize(Handle<JSRegExp> regexp, argument
16078 return Initialize(regexp, source, flags);
16083 MaybeHandle<JSRegExp> JSRegExp::Initialize(Handle<JSRegExp> regexp, argument
16085 Isolate* isolate = regexp
[all...]
/external/dnsmasq/src/
H A Ddnsmasq.h222 char *name, *replace, *regexp, *services, *flags; member in struct:naptr
/external/guice/extensions/struts2/lib/
H A Dant-1.6.5.jar ... apache/tools/ant/util/facade/ org/apache/tools/ant/util/regexp/ org/apache/tools/bzip2/ org/apache/tools/mail/ org/apache ...

Completed in 6106 milliseconds

12