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

1 2 3 45 6

  /external/libxml2/include/libxml/
schemasInternals.h 833 xmlRegexpPtr regexp; /* The regex for patterns */ member in struct:_xmlSchemaFacet
  /ndk/sources/host-tools/nawk-20071023/
b.c 47 #define ELEAF case EMPTYRE: /* empty string in regexp */
612 /* GNU compatibility: an empty regexp matches anything */
617 np = regexp();
623 Node *regexp(void) /* top-level parse of reg expr */ function
666 np = regexp();
FIXES 221 GNU compatibility: an empty regexp matches anything (thanks to
    [all...]
  /external/v8/src/
jsregexp.cc 41 #include "regexp-macro-assembler.h"
42 #include "regexp-macro-assembler-tracer.h"
43 #include "regexp-macro-assembler-irregexp.h"
44 #include "regexp-stack.h"
48 #include "ia32/regexp-macro-assembler-ia32.h"
50 #include "x64/regexp-macro-assembler-x64.h"
52 #include "arm/regexp-macro-assembler-arm.h"
54 #include "mips/regexp-macro-assembler-mips.h"
111 // Generic RegExp methods. Dispatches to implementation specific methods.
159 // Compilation succeeded so the data is set on the regexp
    [all...]
runtime.cc 1945 Handle<Object> regexp = local
    [all...]
factory.cc 549 // Store the object, regexp and array functions in the literals
551 // object, regexp and array literals in this function.
    [all...]
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...]
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 423 var regexp = /\$ref\:\w+/g;
424 var matches = description.match(regexp);
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/project/
ProjectCreator.java 659 // can't fail due to regexp above.
    [all...]
  /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/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...]
  /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...]
  /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...]
  /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...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
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 RegExpSuite = new BenchmarkSuite('RegExp', 910985, [
41 new Benchmark("RegExp", RegExpRun, RegExpSetup, RegExpTearDown, 16)
    [all...]

Completed in 4333 milliseconds

1 2 3 45 6