HomeSort by relevance Sort by last modified time
    Searched refs:regexp (Results 126 - 150 of 164) sorted by null

1 2 3 4 56 7

  /external/icu4c/i18n/
rematch.cpp 60 // This value puts ICU's limits higher than most other regexp implementations,
93 RegexMatcher::RegexMatcher(const UnicodeString &regexp, const UnicodeString &input,
100 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
112 RegexMatcher::RegexMatcher(UText *regexp, UText *input,
119 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
129 RegexMatcher::RegexMatcher(const UnicodeString &regexp,
136 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
144 RegexMatcher::RegexMatcher(UText *regexp,
151 fPatternOwned = RegexPattern::compile(regexp, flags, pe, status);
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
FIXES 221 GNU compatibility: an empty regexp matches anything (thanks to
    [all...]
  /prebuilts/tools/common/m2/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /external/webkit/Source/JavaScriptCore/bytecode/
CodeBlock.h 39 #include "RegExp.h"
438 unsigned addRegExp(PassRefPtr<RegExp> r) { createRareDataIfNecessary(); unsigned size = m_rareData->m_regexps.size(); m_rareData->m_regexps.append(r); return size; }
439 RegExp* regexp(int index) const { ASSERT(m_rareData); return m_rareData->m_regexps[index].get(); } function in class:JSC::CodeBlock
542 Vector<RefPtr<RegExp> > m_regexps;
CodeBlock.cpp 94 static UString regexpToSourceString(RegExp* regExp)
98 if (regExp->global())
100 if (regExp->ignoreCase())
102 if (regExp->multiline())
105 return makeUString("/", regExp->pattern(), postfix);
108 static CString regexpName(int re, RegExp* regexp)
110 return makeUString(regexpToSourceString(regexp), "(@re", UString::number(re), ")").utf8();
540 printf("[%4d] new_regexp\t %s, %s\n", location, registerName(exec, r0).data(), regexpName(re0, regexp(re0)).data())
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js 502 responseHeaderMatch: function(resource, header, regexp)
505 ? resource.responseHeaders[header].match(new RegExp(regexp, "im"))
    [all...]
  /dalvik/docs/
prettify.js 208 * <p>Specifically, I've removed any keywords that can't precede a regexp
240 return new RegExp(pattern);
243 // have flags for case-sensitivity and the like. Having regexp tokens
246 // TODO: maybe style special characters inside a regexp as punctuation.
521 * [style : string, pattern : RegExp, context : RegExp, shortcut : string].
742 [PR_STRING, new RegExp(REGEX_LITERAL), REGEXP_PRECEDER_PATTERN]);
    [all...]
  /external/v8/test/mjsunit/
json.js 400 assertEquals('{}', JSON.stringify(/regexp/));
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py     [all...]
  /external/dnsmasq/src/
dnsmasq.h 228 char *name, *replace, *regexp, *services, *flags; member in struct:naptr
rfc1035.c     [all...]
option.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-nodeps.jar 
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 256 // Adding a leading space allows a single regexp to be used, regardless of
259 regExp = new RegExp('\\s+' + directive + ':(\\S*)\\s*', 'i');
260 matchInfo = regExp.exec(sourceText);
264 return {'remainingText': sourceText.replace(regExp, ' ').trim(),
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 131 # The regexp compilation caching is inlined in all regexp functions for
138 """Matches the string with the pattern, caching the compiled regexp."""
145 """Searches the string for the pattern, caching the compiled regexp."""
152 """Substitutes occurrences of a pattern, caching the compiled regexp."""
159 """Substitutes occurrences of a pattern, caching the compiled regexp."""
    [all...]
  /prebuilts/tools/common/m2/internal/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/v8/src/
debug-debugger.js 262 this.script_regexp_object_ = new RegExp(script_id_or_name);
521 // value. If it is a regexp and there is a unique script whose name matches
537 // Return the unique script matching the regexp. If there are more
    [all...]
messages.js 146 "regexp_flags", ["Cannot supply flags when constructing one RegExp from another"],
203 "invalid_regexp_flags", ["Invalid flags supplied to RegExp constructor '", "%0", "'"],
204 "invalid_regexp", ["Invalid RegExp pattern /", "%0", "/"],
545 // TODO(608): the spaces in a regexp below had to be escaped as \040
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
mootools-1.2.2-core-nc.js 91 var natives = {'Array': Array, 'Date': Date, 'Function': Function, 'Number': Number, 'RegExp': RegExp, 'String': String};
709 return ((typeof regex == 'string') ? new RegExp(regex, params) : regex).test(this);
775 substitute: function(object, regexp){
776 return this.replace(regexp || (/\\?\{([^{}]+)\}/g), function(match, name){
    [all...]
  /external/v8/benchmarks/
regexp.js 31 // on the web and logging all regexp operations performed. Each
37 // scrambled to exercise the regexp engine on different input strings.
40 var RegExp = new BenchmarkSuite('RegExp', 910985, [
41 new Benchmark("RegExp", RegExpRun, RegExpSetup, RegExpTearDown)
    [all...]
  /external/webkit/Source/JavaScriptCore/jit/
JITOpcodes.cpp     [all...]
  /external/libxml2/
relaxng.c 383 xmlRegExecCtxtPtr elem; /* the current element regexp */
386 xmlRegExecCtxtPtr *elemTab; /* the stack of regexp runtime */
391 * outside the regexp */
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 121 * The first regexp to match the file name determines the icon type
219 if (value instanceof RegExp) {
    [all...]

Completed in 698 milliseconds

1 2 3 4 56 7