HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 101 - 125 of 432) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/regress/
regress-regexp-codeflush.js 30 // Regression test for regexp that has multiple matches and which
32 // ensuring that the regexp is compiled.
36 var re = new RegExp('(s)', "g");
  /external/chromium_org/third_party/icu/source/i18n/unicode/
regex.h 354 * The matcher will retain a reference to the supplied input string, and all regexp
381 * The matcher will make a shallow clone of the supplied input text, and all regexp
659 * @param regexp The Regular Expression to be compiled.
665 RegexMatcher(const UnicodeString &regexp, uint32_t flags, UErrorCode &status);
675 * @param regexp The regular expression to be compiled.
682 RegexMatcher(UText *regexp, uint32_t flags, UErrorCode &status);
692 * The matcher will retain a reference to the supplied input string, and all regexp
697 * @param regexp The Regular Expression to be compiled.
705 RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
716 * The matcher will make a shallow clone of the supplied input text, and all regexp
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
regex.h 332 * The matcher will retain a reference to the supplied input string, and all regexp
636 * @param regexp The Regular Expression to be compiled.
642 RegexMatcher(const UnicodeString &regexp, uint32_t flags, UErrorCode &status);
652 * @param regexp The regular expression to be compiled.
659 RegexMatcher(UText *regexp, uint32_t flags, UErrorCode &status);
669 * The matcher will retain a reference to the supplied input string, and all regexp
674 * @param regexp The Regular Expression to be compiled.
682 RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
693 * The matcher will make a shallow clone of the supplied input text, and all regexp
698 * @param regexp The Regular Expression to be compiled
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
dfa_test.cc 9 #include "re2/regexp.h"
36 // Create regexp with 2^FLAGS_size states in DFA.
45 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL);
60 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL);
89 // Create regexp with 2^30 states in DFA.
96 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL)
310 const char *regexp; member in struct:re2::ReverseTest
    [all...]
re2_test.cc 17 #include "re2/regexp.h"
105 const char *regexp; member in struct:re2::ReplaceTest
184 VLOG(1) << StringPrintf("\"%s\" =~ s/%s/%s/g", t->original, t->regexp, t->rewrite);
186 CHECK(RE2::Replace(&one, t->regexp, t->rewrite));
189 CHECK_EQ(RE2::GlobalReplace(&all, t->regexp, t->rewrite), t->greplace_count)
195 static void TestCheckRewriteString(const char* regexp, const char* rewrite,
198 RE2 exp(regexp);
470 RE2 re_simple("simple regexp");
471 RE2 re_medium("medium.*regexp");
472 RE2 re_complex("hard.{1,128}regexp");
1199 const char *regexp; member in struct:re2::ErrorTest
1230 const char* regexp; member in struct:re2::NeverTest
    [all...]
  /external/regex-re2/re2/testing/
dfa_test.cc 9 #include "re2/regexp.h"
36 // Create regexp with 2^FLAGS_size states in DFA.
45 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL);
60 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL);
89 // Create regexp with 2^30 states in DFA.
96 Regexp* re = Regexp::Parse(s.c_str(), Regexp::LikePerl, NULL)
310 const char *regexp; member in struct:re2::ReverseTest
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
SearchConfig.js 20 /** @typedef {!{regex: !RegExp, isNegative: boolean}} */
72 var regexp = new RegExp(pattern, "g");
73 var queryParts = this._query.match(regexp) || [];
94 this._fileRegexQueries.push({ regex: new RegExp(fileQuery.text, this.ignoreCase ? "i" : ""), isNegative: fileQuery.isNegative });
  /packages/apps/OMA-DM/engine/dmlib/dmt-tools/
generateDMT 256 $JAVA_HOME/bin/java -classpath lib/GenTool.jar:lib/joda-time-1.1.jar:lib/jakarta-regexp-1.4.jar com.mot.dm.core.DMTValidator -d $DMTDIR 2> $ERR_FILE > $DEBUG_INFO_DIR
276 $JAVA_HOME/bin/java -classpath lib/GenTool.jar:lib/joda-time-1.1.jar:lib/jakarta-regexp-1.4.jar com.mot.dm.core.Gen -d $DMTDIR -f $FSTAB_FILE $INI_PATH -gendoc -$GENDDF -sv 1.0 2> $ERR_FILE > $DEBUG_INFO_DIR
  /external/chromium_org/v8/test/mjsunit/
lazy-load.js 32 // Check that regexp literals use original RegExp (non-ECMA-262).
33 RegExp = 42;
regexp-cache-replace.js 28 // Tests that regexp caching isn't messing things up.
32 assertEquals("o", RegExp.$1);
34 assertEquals("x", RegExp.$1);
36 assertEquals("o", RegExp.$1);
  /external/chromium_org/v8/test/webkit/fast/regex/
constructor.js 24 description("This test checks use of the regexp constructor.");
28 shouldBeTrue("re === RegExp(re)");
29 shouldBeTrue("re !== new RegExp(re)");
30 shouldThrow("re === RegExp(re,'i')");
31 shouldThrow("re !== new RegExp(re,'i')");
  /external/chromium_org/v8/test/webkit/
unexpected-constant-crash.js 25 "This test checks that the regexp and unexpected constant counters are not confused with each other. It will fail with an assertion failure in a debug build if this is the case."
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/command/
pretty_printers.py 29 [object-regexp [name-regexp]].
35 the resulting compiled subprinter regexp is None if not provided.
61 raise SyntaxError("invalid object regexp: %s" % object_regexp)
65 raise SyntaxError("invalid name regexp: %s" % name_regexp)
70 raise SyntaxError("invalid subname regexp: %s" % subname_regexp)
87 Usage: info pretty-printer [object-regexp [name-regexp]]
89 OBJECT-REGEXP is a regular expression matching the objects to list.
93 NAME-REGEXP matches the name of the pretty-printer
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/command/
pretty_printers.py 29 [object-regexp [name-regexp]].
35 the resulting compiled subprinter regexp is None if not provided.
61 raise SyntaxError("invalid object regexp: %s" % object_regexp)
65 raise SyntaxError("invalid name regexp: %s" % name_regexp)
70 raise SyntaxError("invalid subname regexp: %s" % subname_regexp)
87 Usage: info pretty-printer [object-regexp [name-regexp]]
89 OBJECT-REGEXP is a regular expression matching the objects to list.
93 NAME-REGEXP matches the name of the pretty-printer
    [all...]
  /prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/command/
pretty_printers.py 29 [object-regexp [name-regexp]].
35 the resulting compiled subprinter regexp is None if not provided.
61 raise SyntaxError("invalid object regexp: %s" % object_regexp)
65 raise SyntaxError("invalid name regexp: %s" % name_regexp)
70 raise SyntaxError("invalid subname regexp: %s" % subname_regexp)
87 Usage: info pretty-printer [object-regexp [name-regexp]]
89 OBJECT-REGEXP is a regular expression matching the objects to list.
93 NAME-REGEXP matches the name of the pretty-printer
    [all...]
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/command/
pretty_printers.py 29 [object-regexp [name-regexp]].
35 the resulting compiled subprinter regexp is None if not provided.
61 raise SyntaxError("invalid object regexp: %s" % object_regexp)
65 raise SyntaxError("invalid name regexp: %s" % name_regexp)
70 raise SyntaxError("invalid subname regexp: %s" % subname_regexp)
87 Usage: info pretty-printer [object-regexp [name-regexp]]
89 OBJECT-REGEXP is a regular expression matching the objects to list.
93 NAME-REGEXP matches the name of the pretty-printer
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/uffi/
uffi.swg 44 (setf cname (replace-regexp cname "_" "-"))
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-oro.jar 
  /external/chromium_org/v8/tools/gyp/
v8_base.host.darwin-arm.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
194 v8/src/arm/regexp-macro-assembler-arm.cc \
v8_base.host.darwin-arm64.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
196 v8/src/arm64/regexp-macro-assembler-arm64.cc \
v8_base.host.darwin-mips.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
194 v8/src/mips/regexp-macro-assembler-mips.cc \
v8_base.host.darwin-x86.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
193 v8/src/ia32/regexp-macro-assembler-ia32.cc \
v8_base.host.darwin-x86_64.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
193 v8/src/x64/regexp-macro-assembler-x64.cc \
v8_base.host.linux-arm.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
194 v8/src/arm/regexp-macro-assembler-arm.cc \
v8_base.host.linux-arm64.mk 143 v8/src/regexp-macro-assembler-irregexp.cc \
144 v8/src/regexp-macro-assembler-tracer.cc \
145 v8/src/regexp-macro-assembler.cc \
146 v8/src/regexp-stack.cc \
196 v8/src/arm64/regexp-macro-assembler-arm64.cc \

Completed in 2893 milliseconds

1 2 3 45 6 7 8 91011>>