HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 626 - 650 of 3066) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteParser.m 301 @catch (ANTLRRecognitionException *re) {
302 [self reportError:re];
303 [self recover:input Exception:re];
305 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
366 @catch (ANTLRRecognitionException *re) {
367 [self reportError:re];
368 [self recover:input Exception:re];
370 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
  /external/antlr/antlr-3.4/runtime/Python/tests/
t032subrulePredict.py 13 def recover(self, input, re):
  /external/autotest/client/site_tests/audio_Aplay/
audio_Aplay.py 5 import re namespace
  /external/autotest/client/tests/perfmon/
perfmon.py 1 import os, re namespace
  /external/autotest/server/cros/dynamic_suite/
control_file_getter.py 6 import logging, os, re namespace
101 regexp = re.compile(os.path.join(test_name, 'control$'))
103 regexp = re.compile(test_name + '$')
151 regexp = re.compile(self._CONTROL_PATTERN)
  /external/autotest/server/site_tests/platform_PowerStatusStress/
platform_PowerStatusStress.py 5 import logging, re, time namespace
107 is_psi_online = re.match(r'.+online:\s+%s.+' % exp_psi_online,
109 is_psi_enum_type = re.match(r'.+enum type:\s+%s.+' % exp_psi_enum_type,
111 is_psi_bat_state = re.match(r'.+state:\s+%s.+' % exp_psi_bat_state,
  /external/autotest/site_utils/
job_directories.py 6 import re namespace
60 m_job = re.findall(JOB_PATTERN, result_dir)
63 m_special_task = re.match(SPECIAL_TASK_PATTERN, result_dir)
66 m_ssp_job_pattern = re.match(ssp_job_pattern, result_dir)
  /external/autotest/tko/
machine_benchmark.cgi 3 import cgi, cgitb, os, sys, re namespace
28 testname = re.sub(r'\..*', '', benchmark)
101 header_row += [ display.box("%s - %s" % (re.sub(r'\.', '<br>', benchmark),key), header=True) for key in benchmark_key[benchmark] ]
111 for key in benchmark_key[re.sub(r'\..*', '', benchmark)]:
  /external/chromium-trace/catapult/dashboard/dashboard/
buildbucket_job_status_test.py 6 import re namespace
123 re.search('href\\s*=\\s*[\'"]http://build.chromium.org/p/tryserver',
124 response.body, re.IGNORECASE))
  /external/chromium-trace/catapult/systrace/profile_chrome/
chrome_controller.py 7 import re namespace
32 re.compile(r'Logging performance trace to file')
34 re.compile(r'Profiler finished[.] Results are in (.*)[.]')
46 re.compile(r'{"traceCategoriesList(.*)'), timeout=5).group(0)
  /external/chromium-trace/catapult/third_party/WebOb/webob/
byterange.py 1 import re namespace
5 _rx_range = re.compile('bytes *= *(\d*) *- *(\d*)', flags=re.I)
6 _rx_content_range = re.compile(r'bytes (?:(\d+)-(\d+)|[*])/(?:(\d+)|[*])')
  /external/chromium-trace/catapult/tracing/tracing_build/
update_gypi.py 7 import re namespace
88 return re.compile(regexp_str, re.MULTILINE | re.DOTALL)
  /external/ltrace/
filter.h 76 /* Create a matcher that matches library name. RE is owned and
81 regex_t re);
  /external/markdown/markdown/extensions/
toc.py 13 import re namespace
35 header_rgx = re.compile("[Hh][123456]")
127 value = unicode(re.sub('[^\w\s-]', '', value).strip().lower())
128 return re.sub('[-\s]+','-',value)
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 36 import re namespace
161 time.value = re.sub(r"^\d+(\.\d+)?$", "*", time.value)
166 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue)
168 child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*",
  /external/skia/tools/
parse_llvm_coverage.py 13 import re namespace
25 And then they're truncated to 22 characters with leading ellipses:
69 m = re.match('([a-zA-Z0-9\./_-]+):', line)
78 skip = re.match('^\s{2}-+$|^\s{2}\|.+$', line)
95 return re.sub(r'[^a-zA-Z0-9]', '_', filename)
  /external/v8/test/mjsunit/es6/
classes-derived-return-type.js 37 assertInstanceof(new DerivedWithReturn(/re/), RegExp);
69 assertInstanceof(new DerivedWithReturnNoSuper(/re/), RegExp);
  /external/v8/test/preparser/
testcfg.py 30 import re namespace
37 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
52 rule_regex = re.compile("^([\w\-]+)(?::([\w\-]+))?(?::(\d+),(\d+))?$")
114 flags_match = re.findall(FLAGS_PATTERN, source)
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityInteractionClient.java 201 } catch (RemoteException re) {
202 Log.e(LOG_TAG, "Error while calling remote getWindow", re);
239 } catch (RemoteException re) {
240 Log.e(LOG_TAG, "Error while calling remote getWindows", re);
304 } catch (RemoteException re) {
306 + " findAccessibilityNodeInfoByAccessibilityId", re);
351 } catch (RemoteException re) {
353 + " findAccessibilityNodeInfoByViewIdInActiveWindow", re);
399 } catch (RemoteException re) {
401 + " findAccessibilityNodeInfosByViewText", re);
    [all...]
  /frameworks/base/core/java/com/android/server/backup/
SystemBackupAgent.java 123 } catch (RemoteException re) {
124 Slog.e(TAG, "Couldn't restore settings\n" + re);
170 } catch (RemoteException re) {
171 Slog.e(TAG, "Couldn't restore settings\n" + re);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_syntax.py 485 import re namespace
506 mo = re.search(errtext, str(err))
525 source = re.sub('(?m)^ *:', '', """\
540 source = re.sub('(?m)^ *:', '', """\
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_syntax.py 485 import re namespace
506 mo = re.search(errtext, str(err))
525 source = re.sub('(?m)^ *:', '', """\
540 source = re.sub('(?m)^ *:', '', """\
  /prebuilts/go/darwin-x86/test/bench/shootout/
regex-dna-parallel.go 77 re := regexp.MustCompile(pat)
80 e := re.FindIndex(bytes)
  /prebuilts/go/linux-x86/test/bench/shootout/
regex-dna-parallel.go 77 re := regexp.MustCompile(pat)
80 e := re.FindIndex(bytes)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_syntax.py 485 import re namespace
506 mo = re.search(errtext, str(err))
525 source = re.sub('(?m)^ *:', '', """\
540 source = re.sub('(?m)^ *:', '', """\

Completed in 765 milliseconds

<<21222324252627282930>>