/external/v8/src/regexp/mips/ |
regexp-macro-assembler-mips.h | 10 #include "src/regexp/regexp-macro-assembler.h" 90 // Called from RegExp if the stack-guard is triggered. 146 // The ebp-relative location of a regexp register. 160 // regexp registers are addressed relative to this.
|
/external/v8/src/regexp/x87/ |
regexp-macro-assembler-x87.h | 9 #include "src/regexp/regexp-macro-assembler.h" 88 // Called from RegExp if the stack-guard is triggered. 108 // one set of capture results. For the case of non-global regexp, we ignore 141 // The ebp-relative location of a regexp register.
|
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/ |
ant-1.8.0.pom | 126 <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
127 <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
141 <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
142 <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
143 <exclude>org/apache/tools/ant/util/regexp/Jdk14Regexp*</exclude>
|
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.2/ |
ant-1.8.2.pom | 99 <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
100 <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
128 <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
129 <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
130 <exclude>org/apache/tools/ant/util/regexp/Jdk14Regexp*</exclude>
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
nm.exp | 58 while {[regexp "(\[a-zA-Z\]) (\[a-z_\]*_symbol)(.*)" $got all type symbol rest]} { 85 while {[regexp "(\[a-z_\]*_symbol)(.*)" $got all symbol rest]} { 123 if [regexp "u foo" $got] then { 152 if [regexp $want $got] then { 203 if [regexp $want $got] then {
|
objcopy.exp | 127 set found_orig [regexp -lineanchor $want $origdata -> origdata] 128 set found_rev [regexp -lineanchor $want $revdata -> revdata] 213 if ![regexp "$header_string.*" $line] { 218 && [regexp "^S\[123\]\[0-9a-fA-F\]+\[\r\n\]*$" $line]} { 225 if ![regexp "^S\[789\]\[0-9a-fA-F\]+\[\r\n\]*$" $line] then { 236 if ![regexp "file format srec" $got] then { 255 if ![regexp "start address (\[0-9a-fA-FxX\]+)" $got all origstart] then { 264 if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then { 281 if ![regexp "file format srec.*start address (\[0-9a-fA-FxX\]+)" $got all srecstart] then { 306 while {[regexp $headers_regexp $got all name size vma rest]} [all...] |
/external/regex-re2/re2/ |
re2.cc | 19 #include "re2/regexp.h" 71 // Converts from Regexp error code to RE2 error code. 73 // hides the existence of Regexp from RE2 users. 132 int flags = Regexp::ClassNL; 141 flags |= Regexp::Latin1; 146 flags |= Regexp::LikePerl; 149 flags |= Regexp::Literal; 152 flags |= Regexp::NeverNL; 155 flags |= Regexp::NeverCapture; 158 flags |= Regexp::FoldCase [all...] |
re2.h | 13 // REGEXP SYNTAX: 195 class Regexp; 236 ErrorTrailingBackslash, // trailing \ at end of regexp 241 ErrorBadUTF8, // invalid UTF-8 in regexp 255 Quiet // do not log about regexp parse errors 286 // portion of the regexp. 289 // Returns the program size, a very approximate measure of a regexp's "cost". 293 // Returns the underlying Regexp; not for general use. 296 re2::Regexp* Regexp() const { return entire_regexp_; [all...] |
make_perl_groups.pl | 38 my $regexp = "[$class]"; 42 if ($i <= 128 && chr($i) =~ $regexp) {
|
/external/google-breakpad/src/tools/mac/upload_system_symbols/ |
upload_system_symbols.go | 55 "regexp" 86 blacklistRegexps = []*regexp.Regexp{ 87 regexp.MustCompile(`/System/Library/Frameworks/Python\.framework/`), 88 regexp.MustCompile(`/System/Library/Frameworks/Ruby\.framework/`), 89 regexp.MustCompile(`_profile\.dylib$`), 90 regexp.MustCompile(`_debug\.dylib$`), 91 regexp.MustCompile(`\.a$`), 92 regexp.MustCompile(`\.dat$`),
|
/external/v8/src/regexp/ |
jsregexp.h | 10 #include "src/regexp/regexp-ast.h" 24 // Whether V8 is compiled with native regexp support or not. 34 // Implements RegExp.prototype.toString, see ECMA-262 section 15.10.6.4. 38 // Parses the RegExp pattern and prepares the JSRegExp object with 49 Handle<JSRegExp> regexp, 67 static int AtomExecRaw(Handle<JSRegExp> regexp, 74 static Handle<Object> AtomExec(Handle<JSRegExp> regexp, 81 // Prepare a RegExp for being executed one or more times (using 83 // This ensures that the regexp is compiled for the subject, and tha [all...] |
/prebuilts/go/darwin-x86/src/index/suffixarray/ |
suffixarray_test.go | 10 "regexp" 163 func testFindAllIndex(t *testing.T, tc *testCase, x *Index, rx *regexp.Regexp, n int) { 173 // we may obtain different positions from the Index and from regexp (because 174 // Index may not find the results in the same order as regexp) => in general 201 if rx, err := regexp.Compile(pat); err == nil {
|
/prebuilts/go/darwin-x86/src/regexp/syntax/ |
compile.go | 12 // See http://swtch.com/~rsc/regexp/regexp1.html for inspiration. 78 // Compile compiles the regexp into a program to be executed. 79 // The regexp should have been simplified already (returned from re.Simplify). 80 func Compile(re *Regexp) (*Prog, error) { 98 func (c *compiler) compile(re *Regexp) frag { 167 panic("regexp: unhandled case in compile")
|
/prebuilts/go/darwin-x86/test/ |
nosplit.go | 18 "regexp" 174 commentRE = regexp.MustCompile(`(?m)^#.*`) 175 rejectRE = regexp.MustCompile(`(?s)\A(.+?)((\n|; *)REJECT(.*))?\z`) 176 lineRE = regexp.MustCompile(`(\w+) (\d+)( nosplit)?(.*)`) 177 callRE = regexp.MustCompile(`\bcall (\w+)\b`) 178 callindRE = regexp.MustCompile(`\bcallind\b`)
|
/prebuilts/go/linux-x86/src/index/suffixarray/ |
suffixarray_test.go | 10 "regexp" 163 func testFindAllIndex(t *testing.T, tc *testCase, x *Index, rx *regexp.Regexp, n int) { 173 // we may obtain different positions from the Index and from regexp (because 174 // Index may not find the results in the same order as regexp) => in general 201 if rx, err := regexp.Compile(pat); err == nil {
|
/prebuilts/go/linux-x86/src/regexp/syntax/ |
compile.go | 12 // See http://swtch.com/~rsc/regexp/regexp1.html for inspiration. 78 // Compile compiles the regexp into a program to be executed. 79 // The regexp should have been simplified already (returned from re.Simplify). 80 func Compile(re *Regexp) (*Prog, error) { 98 func (c *compiler) compile(re *Regexp) frag { 167 panic("regexp: unhandled case in compile")
|
/prebuilts/go/linux-x86/test/ |
nosplit.go | 18 "regexp" 174 commentRE = regexp.MustCompile(`(?m)^#.*`) 175 rejectRE = regexp.MustCompile(`(?s)\A(.+?)((\n|; *)REJECT(.*))?\z`) 176 lineRE = regexp.MustCompile(`(\w+) (\d+)( nosplit)?(.*)`) 177 callRE = regexp.MustCompile(`\bcall (\w+)\b`) 178 callindRE = regexp.MustCompile(`\bcallind\b`)
|
/prebuilts/go/darwin-x86/api/ |
go1.txt | [all...] |
/prebuilts/go/linux-x86/api/ |
go1.txt | [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/v8/ |
LICENSE | 6 test/mjsunit/third_party/regexp-pcre.js. This is based on the 9 are embedded in regexp-pcre.js.
|
/external/chromium-trace/catapult/tracing/tracing/extras/importer/linux_perf/ |
sched_parser.html | 41 var schedSwitchRE = new RegExp( 47 var schedBlockedRE = new RegExp('pid=(\\d+) iowait=(\\d) caller=(.+)');
|
/external/libgdx/extensions/gdx-bullet/jni/swig/ |
module.xml | 51 <regexp pattern="(SwigDirector_[\w]+) \*director = dynamic_cast<(SwigDirector_[\w]+ \*)>\(obj\);" /> 74 <regexp pattern="\.([a-z0-9]+([\.][a-z0-9]+)+)\.([^\.]+)\.java" />
|
/external/ltrace/testsuite/ltrace.main/ |
system_calls.exp | 76 if [regexp -- {^[a-zA-Z0-9]*@SYS} $line] { 116 if [regexp -- $pattern $key] {
|
/external/skia/site/dev/tools/ |
codesearch.md | 36 [cs.skia.org][1] |regexp | yes |no |skia |master |last DEPS roll + hours 37 [Internal][2] |regexp | no |no |skia buildbot common internal |master |hours
|
/external/skia/tools/ |
BUILD_simulator.py | 40 # First transform pattern into a regexp. 44 # Replace any regexp special characters.
|