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

1 2 34 5

  /external/pcre/
RunGrepTest 296 (cd $srcdir; $valgrind $pcregrep --regexp=PATTERN ./testdata/grepinput) >>testtry
304 (cd $srcdir; $valgrind $pcregrep --regexp PATTERN ./testdata/grepinput) >>testtry
pcrecpp_unittest.cc 211 const char *regexp; member in struct:ReplaceTest
335 RE re(t->regexp, RE_Options(PCRE_NEWLINE_CRLF).set_utf8(support_utf8));
491 // A string containing meaningful regexp characters, which is then meta-
    [all...]
  /external/v8/src/x64/
regexp-macro-assembler-x64.h 103 static Result Match(Handle<Code> regexp,
118 // Called from RegExp if the stack-guard is triggered.
200 // The rbp-relative location of a regexp register.
  /ndk/sources/host-tools/nawk-20071023/
proto.h 61 extern Node *regexp(void);
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.h 43 // Whether V8 is compiled with native regexp support or not.
60 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4.
64 // Parses the RegExp pattern and prepares the JSRegExp object with
74 static Handle<Object> Exec(Handle<JSRegExp> regexp,
91 static Handle<Object> AtomExec(Handle<JSRegExp> regexp,
98 // Prepare a RegExp for being executed one or more times (using
100 // This ensures that the regexp is compiled for the subject, and that
103 // as its "registers" argument. If the regexp cannot be compiled,
105 static int IrregexpPrepare(Handle<JSRegExp> regexp,
114 static IrregexpResult IrregexpExecOnce(Handle<JSRegExp> regexp,
    [all...]
factory.cc 440 // Store the object, regexp and array functions in the literals
442 // object, regexp and array literals in this function.
844 // If the function contains object, regexp or array literals,
    [all...]
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...]
  /external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/
MatcherTest.java 702 String regexp = "\\p{P}"; local
705 Pattern pattern = Pattern.compile(regexp);
  /external/v8/test/mjsunit/
regexp-multiline-stack-trace.js 33 * @fileoverview Check that various regexp constructs work as intended.
87 var a = new RegExp("^" + lc + "$");
89 a = new RegExp("^" + lc + "$", "i");
92 var A = new RegExp("^" + uc + "$");
94 A = new RegExp("^" + uc + "$", "i");
97 a = new RegExp("^[" + lc + "]$");
99 a = new RegExp("^[" + lc + "]$", "i");
102 A = new RegExp("^[" + uc + "]$");
104 A = new RegExp("^[" + uc + "]$", "i");
116 assertThrows("a = new RegExp('[z-a]');")
    [all...]
regexp.js 37 // Test containing null char in regexp.
39 var re = new RegExp(s);
89 // From ecma_3/RegExp/regress-334158.js
252 re = new RegExp("", "g");
258 re = new RegExp();
260 // giving a syntactically legal regexp literal).
262 re = new RegExp(void 0);
270 // Check for lazy RegExp literal creation
280 re = new RegExp("(.)(.)(.)(.)(.)(.)(.)(.)(.)(.)");
285 re = new RegExp("foo(.)")
    [all...]
  /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/libxml2/include/libxml/
schemasInternals.h 833 xmlRegexpPtr regexp; /* The regex for patterns */ member in struct:_xmlSchemaFacet
  /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 660 // 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/webkit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py     [all...]
  /external/dnsmasq/src/
dnsmasq.h 228 char *name, *replace, *regexp, *services, *flags; member in struct:naptr
  /prebuilt/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(),

Completed in 855 milliseconds

1 2 34 5