HomeSort by relevance Sort by last modified time
    Searched defs:regexp (Results 1 - 14 of 14) sorted by null

  /external/v8/test/mjsunit/
regexp-call-as-function.js 32 var regexp = /a(b)(c)/; variable
35 assertEquals(expected, String(regexp.exec(subject)));
36 assertEquals(expected, String(regexp(subject)));
with-function-expression.js 33 // Check that the return value is a function. Use regexp to avoid
35 var regexp = /function/; variable
36 var res = assertTrue(eval(source).match(regexp) == 'function');
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Date/
15.9.5.4.js 49 var regexp = ''; variable
53 var cnERR ='OOPS! FATAL ERROR: no regexp match in extractTimeString()';
144 * Thus, use a regexp of the form /date.toDateString()(.*)$/
149 regexp = new RegExp(date.toDateString() + '(.*)' + '$');
153 hopeThisIsTimeString = date.toString().match(regexp)[1];
15.9.5.7.js 53 var regexp = ''; variable
57 var cnERR ='OOPS! FATAL ERROR: no regexp match in extractLocaleTimeString()';
147 * So first, use a regexp of the form /date.toDateString()(.*)$/
154 regexp = new RegExp(date.toDateString() + '(.*)' + '$');
157 TimeString = date.toString().match(regexp)[1];
169 regexp= /([^G]*)GMT.*/;
172 hopeThisIsLocaleTimeString = TimeString.match(regexp)[1];
  /external/webkit/WebCore/platform/text/
RegularExpression.cpp 40 JSRegExp* regexp() const { return m_regexp; } function in class:WebCore::RegularExpression::Private
53 JSRegExp* regexp = jsRegExpCompile(pattern.characters(), pattern.length(), local
56 if (!regexp)
58 return regexp;
99 if (!d->regexp())
108 int result = jsRegExpExecute(d->regexp(), str.characters(), str.length(), startFrom, offsets, maxOffsets);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 191 * The glob pattern is not a regexp. It only accepts the "*" keyword to mean
203 // transforms the glob pattern in a regexp:
217 Pattern regexp = Pattern.compile(globPattern); local
221 if (regexp.matcher(class_name).matches()) {
  /external/v8/src/
runtime.cc 1251 Handle<Object> regexp = local
    [all...]
  /external/webkit/JavaScriptCore/bytecode/
CodeBlock.h 40 #include "RegExp.h"
450 unsigned addRegExp(RegExp* r) { createRareDataIfNecessary(); unsigned size = m_rareData->m_regexps.size(); m_rareData->m_regexps.append(r); return size; }
451 RegExp* regexp(int index) const { ASSERT(m_rareData); return m_rareData->m_regexps[index].get(); } function in class:JSC::CodeBlock
549 Vector<RefPtr<RegExp> > m_regexps;
  /external/libxml2/include/libxml/
schemasInternals.h 833 xmlRegexpPtr regexp; /* The regex for patterns */ member in struct:_xmlSchemaFacet
  /external/dnsmasq/src/
dnsmasq.h 228 char *name, *replace, *regexp, *services, *flags; member in struct:naptr
  /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...]
xmlschemas.c 986 xmlRegExecCtxtPtr regexp; member in struct:_xmlSchemaValidCtxt
    [all...]
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 

Completed in 1233 milliseconds