/prebuilts/go/linux-x86/src/cmd/dist/ |
test.go | 16 "regexp" 43 runRx *regexp.Regexp 150 t.runRx = regexp.MustCompile(t.runRxStr)
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
debug_msg.sh | 57 # can't test for the actual offset from .data, hence the regexp.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-bootstrap/ |
bootstrap.exp | 35 regexp ".*\(--plugin\).*\n" $tmp foo plugins
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/ |
elf.exp | 198 switch -regexp $target_triplet {
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
mips-elf-flags.exp | 74 if {![regexp "Flags: *(\[^\n\]*)" $output full gotflags]} {
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/ |
sysroot-prefix.exp | 149 ($expect_success || [regexp "$errstr" $ld_output]) } {
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-selective/ |
selective.exp | 99 if [regexp "^(\[1-9\]\[0-9\]+|\[4-9\]|3.(\[1-9\]\[0-9\]+|\[4-9\]))\\." $version] {
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/sh64/ |
relfail.exp | 202 if ![regexp $expect_fail $objdump_short junk] {
|
/external/fio/tools/plot/ |
fio2gnuplot | 34 # If the file math the regexp 364 print '-p <pattern> or --pattern <pattern> : A pattern in regexp to select fio input files' 482 # As we do have some regexp in the pattern, let's make this simpliest
|
/external/regex-re2/re2/ |
nfa.cc | 9 // not the pseudo-NFA found in backtracking regexp implementations. 15 // See http://swtch.com/~rsc/regexp/ for various history. The main feature 28 #include "re2/regexp.h"
|
/external/v8/src/ |
api.h | 146 V(RegExp, JSRegExp) \ 201 static inline Local<RegExp> ToLocal( 356 MAKE_TO_LOCAL(ToLocal, JSRegExp, RegExp)
|
messages.h | 287 "Cannot supply flags when constructing one RegExp from another") \ 289 T(RegExpNonRegExp, "% getter called on non-RegExp object") \ 408 T(InvalidRegExpFlags, "Invalid flags supplied to RegExp constructor '%'") \ [all...] |
/prebuilts/go/darwin-x86/src/archive/zip/ |
reader_test.go | 15 "regexp" 499 s = regexp.MustCompile(`[0-9a-f]{7}`).ReplaceAllString(s, "") 500 s = regexp.MustCompile(`\s+`).ReplaceAllString(s, "")
|
/prebuilts/go/darwin-x86/src/cmd/api/ |
goapi.go | 24 "regexp" 107 var internalPkg = regexp.MustCompile(`(^|/)internal($|/)`) 234 var spaceParensRx = regexp.MustCompile(` \(\S+?\)`)
|
/prebuilts/go/darwin-x86/src/cmd/go/ |
main.go | 19 "regexp" 477 re := regexp.QuoteMeta(pattern) 483 reg := regexp.MustCompile(`^` + re + `$`)
|
/prebuilts/go/darwin-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
ext_test.go | 20 "regexp" 494 pcrel = regexp.MustCompile(`^((?:.* )?(?:j[a-z]+|call|ljmp|loopn?e?w?|xbegin)q?(?:,p[nt])?) 0x([0-9a-f]+)$`) 495 pcrelw = regexp.MustCompile(`^((?:.* )?(?:callw|jmpw|xbeginw|ljmpw)(?:,p[nt])?) 0x([0-9a-f]+)$`)
|
/prebuilts/go/linux-x86/src/archive/zip/ |
reader_test.go | 15 "regexp" 499 s = regexp.MustCompile(`[0-9a-f]{7}`).ReplaceAllString(s, "") 500 s = regexp.MustCompile(`\s+`).ReplaceAllString(s, "")
|
/prebuilts/go/linux-x86/src/cmd/api/ |
goapi.go | 24 "regexp" 107 var internalPkg = regexp.MustCompile(`(^|/)internal($|/)`) 234 var spaceParensRx = regexp.MustCompile(` \(\S+?\)`)
|
/prebuilts/go/linux-x86/src/cmd/go/ |
main.go | 19 "regexp" 477 re := regexp.QuoteMeta(pattern) 483 reg := regexp.MustCompile(`^` + re + `$`)
|
/prebuilts/go/linux-x86/src/cmd/internal/rsc.io/x86/x86asm/ |
ext_test.go | 20 "regexp" 494 pcrel = regexp.MustCompile(`^((?:.* )?(?:j[a-z]+|call|ljmp|loopn?e?w?|xbegin)q?(?:,p[nt])?) 0x([0-9a-f]+)$`) 495 pcrelw = regexp.MustCompile(`^((?:.* )?(?:callw|jmpw|xbeginw|ljmpw)(?:,p[nt])?) 0x([0-9a-f]+)$`)
|
/external/chromium-trace/catapult/third_party/flot/ |
jquery.js | 64 // JSON RegExp 643 // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 646 if ( arr.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( arr ) ) { 901 jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { [all...] |
/external/libxml2/doc/devhelp/ |
libxml2-xmlautomata.html | 5 <title>xmlautomata: API to build regexp automata</title> 41 <p>xmlautomata - API to build regexp automata</p> 42 <p>the API to build regexp automata </p> 84 </pre><p>A libxml automata description, It can be compiled into a regexp</p> 99 <div class="variablelist"><table border="0"><col align="left"/><tbody><tr><td><span class="term"><i><tt>am</tt></i>:</span></td><td>an automata</td></tr><tr><td><span class="term"><i><tt>Returns</tt></i>:</span></td><td>the compiled regexp or NULL in case of error</td></tr></tbody></table></div></div> [all...] |
/external/v8/src/runtime/ |
runtime-strings.cc | 10 #include "src/regexp/jsregexp-inl.h" 11 #include "src/regexp/jsregexp.h" 339 CONVERT_ARG_HANDLE_CHECKED(JSRegExp, regexp, 1); 344 RegExpImpl::GlobalCache global_cache(regexp, subject, true, isolate); 347 int capture_count = regexp->CaptureCount(); [all...] |
/external/chromium-trace/catapult/third_party/jquery/ |
jquery-2.1.4.js | 304 // Support: Android<4.0, iOS<6 (functionish RegExp) 529 jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { 659 rwhitespace = new RegExp( whitespace + "+", "g" ), 660 rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), 662 rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), 663 rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), 665 rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), 667 rpseudo = new RegExp( pseudos ), 668 ridentifier = new RegExp( "^" + identifier + "$" ), 671 "ID": new RegExp( "^#(" + characterEncoding + ")" ) [all...] |
/external/chromium-trace/catapult/third_party/coverage/coverage/htmlfiles/ |
jquery.min.js | 2 !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l="1.11.1",m=function(a,b){return new m.fn.init(a,b)},n=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,o=/^-ms-/,p=/-([\da-z])/gi,q=function(a,b){return b.toUpperCase()};m.fn=m.prototype={jquery:l,constructor:m,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=m.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return m.each(this,a,b)},map:function(a){return this.pushStack(m.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},m.extend=m.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||m.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(m.isPlainObject(c)||(b=m.isArray(c)))?(b?(b=!1,f=a&&m.isArray(a)?a:[]):f=a&&m.isPlainObject(a)?a:{},g[d]=m.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},m.extend({expando:"jQuery"+(l+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===m.type(a)},isArray:Array.isArray||function(a){return"array"===m.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){return!m.isArray(a)&&a-parseFloat(a)>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==m.type(a)||a.nodeType||m.isWindow(a))return!1;try{if(a.constructor&&!j.call(a,"constructor")&&!j.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(k.ownLast)for(b in a)return j.call(a,b);for(b in a);return void 0===b||j.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(b){b&&m.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(o,"ms-").replace(p,q)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=r(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(n,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(r(Object(a))?m.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(g)return g.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=r(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(f=a[b],b=a,a=f),m.isFunction(a)?(c=d.call(arguments,2),e=function(){return a.apply(b||this,c.concat(d.call(arguments)))},e.guid=a.guid=a.guid||m.guid++,e):void 0},now:function(){return+new Date},support:k}),m.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function r(a){var b=a.length,c=m.type(a);return"function"===c||m.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var s=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^: (…) [all...] |