HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 51 - 75 of 121) sorted by null

1 23 4 5

  /external/v8/test/mjsunit/
function-without-prototype.js 53 var regexp = /abc/g; variable
54 testConstruction("regexp.test");
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);
mirror-regexp.js 70 assertEquals('regexp', mirror.type());
83 assertEquals('regexp', fromJSON.type);
84 assertEquals('RegExp', fromJSON.className);
regexp-compile.js 28 // Test that we don't cache the result of a regexp match across a
search-string-multiple.js 28 // Test search and replace where we search for a string, not a regexp.
32 var re = new RegExp(regexp_source, flags);
string-replace-with-empty.js 63 // Clear the regexp cache to allow the GC to work.
regexp-multiline.js 29 * @fileoverview Check that various regexp constructs work as intended.
83 var a = new RegExp("^" + lc + "$");
85 a = new RegExp("^" + lc + "$", "i");
88 var A = new RegExp("^" + uc + "$");
90 A = new RegExp("^" + uc + "$", "i");
93 a = new RegExp("^[" + lc + "]$");
95 a = new RegExp("^[" + lc + "]$", "i");
98 A = new RegExp("^[" + uc + "]$");
100 A = new RegExp("^[" + uc + "]$", "i");
112 assertThrows("a = new RegExp('[z-a]');")
    [all...]
regexp-standalones.js 28 /* Many of the Mozilla regexp tests used 'toSource' to test their
33 // Tests from ecma_3/RegExp/regress-78156.js
58 // Tests from ecma_3/RegExp/regress-72964.js
  /external/icu4c/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/chromium/chrome/browser/resources/file_manager/js/
mock_chrome.js 71 regexp: /\.(jpe?g|gif|png|cr2?|tiff)$/i,
76 regexp: /\.(jpe?g|png|cr2?|tiff)$/i,
90 if (candidateTasks[taskIndex].regexp.test(urlList[i]))
  /external/libvpx/examples/includes/geshi/
geshi.php 131 // Advanced regexp handling constants, used in language files
146 for this regexp's html tag class */
1980 $regexp = $rxdata; variable
1990 $regexp = implode("|", $rxuse); variable
    [all...]
  /external/v8/src/
log.h 47 // --log-api, --log-code, --log-gc, and --log-regexp.
60 // --log-regexp
62 // --log-regexp implies --log.
127 V(REG_EXP_TAG, "RegExp") \
230 // Emits a code create event for a RegExp.
262 // ==== Events logged by --log-regexp ====
263 // Regexp compilation and execution events.
265 void RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache);
326 // Emits the source code of a regexp. Used by regexp events
    [all...]
regexp-macro-assembler.h 182 // Result of calling generated native RegExp code.
197 static Result Match(Handle<Code> regexp,
205 // Called from generated RegExp code.
211 // Called from RegExp if the backtrack stack limit is hit.
223 // Used by generated RegExp code.
log.cc 503 void Logger::LogRegExpSource(Handle<JSRegExp> regexp) {
508 Handle<Object> source = GetProperty(regexp, "source");
514 switch (regexp->TypeTag()) {
526 Handle<Object> global = GetProperty(regexp, "global");
531 Handle<Object> ignorecase = GetProperty(regexp, "ignoreCase");
536 Handle<Object> multiline = GetProperty(regexp, "multiline");
546 void Logger::RegExpCompileEvent(Handle<JSRegExp> regexp, bool in_cache) {
550 msg.Append("regexp-compile,");
551 LogRegExpSource(regexp);
    [all...]
factory.h 98 // UTF8 strings are pretenured when used for regexp literal patterns and
109 // characters of the string are uninitialized. Currently used in regexp code
395 // atom regexp and stores it in the regexp.
396 void SetRegExpAtomData(Handle<JSRegExp> regexp,
403 // irregexp regexp and stores it in the regexp.
404 void SetRegExpIrregexpData(Handle<JSRegExp> regexp,
runtime.cc 1812 Handle<Object> regexp = local
    [all...]
  /external/libxml2/
xmlregexp.c 2 * regexp.c: generic and extensible Regular Expression engine
305 xmlRegexpPtr comp; /* the compiled regexp */
358 * Regexp memory error handler *
370 const char *regexp = NULL; local
372 regexp = (const char *) ctxt->string;
377 regexp, NULL, 0, 0,
390 const char *regexp = NULL; local
394 regexp = (const char *) ctxt->string;
400 regexp, NULL, idx, 0,
415 * Allocate a new regexp and fill it with the result from the parse
    [all...]
  /external/v8/benchmarks/
run.js 35 load('regexp.js');
  /external/v8/test/mjsunit/compiler/
literals-assignment.js 97 // Test regexp literals.
  /external/v8/test/mjsunit/regress/
regress-233.js 29 // A stack overflow detected by a global regexp match wasn't handled correctly.
  /external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
parse-js.js 442 var prev_backslash = false, regexp = "", ch, in_class = false;
444 regexp += "\\" + ch;
448 regexp += ch;
451 regexp += ch;
457 regexp += ch;
462 return token("regexp", [ regexp, mods ]);
603 var ATOMIC_START_TOKEN = array_to_hash([ "atom", "num", "string", "regexp", "name" ]);
713 S.token = S.input(true); // force regexp
718 case "regexp"
    [all...]
  /external/chromium/net/tools/testserver/
xmppserver.py 136 def _ProcessBuffer(self, regexp, xml_suffix=''):
137 """If the buffer matches the given regexp, removes the match from
142 Whether or not the buffer matched the given regexp.
144 results = regexp.match(self._buffer)
  /ndk/sources/host-tools/sed-4.2.1/
bootstrap.sh 144 ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c regexp.c || exit 1
bootstrap.sh.in 144 ${CC} -DHAVE_CONFIG_H -I.. -I. -I../lib -c regexp.c || exit 1

Completed in 624 milliseconds

1 23 4 5