/external/opencv3/modules/ts/misc/ |
perf_tests_timing.py | 3 import testlog_parser, sys, os, xml, glob, re namespace 8 import re namespace 47 find_module_name = re.search(r'([^_]*)', fname)
|
/external/selinux/policycoreutils/sepolicy/sepolicy/ |
interface.py | 24 import re namespace 110 m = re.findall("(.*)%s" % USER_TRANSITION_INTERFACE, i) 182 te += re.sub("TEMPLATETYPE", name, test_module.te_test_module)
|
/external/v8/test/mjsunit/ |
cyrillic.js | 189 var re = new RegExp(mixed, flag); 192 assertEquals(expected, re.test("A" + suffix), 58 + flag + f); 193 assertTrue(re.test("a" + suffix), 59 + flag + f); 194 assertTrue(re.test("~" + suffix), 60 + flag + f); 195 assertTrue(re.test(cyrillic.MIDDLE), 61 + flag + f); 196 assertEquals(ignore_case || full, re.test(cyrillic.middle), 62 + flag + f);
|
/external/v8/tools/release/ |
create_release.py | 91 match = re.search(r"^Review URL: https://codereview\.chromium\.org/(\d+)$", 92 body, flags=re.M) 141 "entry, then edit its contents to your liking. When you're done, " 194 text = re.sub(r"^%s: " % self["date"], "", text.rstrip())
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/src/ |
gtest-port.cc | 521 // Implements RE. Currently only needed for death tests. 523 RE::~RE() { 535 // Returns true iff regular expression re matches the entire str. 536 bool RE::FullMatch(const char* str, const RE& re) { 537 if (!re.is_valid_) return false; 540 return regexec(&re.full_regex_, str, 1, &match, 0) == 0; 543 // Returns true iff regular expression re matches a substring of st [all...] |
/frameworks/base/core/java/android/ddm/ |
DdmHandleHeap.java | 50 * Register for the messages we're interested in. 173 } catch (RuntimeException re) { 202 } catch (RuntimeException re) { 203 failMsg = "Exception: " + re.getMessage();
|
/frameworks/base/core/java/android/speech/ |
RecognitionService.java | 108 } catch (RemoteException re) { 184 } catch (RemoteException re) { 185 Log.e(TAG, "sending ERROR_INSUFFICIENT_PERMISSIONS message failed", re);
|
/frameworks/native/opengl/tools/glgen2/ |
glgen.py | 21 import re namespace 167 if re.search('_BIT($|\d*_)', name): 171 if not re.search('0x[0-9A-Fa-f]+', value):
|
/libcore/ojluni/src/main/java/sun/security/ssl/ |
TrustManagerFactoryImpl.java | 64 } catch (RuntimeException re) { 67 "SunX509: skip default keystore: " + re); 69 throw re;
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
base64.py | 8 import re namespace 212 mo = re.search('(?P<pad>[=]*)$', s) 275 if re.search('[^0-9A-F]', s):
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
ScriptBinding.py | 21 import re namespace 94 source = re.sub(r"\r\n", "\n", source) 95 source = re.sub(r"\r", "\n", source)
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
base64.py | 8 import re namespace 212 mo = re.search('(?P<pad>[=]*)$', s) 275 if re.search('[^0-9A-F]', s):
|
/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
ScriptBinding.py | 21 import re namespace 94 source = re.sub(r"\r\n", "\n", source) 95 source = re.sub(r"\r", "\n", source)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
base64.py | 8 import re namespace 212 mo = re.search('(?P<pad>[=]*)$', s) 275 if re.search('[^0-9A-F]', s):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ScriptBinding.py | 21 import re namespace 94 source = re.sub(r"\r\n", "\n", source) 95 source = re.sub(r"\r", "\n", source)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
base64.py | 8 import re namespace 212 mo = re.search('(?P<pad>[=]*)$', s) 275 if re.search('[^0-9A-F]', s):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
ScriptBinding.py | 21 import re namespace 94 source = re.sub(r"\r\n", "\n", source) 95 source = re.sub(r"\r", "\n", source)
|
/system/core/mkbootimg/ |
mkbootimg | 23 import re namespace 103 match = re.search(r'^(\d{1,3})(?:\.(\d{1,3})(?:\.(\d{1,3}))?)?', x) 119 match = re.search(r'^(\d{4})-(\d{2})-(\d{2})', x)
|
/system/media/camera/docs/ |
metadata_helpers.py | 22 import re namespace 528 match = re.search(r'<.*>', local_typedef) 604 if re.match("\d", what): 639 return bool(re.match('0x[a-f0-9]+$', instr, re.IGNORECASE)) 1021 text = re.sub(r'src="([^"]*)"', 'src="' + img_src_prefix + r'\1"', text) [all...] |
/system/vold/bench/ |
benchgen.py | 29 import re, sys, collections, traceback, argparse namespace 110 re_event = re.compile(r"^([\d\.]+) (.+?)\((.+?)\) = (.+?)$") 111 re_arg = re.compile(r'''((?:[^,"']|"[^"]*"|'[^']*')+)''')
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/arch/ |
arch.exp | 230 -re {#define\s+arch_([^ ]*)_up\s*\(([^)]*)\)} { 238 -re {(?x) # enable expanded regexp syntax 259 -re {(?x) # enable expanded regexp syntax 279 -re {(?x) # enable expanded regexp syntax 298 -re {(?x) # enable expanded regexp syntax 314 -re {^.+?((?=/\*)|(?=\#\s*define))} exp_continue
|
/art/tools/ |
cpplint.py | 83 import re namespace 327 _ALT_TOKEN_REPLACEMENT_PATTERN = re.compile( 346 _MATCH_ASM = re.compile(r'^\s*(?:asm|_asm|__asm|__asm__)' 354 _RE_SUPPRESSION = re.compile(r'\bNOLINT\b(\([^)]*\))?') 542 # This will always be the fallback because we're not sure [all...] |
/external/autotest/client/common_lib/ |
base_utils.py | 13 import re namespace 326 match = re.match(r'\s*(\d+)\s*(\d+)\s*$', 387 search = re.compile(r"(?<=^%s)\s*(.*)" % linestart, re.MULTILINE) 390 return re.split("%s" % sep, find.group(1))[param] 495 line = re.sub('#.*', '', line).rstrip() 498 match = re.match(pattern, line) 502 if re.search('^\d+$', value): 504 elif re.search('^(\d+\.)?\d+$', value): 533 key_regex = re.compile(r'^[-\.\w]+$' [all...] |
/prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0/ |
compilerCommon-2.0.0.jar | |
/prebuilts/gradle-plugin/com/android/databinding/compilerCommon/2.0.0-beta6/ |
compilerCommon-2.0.0-beta6.jar | |