/prebuilts/gdb/linux-x86/lib/python2.7/idlelib/ |
OutputWindow.py | 3 import re namespace 82 l.append(re.compile(pat, re.IGNORECASE))
|
ColorDelegator.py | 2 import re namespace 32 prog = re.compile(make_pat(), re.S) 33 idprog = re.compile(r"\s+(\w+)", re.S) 34 asprog = re.compile(r".*?\b(as)\b") 239 # We're in an inconsistent state, and the call to
|
/prebuilts/gdb/linux-x86/share/gdb/python/gdb/ |
xmethod.py | 20 import re namespace 205 cm = re.match(self._class_matcher, str(class_type.unqualified().tag)) 206 mm = re.match(self._method_matcher, method_name)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
OutputWindow.py | 3 import re namespace 82 l.append(re.compile(pat, re.IGNORECASE))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
OutputWindow.py | 3 import re namespace 82 l.append(re.compile(pat, re.IGNORECASE))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
descriptors.py | 29 import re namespace 85 self.instances[obj] = re.compile(value) 101 self.instances[obj] = re.compile(value) 166 keep the max assigned value until re-initialized.
|
/external/autotest/client/bin/ |
fsinfo.py | 6 import os, re, tempfile namespace 49 m = re.search('(\w+) = {', line) 175 'Filesystem features': lambda d, k: re.sub(' ', ',', d[k]), 217 m = re.search('^([-\w]+)', line) 237 if re.match('[0-9]+', value): 354 needed_out = re.sub('internal log', 'internal ', needed_out)
|
/external/autotest/client/virt/tests/ |
whql_submission.py | 1 import logging, os, re namespace 110 errors = re.findall("^Error:.*$", o, re.I | re.M) 180 result_summaries = re.findall(r"---- \[.*?\] ----", o, re.DOTALL)
|
/external/autotest/server/cros/ |
factory_install_test.py | 17 debug_make_factory_package: whether to re-make the factory package before 22 import glob, logging, os, re, shutil, socket, sys, thread, time, traceback namespace 245 lambda contents: re.sub( 250 re.MULTILINE)) 279 re.findall(r"status change for (\S+) : \S+ -> (\S+)", data)) 325 assert re.search( 326 "^CHROMEOS_RELEASE_DESCRIPTION=.*Test Build", data, re.MULTILINE), (
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
android_profiling_helper.py | 10 import re namespace 35 return re.match(r'.*Machine:\s+(\w+)', headers, re.DOTALL).group(1) 83 # TODO(skyostil): Check .note.gnu.build-id instead once we're using 119 missing_lib_re = re.compile( 290 toolchain_version = re.match(r'.*GCC: \(GNU\) ([\w.]+)', 291 elf_comment, re.DOTALL)
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
SwatDeprecated.java | 114 RuntimeException re = new RuntimeException(e.getMessage()); local 115 re.initCause(e); 116 throw re; 223 // swat copyrights in the first 20 lines while we're at it 305 RuntimeException re = new RuntimeException(e.getMessage()); local 306 re.initCause(e); 307 throw re;
|
/external/v8/test/mjsunit/regress/ |
regress-regexp-codeflush.js | 36 var re = new RegExp('(s)', "g"); 45 // Make a long string with plenty of matches for re. 54 x.replace(re, foo);
|
/external/v8/tools/release/ |
test_scripts.py | 532 re.sub(r"BUG=v8:(.*)$", r"(issue \1)", "BUG=v8:321")) 534 re.sub(r"BUG=(.*)$", r"(Chromium issue \1)", "BUG=321")) 674 self.assertTrue(re.search(r"patch content", patch)) 768 self.assertTrue(re.search(r"#define V8_MINOR_VERSION\s+22", version)) 769 self.assertTrue(re.search(r"#define V8_BUILD_NUMBER\s+5", version)) 770 self.assertFalse(re.search(r"#define V8_BUILD_NUMBER\s+6", version)) 771 self.assertTrue(re.search(r"#define V8_PATCH_LEVEL\s+0", version)) 773 re.search(r"#define V8_IS_CANDIDATE_VERSION\s+0", version)) [all...] |
/frameworks/base/core/java/android/app/ |
SearchManager.java | 522 * not want to re-speak (e.g. by typing). [all...] |
/frameworks/base/core/java/android/bluetooth/ |
BluetoothA2dp.java | 130 } catch (Exception re) { 131 Log.e(TAG,"",re); 141 } catch (Exception re) { 142 Log.e(TAG,"",re); 197 } catch (Exception re) { 198 Log.e(TAG,"",re);
|
BluetoothA2dpSink.java | 140 } catch (Exception re) { 141 Log.e(TAG,"",re); 151 } catch (Exception re) { 152 Log.e(TAG,"",re); 207 } catch (Exception re) { 208 Log.e(TAG,"",re);
|
BluetoothAvrcpController.java | 139 } catch (Exception re) { 140 Log.e(TAG,"",re); 150 } catch (Exception re) { 151 Log.e(TAG,"",re); 207 } catch (Exception re) { 208 Log.e(TAG,"",re);
|
BluetoothHealth.java | 110 } catch (Exception re) { 111 Log.e(TAG,"",re); 121 } catch (Exception re) { 122 Log.e(TAG,"",re); 514 } catch (Exception re) { 515 Log.e(TAG,"",re);
|
BluetoothMap.java | 65 } catch (Exception re) { 66 Log.e(TAG,"",re); 76 } catch (Exception re) { 77 Log.e(TAG,"",re); 144 } catch (Exception re) { 145 Log.e(TAG,"",re);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/email/ |
generator.py | 8 import re namespace 20 fcre = re.compile(r'^From ', re.MULTILINE) 370 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
ColorDelegator.py | 2 import re namespace 32 prog = re.compile(make_pat(), re.S) 33 idprog = re.compile(r"\s+(\w+)", re.S) 34 asprog = re.compile(r".*?\b(as)\b") 239 # We're in an inconsistent state, and the call to
|
/prebuilts/gdb/darwin-x86/lib/python2.7/json/ |
decoder.py | 3 import re namespace 15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL 57 STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS) 146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
|
/prebuilts/gdb/linux-x86/lib/python2.7/email/ |
generator.py | 8 import re namespace 20 fcre = re.compile(r'^From ', re.MULTILINE) 370 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
|
/prebuilts/gdb/linux-x86/lib/python2.7/json/ |
decoder.py | 3 import re namespace 15 FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL 57 STRINGCHUNK = re.compile(r'(.*?)(["\\\x00-\x1f])', FLAGS) 146 WHITESPACE = re.compile(r'[ \t\n\r]*', FLAGS)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
generator.py | 8 import re namespace 20 fcre = re.compile(r'^From ', re.MULTILINE) 370 cre = re.compile('^--' + re.escape(b) + '(--)?$', re.MULTILINE)
|