/external/chromium-trace/catapult/third_party/coverage/coverage/ |
config.py | 8 import re namespace 78 v = re.sub(dollar_pattern, dollar_replace, v) 113 re.compile(value) 114 except re.error as e:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/ |
util.py | 11 import re namespace 48 name = re.sub(r'([a-z0-9])([A-Z])', r'\1%s\2' % separator, name) 74 name = re.sub('[^_A-Za-z0-9]', '_', name) 91 if re.match(r'{[A-Za-z0-9_]+}$', component):
|
/external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/testharness/ |
testharnessreport.js | 57 var re = /(\S+)(\s*)<(.*)>(.*)/; 58 if (! re.test(value)) { 59 re = /(\S+)(\s+)(http[s]?:\/\/)(.*)/; 60 if (! re.test(value)) {
|
/external/clang/utils/ |
token-delta.py | 4 import re namespace 106 kTokenRE = re.compile(r"""([a-z_]+) '(.*)'\t(.*)\tLoc=<(.*):(.*):(.*)>""", 107 re.DOTALL | re.MULTILINE)
|
/external/libselinux/utils/ |
sefcontext_compile.c | 147 pcre *re = specs[i].regex; local 198 rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &size); 209 len = fwrite(re, 1, to_write, bin_file); 214 rc = pcre_fullinfo(re, sd, PCRE_INFO_STUDYSIZE, &size);
|
/external/llvm/test/MC/Mips/mips32r6/ |
invalid-mips1.s | 25 # div has been re-encoded. See valid.s 26 # divu has been re-encoded. See valid.s
|
/external/llvm/test/MC/Mips/mips64r6/ |
invalid-mips1.s | 28 # div has been re-encoded. See valid.s 29 # divu has been re-encoded. See valid.s
|
/external/markdown/markdown/extensions/ |
imagelinks.py | 21 import re, markdown namespace
|
/external/mesa3d/ |
common.py | 6 import re namespace
|
/external/pdfium/xfa/src/fxbarcode/oned/ |
BC_OnedEAN8Writer.cpp | 195 FX_RECT re = rect.GetOutterRect();
local 196 device->FillRect(&re, m_backgroundColor);
205 re = rect1.GetOutterRect();
206 device->FillRect(&re, m_backgroundColor);
|
/external/regex-re2/re2/ |
regexp.h | 343 // Caller must release return value with re->Decref(). 350 // Caller must release return value with re->Decref(). 384 // so in many cases you should use, e.g., Plus(re->Incref(), flags). 460 // Returns the leading string that re starts with. 461 // The returned Rune* points into a piece of re, 462 // so it must not be used after the caller calls re->Decref(). 463 static Rune* LeadingString(Regexp* re, int* nrune, ParseFlags* flags); 465 // Removes the first n leading runes from the beginning of re. 466 // Edits re in place. 467 static void RemoveLeadingString(Regexp* re, int n) [all...] |
/external/selinux/libselinux/utils/ |
sefcontext_compile.c | 165 pcre *re = specs[i].regex; local 216 rc = pcre_fullinfo(re, NULL, PCRE_INFO_SIZE, &size); 227 len = fwrite(re, 1, to_write, bin_file); 232 rc = pcre_fullinfo(re, sd, PCRE_INFO_STUDYSIZE, &size);
|
/external/selinux/secilc/docs/ |
Makefile | 42 sed -i -re 's:(\[`[^`]*`\])\([^#]*([^\)]):\1\(\2:g' $@
|
/external/v8/test/mjsunit/ |
error-tostring-omit.js | 42 var re = /...<omitted>.../; variable 48 assertTrue(re.test(e.message));
|
search-string-multiple.js | 32 var re = new RegExp(regexp_source, flags); 33 var output = input.replace(re, MakeReplaceString);
|
/external/v8/test/mjsunit/regress/ |
regress-603.js | 32 var re = /b../; variable 34 return re('abcdefghijklm') + 'z';
|
regress-create-exception.js | 37 var re = /2147483647/; // Equal to 0x7fffffff. 53 assertTrue(re.test(e), 'e: ' + e);
|
/external/v8/tools/release/ |
auto_push.py | 32 import re namespace
|
/external/vixl/tools/ |
generate_simulator_traces.py | 32 import re namespace
|
/frameworks/base/cmds/uiautomator/cmds/uiautomator/src/com/android/commands/uiautomator/ |
DumpCommand.java | 100 } catch (TimeoutException re) {
|
/frameworks/base/core/java/android/view/ |
InputFilter.java | 178 } catch (RemoteException re) {
|
/libcore/ojluni/src/main/java/java/util/regex/ |
Pattern.java | [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
cygwinccompiler.py | 443 import re namespace 451 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 465 result = re.search('(\d+\.\d+(\.\d+)*)',out_string) 477 result = re.search(' (\d+\.\d+(\.\d+)*)',out_string)
|
fancy_getopt.py | 15 import re namespace 24 longopt_re = re.compile(r'^%s$' % longopt_pat) 27 neg_alias_re = re.compile("^(%s)=!(%s)$" % (longopt_pat, longopt_pat)) 72 # don't actually populate these structures until we're ready to 424 chunks = re.split(r'( +|-+)', text) 455 # (and we know from the re.split above that if a chunk has
|
filelist.py | 9 import os, re namespace 297 # '?' and '*' in the glob pattern become '.' and '.*' in the RE, which 300 # any OS. So change all non-escaped dots in the RE to match any 304 # we're using a regex to manipulate a regex, so we need 308 pattern_re = re.sub(r'((?<!\\)(\\\\)*)\.', escaped, pattern_re) 322 return re.compile(pattern) 343 return re.compile(pattern_re)
|