Searched defs:re (Results 26 - 50 of 1081) sorted by relevance

1234567891011>>

/external/llvm/utils/llvm-build/llvmbuild/
H A Dconfigutil.py5 import re namespace
16 replacement), where the regex and replacement will be used as in 're.sub' to
35 regex = re.compile(regex_string)
/external/pcre/dist/
H A Dpcre_refcount.c82 REAL_PCRE *re = (REAL_PCRE *)argument_re; local
83 if (re == NULL) return PCRE_ERROR_NULL;
84 if (re->magic_number != MAGIC_NUMBER) return PCRE_ERROR_BADMAGIC;
85 if ((re->flags & PCRE_MODE) == 0) return PCRE_ERROR_BADMODE;
86 re->ref_count = (-adjust > re->ref_count)? 0 :
87 (adjust + re->ref_count > 65535)? 65535 :
88 re->ref_count + adjust;
89 return re->ref_count;
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt060leftrecursion.py2 import re namespace
23 # def recover(self, input, re):
44 # build_ast = re.search(r'output\s*=\s*AST', grammar)
/external/chromium-trace/trace-viewer/build/
H A Dcheck_grit.py7 import re namespace
21 grit_files.extend(re.findall(
/external/chromium_org/build/
H A Ddetect_host_arch.py9 import re namespace
18 if re.match(r'i.86', host_arch) or host_arch == 'i86pc':
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dcheck_injected_script_source.py30 import re namespace
59 black_list_call_regex = re.compile(r"\bMath\.\w+\(|\.(toString|" + proto_functions + r")\(|[^\.]\b(" + global_functions + r")\(")
63 for match in re.finditer(black_list_call_regex, line):
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dxcodeproj.py26 import re namespace
37 self._development_region_regex = re.compile('developmentRegion = (?P<region>.+);')
/external/chromium_org/third_party/mesa/src/src/glsl/tests/
H A Dsexps.py30 import re namespace
49 sexp_token_regexp = re.compile(
/external/chromium_org/tools/deep_memory_profiler/tests/
H A Dmock_gsutil.py7 import re namespace
13 ZIP_PATTERN = re.compile('dmprof......\.zip')
/external/chromium_org/tools/find_runtime_symbols/
H A Dreduce_debugline.py16 import re namespace
20 _FILENAME_PATTERN = re.compile('(CU: |)(.+)\:')
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dxml_writer_base_unittest.py10 import re namespace
31 text_re = re.compile('>\n\s+([^<>\s].*?)\n\s*</', re.DOTALL)
/external/chromium_org/tools/lsan/
H A DPRESUBMIT.py10 import re namespace
/external/chromium_org/tools/memory_inspector/memory_inspector/backends/
H A Dmemdump_parser.py9 import re namespace
52 map_re = re.compile(RE)
/external/chromium_org/tools/resources/
H A Dlist_resources_removed_by_repack.py8 import re namespace
30 unused_pattern = re.compile(
72 resource_pattern = re.compile('#define (?P<resource_name>[A-Z0-9_]+).* '
/external/chromium_org/tools/valgrind/memcheck/
H A DPRESUBMIT.py10 import re namespace
14 sup_regex = re.compile('suppressions.*\.txt$')
/external/chromium_org/v8/build/
H A Ddetect_v8_host_arch.py32 import re namespace
46 if re.match(r'i.86', host_arch) or host_arch == 'i86pc':
/external/chromium_org/v8/test/mjsunit/
H A Derror-tostring-omit.js42 var re = /...<omitted>.../; variable
48 assertTrue(re.test(e.message));
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-sliced-external-cons-regexp.js7 var re = /(B)/; variable
19 assertEquals(["B", "B"], re.exec(slice1));
20 assertEquals(["B", "B"], re.exec(slice2));
/external/lldb/examples/python/
H A Djump.py1 import lldb, re namespace
23 mo = re.match("^([0-9]+)$", linespec)
35 mo = re.match("^\+([0-9]+)$", linespec)
47 mo = re.match("^\-([0-9]+)$", linespec)
59 mo = re.match("^(.*):([0-9]+)$", linespec)
68 mo = re.match("\*((0x)?([0-9a-f]+))$", linespec)
/external/llvm/utils/
H A DDSAclean.py11 import re namespace
23 if re.compile("label(\s*)=(\s*)\"\s%tmp(.\w*)*(\s*)\"").search(buffer):
/external/mesa3d/src/glsl/tests/
H A Dsexps.py30 import re namespace
49 sexp_token_regexp = re.compile(
/external/wpa_supplicant_8/wpa_supplicant/utils/
H A Dlog2pcap.py10 import sys, struct, re namespace
36 frame_re = re.compile(r'(([0-9]+.[0-9]{6}):\s*)?nl80211: MLME event frame - hexdump\(len=[0-9]*\):((\s*[0-9a-fA-F]{2})*)')
/external/chromium_org/build/mac/
H A Dfind_sdk.py14 import re namespace
24 return map(int, re.findall(r'(\d+)', version_str))
58 sdks = [re.findall('^MacOSX(10\.\d+)\.sdk$', s) for s in os.listdir(sdk_dir)]
/external/chromium_org/build/win/importlibs/
H A Dfilter_export_list.py9 import re namespace
13 _EXPORT_RE = re.compile(r"""
17 \s+(?P<name>[^ ]+) # And finally the name we're really after.
18 """, re.VERBOSE)
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
H A Dtreescan.py21 import re namespace
28 _JS_FILE_REGEX = re.compile(r'^.+\.js$')

Completed in 553 milliseconds

1234567891011>>