Home
last modified time | relevance | path

Searched refs:regexp (Results 51 - 75 of 1286) sorted by relevance

12345678910>>...52

/third_party/node/deps/npm/node_modules/debug/src/
H A Dcommon.js235 * Convert regexp to namespace
241 function toNamespace(regexp) {
242 return regexp.toString()
243 .substring(2, regexp.toString().length - 2)
/third_party/node/deps/v8/src/regexp/
H A Dregexp-macro-assembler.cc5 #include "src/regexp/regexp-macro-assembler.h"
12 #include "src/regexp/regexp-stack.h"
13 #include "src/regexp/special-case.h"
120 // of whether the regexp IsUnicode or not; translate the marker value here. in MaskEndOfRangeMarker()
354 // code cannot be used, and we need to restart regexp matching from in CheckStackGuardState()
368 int NativeRegExpMacroAssembler::Match(Handle<JSRegExp> regexp, in Match() argument
377 // No allocations before calling the regexp, but we can't use in Match()
412 offsets_vector_length, isolate, *regexp); in Match()
416 ExecuteForTesting( String input, int start_offset, const byte* input_start, const byte* input_end, int* output, int output_size, Isolate* isolate, JSRegExp regexp) ExecuteForTesting() argument
428 Execute( String input, int start_offset, const byte* input_start, const byte* input_end, int* output, int output_size, Isolate* isolate, JSRegExp regexp) Execute() argument
[all...]
H A Dregexp-macro-assembler.h9 #include "src/regexp/regexp-ast.h"
10 #include "src/regexp/regexp.h"
154 // Return whether the matching (with a global regexp) will be restarted.
242 // a failure in a global regexp may still mean success overall.
282 // FALLBACK_TO_EXPERIMENTAL: Execute the regexp on this subject using the
298 static int Match(Handle<JSRegExp> regexp, Handle<String> subject,
307 JSRegExp regexp);
350 Isolate* isolate, JSRegExp regexp);
[all...]
H A Dregexp-interpreter.cc7 #include "src/regexp/regexp-interpreter.h"
13 #include "src/objects/js-regexp-inl.h"
15 #include "src/regexp/regexp-bytecodes.h"
16 #include "src/regexp/regexp-macro-assembler.h"
17 #include "src/regexp/regexp-stack.h" // For kMaximumStackSize.
18 #include "src/regexp/regex
1056 Match( Isolate* isolate, JSRegExp regexp, String subject_string, int* output_registers, int output_register_count, int start_position, RegExp::CallOrigin call_origin) Match() argument
1119 MatchForCallFromJs( Address subject, int32_t start_position, Address, Address, int* output_registers, int32_t output_register_count, RegExp::CallOrigin call_origin, Isolate* isolate, Address regexp) MatchForCallFromJs() argument
1147 MatchForCallFromRuntime( Isolate* isolate, Handle<JSRegExp> regexp, Handle<String> subject_string, int* output_registers, int output_register_count, int start_position) MatchForCallFromRuntime() argument
[all...]
/third_party/node/lib/
H A Dassert.js995 function internalMatch(string, regexp, message, fn) {
996 if (!isRegExp(regexp)) {
998 'regexp', 'RegExp', regexp,
1003 RegExpPrototypeExec(regexp, string) !== null !== match) {
1017 `${inspect(regexp)}. Input:\n\n${inspect(string)}\n`);
1020 expected: regexp,
1033 * @param {RegExp} regexp
1037 assert.match = function match(string, regexp, message) {
1038 internalMatch(string, regexp, messag
[all...]
/third_party/node/deps/cares/src/lib/
H A Dares_parse_naptr_reply.c108 naptr_curr->regexp = (unsigned char *)ares_strdup( in ares_parse_naptr_reply()
110 if (naptr_curr->regexp == NULL) { in ares_parse_naptr_reply()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DListFormatter.java466 // A contextual handler returns one of the two patterns depending on whether the text matched the regexp.
468 ContextualHandler(Pattern regexp, String thenTwo, String elseTwo, String thenEnd, String elseEnd) { in ContextualHandler() argument
469 this.regexp = regexp; in ContextualHandler()
478 if(regexp.matcher(text).matches()) { in getTwoPattern()
487 if(regexp.matcher(text).matches()) { in getEndPattern()
494 private final Pattern regexp; field in ListFormatter.ContextualHandler
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DListFormatter.java539 // A contextual handler returns one of the two patterns depending on whether the text matched the regexp.
541 ContextualHandler(Pattern regexp, String thenTwo, String elseTwo, String thenEnd, String elseEnd) { in ContextualHandler() argument
542 this.regexp = regexp; in ContextualHandler()
551 if(regexp.matcher(text).matches()) { in getTwoPattern()
560 if(regexp.matcher(text).matches()) { in getEndPattern()
567 private final Pattern regexp; field in ListFormatter.ContextualHandler
/third_party/skia/third_party/externals/tint/tools/src/cmd/fix-tests/
H A Dmain.go26 "regexp"
145 reTests = regexp.MustCompile(`TEST(?:_[FP])?\([ \n]*(\w+),[ \n]*(\w+)\)`)
147 reExpectEq = regexp.MustCompile(`([./\\\w_\-:]*):(\d+).*\nExpected equality of these values:\n(?:.|\n)*?(?:Which is: | )"((?:.|\n)*?[^\\])"\n(?:.|\n)*?(?:Which is: | )"((?:.|\n)*?[^\\])"`)
149 reExpectHasSubstr = regexp.MustCompile(`([./\\\w_\-:]*):(\d+).*\nValue of: .*\nExpected: has substring "((?:.|\n)*?[^\\])"\n Actual: "((?:.|\n)*?[^\\])"`)
/third_party/icu/icu4c/source/i18n/unicode/
H A Dregex.h336 * The matcher will retain a reference to the supplied input string, and all regexp
670 * @param regexp The Regular Expression to be compiled.
675 RegexMatcher(const UnicodeString &regexp, uint32_t flags, UErrorCode &status);
685 * @param regexp The regular expression to be compiled.
691 RegexMatcher(UText *regexp, uint32_t flags, UErrorCode &status);
701 * The matcher will retain a reference to the supplied input string, and all regexp
706 * @param regexp The Regular Expression to be compiled.
713 RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
724 * The matcher will make a shallow clone of the supplied input text, and all regexp
729 * @param regexp Th
[all...]
/third_party/node/deps/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/
H A Dsigstore_common.js476 identity: isSet(object.regexp)
477 ? { $case: "regexp", regexp: String(object.regexp) }
486 message.identity?.$case === "regexp" && (obj.regexp = message.identity?.regexp);
/third_party/node/deps/icu-small/source/i18n/unicode/
H A Dregex.h336 * The matcher will retain a reference to the supplied input string, and all regexp
670 * @param regexp The Regular Expression to be compiled.
675 RegexMatcher(const UnicodeString &regexp, uint32_t flags, UErrorCode &status);
685 * @param regexp The regular expression to be compiled.
691 RegexMatcher(UText *regexp, uint32_t flags, UErrorCode &status);
701 * The matcher will retain a reference to the supplied input string, and all regexp
706 * @param regexp The Regular Expression to be compiled.
713 RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
724 * The matcher will make a shallow clone of the supplied input text, and all regexp
729 * @param regexp Th
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dregex.h336 * The matcher will retain a reference to the supplied input string, and all regexp
670 * @param regexp The Regular Expression to be compiled.
675 RegexMatcher(const UnicodeString &regexp, uint32_t flags, UErrorCode &status);
685 * @param regexp The regular expression to be compiled.
691 RegexMatcher(UText *regexp, uint32_t flags, UErrorCode &status);
701 * The matcher will retain a reference to the supplied input string, and all regexp
706 * @param regexp The Regular Expression to be compiled.
713 RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
724 * The matcher will make a shallow clone of the supplied input text, and all regexp
729 * @param regexp Th
[all...]
/third_party/libphonenumber/cpp/src/phonenumbers/
H A Dregexp_adapter_re2.cc61 const RE2& regexp, in DispatchRE2Call()
73 return regex_function(input, regexp, args, argc); in DispatchRE2Call()
59 DispatchRE2Call(Function regex_function, Input input, const RE2& regexp, string* out1, string* out2, string* out3, string* out4, string* out5, string* out6) DispatchRE2Call() argument
/third_party/skia/third_party/externals/swiftshader/third_party/marl/tools/bench/
H A Dbench.go22 "regexp"
37 var testVarRE = regexp.MustCompile(`([\w])+:([0-9]+)`)
81 var consoleLineRE = regexp.MustCompile(`([\w/:]+)\s+([0-9]+(?:.[0-9]+)?) ns\s+[0-9]+(?:.[0-9]+) ns\s+([0-9]+)`)
/third_party/skia/third_party/externals/tint/tools/src/cmd/gerrit-stats/
H A Dmain.go23 "regexp"
101 ignorelist := []*regexp.Regexp{
102 regexp.MustCompile("Revert .*"),
/third_party/node/deps/v8/infra/testing/
H A DPRESUBMIT.py172 def file_filter(regexp):
173 return lambda f: input_api.FilterSourceFile(f, files_to_check=(regexp,))
/third_party/skia/third_party/externals/tint/tools/src/cmd/get-test-plan/
H A Dmain.go41 "regexp"
655 reCleanUpString = regexp.MustCompile(`\n(\n|\s|\t)+|(\s|\t)+\n`)
656 reSpacePlusTwo = regexp.MustCompile(`\t|\s{2,}`)
657 reBeginOrEndWithSpace = regexp.MustCompile(`^\s|\s$`)
658 reIrregularWhiteSpace = regexp.MustCompile(`ยง.`)
686 reCleanUpStartEnd = regexp.MustCompile(`^\s+|\s+$|^\t+|\t+$|^\n+|\n+$`)
703 reName = regexp.MustCompile(`[^a-zA-Z0-9_]`)
704 reUnderScore = regexp.MustCompile(`[_]+`)
705 reDoNotBegin = regexp.MustCompile(`^[0-9_]+|[_]$`)
742 match, _ := regexp
[all...]
/third_party/libabigail/include/
H A Dabg-suppression.h77 set_file_name_regex_str(const string& regexp);
83 set_file_name_not_regex_str(const string& regexp);
92 set_soname_regex_str(const string& regexp);
98 set_soname_not_regex_str(const string& regexp);
/third_party/node/test/parallel/
H A Dtest-net-connect-options-port.js206 const regexp = /^Error: connect E\w+.+$/;
207 assert.match(String(err), regexp);
/third_party/node/deps/v8/src/objects/
H A Djs-regexp.h8 #include "include/v8-regexp.h"
11 #include "src/regexp/regexp-flags.h"
20 #include "torque-generated/src/objects/js-regexp-tq.inc"
26 // - tag : type of regexp implementation (not compiled yet, atom or irregexp)
29 // If it is an atom regexp
31 // If it is an irregexp regexp:
33 // used for tracking the last usage (used for regexp code flushing).
35 // used for tracking the last usage (used for regexp code flushing).
37 // - number of capture registers (output values) of the regexp
[all...]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
H A Decma-builtin-helpers.c526 ecma_value_t regexp = ecma_op_is_regexp (arg1); in ecma_builtin_helper_string_prototype_object_index_of() local
528 if (ECMA_IS_VALUE_ERROR (regexp)) in ecma_builtin_helper_string_prototype_object_index_of()
530 return regexp; in ecma_builtin_helper_string_prototype_object_index_of()
533 if (regexp == ECMA_VALUE_TRUE) in ecma_builtin_helper_string_prototype_object_index_of()
/third_party/node/deps/v8/tools/
H A Dcallstats.py100 if ('regexp' in item) { return url.match(item.regexp) !== null };
364 for group_name, regexp in groups:
393 for group_name, regexp in groups:
416 for group_name, regexp in groups:
417 if not regexp.match(key): continue
423 for group_name, regexp in groups:
H A Dlocs.py209 self.regexp = re.compile(regexp_string)
212 if (self.regexp.match(unit.file)):
271 if group.regexp.match(filename):
/third_party/node/lib/internal/per_context/
H A Dprimordials.js726 * @param {RegExp} regexp
729 primordials.SafeStringPrototypeSearch = (str, regexp) => {
730 regexp.lastIndex = 0;
731 const match = RegExpPrototypeExec(regexp, str);

Completed in 32 milliseconds

12345678910>>...52