HomeSort by relevance Sort by last modified time
    Searched refs:re (Results 301 - 325 of 3259) sorted by null

<<11121314151617181920>>

  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
rdataclass.py 26 import re namespace
66 _unknown_class_pattern = re.compile('CLASS([0-9]+)$', re.I);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/demos/tunes_db/server/
model.py 26 import re namespace
32 _SEARCH_NAME_REGEX = re.compile('\w+', re.UNICODE)
61 # Must explicitly replace '_' because the \w re part does not
  /external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/
strip_js_comments.py 7 import re namespace
24 next_tok = re.compile('|'.join(re.escape(x) for x in tokens))
  /external/llvm/utils/lint/
common_lint.py 5 import re namespace
42 tab_re = re.compile(r'\t')
63 trailing_whitespace_re = re.compile(r'\s+$')
  /external/markdown/markdown/extensions/
meta.py 43 import markdown, re namespace
46 META_RE = re.compile(r'^[ ]{0,3}(?P<key>[A-Za-z0-9_-]+):\s*(?P<value>.*)')
47 META_MORE_RE = re.compile(r'^[ ]{4,}(?P<value>.*)')
  /external/selinux/sepolgen/src/sepolgen/
defaults.py 21 import re namespace
33 ignore = re.compile(r"^\s*(?:#.+)?$")
34 consider = re.compile(r"^\s*(\w+)\s*=\s*(.+?)\s*$")
42 # We're only exporting one useful function, so why not be a function
  /external/v8/build/config/mac/
compile_xib.py 8 import re namespace
35 ibtool_section_re = re.compile(r'/\*.*\*/')
36 ibtool_re = re.compile(r'.*note:.*is clipping its content')
  /external/v8/test/mjsunit/regress/
regress-58740.js 30 var re = /.+/g; variable
31 re.exec("");
32 re.exec("anystring");
33 re=/.+/g;
34 re.exec("");
35 assertEquals(0, re.lastIndex);
regress-219.js 39 function assertFlags(re, global, multiline, ignoreCase) {
40 var name = re + " flag: ";
41 (global ? assertTrue : assertFalse)(re.global, name + "g");
42 (multiline ? assertTrue : assertFalse)(re.multiline, name + "m");
43 (ignoreCase ? assertTrue : assertFalse)(re.ignoreCase, name + "i");
46 var re = /a/; variable
47 assertFlags(re, false, false, false)
49 re = /a/gim;
50 assertFlags(re, true, true, true)
52 re = RegExp("a","")
126 var re = \/a\/gmi; variable
    [all...]
  /external/v8/tools/
disasm.py 31 import re namespace
44 _DISASM_HEADER_RE = re.compile(r"[a-f0-9]+\s+<.*:$")
45 _DISASM_LINE_RE = re.compile(r"\s*([a-f0-9]+):\s*(\S.*)")
run-valgrind.py 38 import re namespace
84 LEAK_LINE_MATCHER = re.compile(LEAK_RE)
85 LEAK_OKAY_MATCHER = re.compile(r"lost: 0 bytes in 0 blocks")
  /external/v8/tools/gyp/test/mac/
gyptest-strip-default.py 13 import re namespace
40 o = re.sub(r'^[a-fA-F0-9]+', 'XXXXXXXX', o, flags=re.MULTILINE)
  /external/v8/tools/gyp/test/win/
gyptest-link-base-address.py 13 import re namespace
28 image_base_reg_ex = re.compile(r'.*\s+([0-9]+) image base.*', re.DOTALL)
  /frameworks/base/core/java/android/printservice/
PrintJob.java 93 } catch (RemoteException re) {
94 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re);
320 } catch (RemoteException re) {
321 Log.e(LOG_TAG, "Error setting progress for job: " + mCachedInfo.getId(), re);
340 } catch (RemoteException re) {
341 Log.e(LOG_TAG, "Error setting status for job: " + mCachedInfo.getId(), re);
360 } catch (RemoteException re) {
361 Log.e(LOG_TAG, "Error setting status for job: " + mCachedInfo.getId(), re);
382 } catch (RemoteException re) {
383 Log.e(LOG_TAG, "Error setting tag for job: " + mCachedInfo.getId(), re);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
SSLContextSpiTest.java 60 } catch (RuntimeException re) {
61 String str = re.getMessage();
79 } catch (RuntimeException re) {
80 String str = re.getMessage();
110 } catch (RuntimeException re) {
111 String str = re.getMessage();
121 } catch (RuntimeException re) {
122 String str = re.getMessage();
132 } catch (RuntimeException re) {
133 String str = re.getMessage()
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_commands.py 6 import os, tempfile, re namespace
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_commands.py 6 import os, tempfile, re namespace
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_commands.py 6 import os, tempfile, re namespace
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
defaults.py 21 import re namespace
33 ignore = re.compile(r"^\s*(?:#.+)?$")
34 consider = re.compile(r"^\s*(\w+)\s*=\s*(.+?)\s*$")
42 # We're only exporting one useful function, so why not be a function
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_commands.py 6 import os, tempfile, re namespace
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /frameworks/base/tests/SoundTriggerTests/src/android/hardware/soundtrigger/
SoundTriggerTest.java 213 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_SUCCESS, 1, local
218 re.writeToParcel(parcel, 0);
225 assertEquals(re, unparceled);
230 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_FAILURE, 1, local
235 re.writeToParcel(parcel, 0);
242 assertEquals(re, unparceled);
249 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_ABORT, 1, local
254 re.writeToParcel(parcel, 0);
261 assertEquals(re, unparceled);
268 RecognitionEvent re = new RecognitionEvent(SoundTrigger.RECOGNITION_STATUS_ABORT, 1 local
291 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( local
310 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( local
346 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( local
    [all...]
  /external/opencv3/modules/core/test/
test_dxt.cpp 17 w1.re = cos(angle);
19 w[0].re = wi.re = 1.;
24 double t = wi.re*w1.re - wi.im*w1.im;
25 wi.im = wi.re*w1.im + wi.im*w1.re;
26 wi.re = t;
68 sum.re += src->re*w[k].re - src->im*w[k].im
444 double re = (double)a[j]*(double)b[j] - (double)a[j+1]*(double)b[j+1]; local
453 double re = (double)a[j]*(double)b[j] + (double)a[j+1]*(double)b[j+1]; local
469 double re = a[j]*b[j] - a[j+1]*b[j+1]; local
478 double re = a[j]*b[j] + a[j+1]*b[j+1]; local
    [all...]
  /external/autotest/client/site_tests/hardware_Resolution/
hardware_Resolution.py 9 import logging, re namespace
44 if re.match(search_str, line):
69 if not res or not re.match(r'\d+x\d+$', res):
85 connector_match = re.match(_MODETEST_CONNECTOR_PATTERN, line)
93 mode_match = re.match(_MODETEST_MODE_PATTERN, line)
  /external/autotest/client/tests/xfstests/
xfstests.py 1 import os, re, glob, logging namespace
9 PASSED_RE = re.compile(r'Passed all \d+ tests')
10 FAILED_RE = re.compile(r'Failed \d+ of \d+ tests')
11 NA_RE = re.compile(r'Passed all 0 tests')
12 NA_DETAIL_RE = re.compile(r'(\d{3})\s*(\[not run\])\s*(.*)')
  /external/chromium-trace/catapult/devil/devil/utils/
reset_usb.py 9 import re namespace
16 _INDENTATION_RE = re.compile(r'^( *)')
17 _LSUSB_BUS_DEVICE_RE = re.compile(r'^Bus (\d{3}) Device (\d{3}):')
18 _LSUSB_ENTRY_RE = re.compile(r'^ *([^ ]+) +([^ ]+) *([^ ].*)?$')
19 _LSUSB_GROUP_RE = re.compile(r'^ *([^ ]+.*):$')

Completed in 2683 milliseconds

<<11121314151617181920>>