/external/chromium/third_party/libjingle/source/talk/examples/call/ |
console.cc | 59 LOG(LS_ERROR) << "Cannot re-start"; 103 int re; 105 re = system("stty echo"); 107 re = system("stty -echo"); 108 if (-1 == re)
|
/external/chromium_org/cc/ |
PRESUBMIT.py | 11 import re namespace 44 if re.search(r"\bASSERT\(", contents): 47 if re.search(r"ASSERT_NOT_REACHED\(", contents): 73 if re.search(r"using std::f?abs;", contents): 75 if re.search(r"\bfabsf?\(", contents): 81 if re.search(r"((?<!std::)(\babsf?\()|(?<!std::)(\bfabsf?\())", contents): 114 if re.search(r"\bD?LOG\s*\(\s*INFO\s*\)", contents): 116 if re.search(r"\bf?printf\(", contents): 154 match = re.search(
|
/external/chromium_org/chrome/test/functional/rlz/ |
rlztest.py | 11 import re namespace 135 if(re.search('events=', line)): 146 self.assertTrue(re.search('CHMZ', line)) 175 if(re.search('events=', line)): 219 self.assertFalse(re.search('CHMZ', self.driver.current_url)) 241 self.assertTrue(re.search('CHMZ', self.driver.current_url)) 252 if(re.search('search?', line)): 253 self.assertTrue(re.search('java', line)) 254 self.assertTrue(re.search('CHMZ', line))
|
/external/chromium_org/chrome/test/functional/ |
search_engines.py | 6 import re namespace 60 self.assertTrue(re.search('youtube', youtube['short_name'], 61 re.IGNORECASE)) 106 self.assertTrue(re.search(keyword, self.GetActiveTabURL().spec()))
|
/external/chromium_org/ppapi/ |
generate_ppapi_include_tests.py | 20 import re namespace 26 SOURCE_FILE_RE = re.compile('.+\.(cc|c|h)$') 33 IGNORE_RE = re.compile('^(examples|GLES2|proxy|tests\/clang).*') 149 header_re = re.compile('.+\.h$')
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
compile_frontend.py | 33 import re namespace 440 return re.sub(r"@param", "param", matchobj.group(1) or "") + "\n//" + matchobj.group(2) 443 source = re.sub(r"(/\*\*(?:[\s\n]*\*\s*@param[^\n]+\n)+\s*\*/\s*)?\n(\(function)", replace_function, source, count=1) 446 source = re.sub(r"\n(\s*return\s+[^;]+;\s*\n\}\)\s*)$", "\n/*\\1*/", source)
|
/external/chromium_org/third_party/opus/src/celt/tests/ |
test_unit_dft.c | 67 double re = cos(phase); local 74 re /= nfft; 78 ansr += in[k].r * re - in[k].i * im; 79 ansi += in[k].r * im + in[k].i * re;
|
/external/chromium_org/tools/metrics/histograms/ |
update_extension_functions.py | 12 import re namespace 38 m = re.match(regex, line) 63 if re.match(ENUM_END_MARKER, line): 72 if re.match(ENUM_START_MARKER, line):
|
/external/chromium_org/tools/ |
unused-symbols-report.py | 23 import re namespace 47 sym = re.sub(r', std::allocator<\S+\s+>', '', sym) 60 symbol_re = re.compile(r"'\.text\.(\S+)' in file '(\S+)'$") 61 path_re = re.compile(r"^out/[^/]+/[^/]+/([^/]+)/(.*)$")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 103 import re, tempfile, errno namespace 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name) 125 res = re.search(expr, trace) 142 res = re.search(r'\[.*\]\sSONAME\s+([^\s]+)', data) 163 res = re.search(r'\sSONAME\s+([^\s]+)', data) 184 ename = re.escape(name) 191 res = re.findall(expr, data) 244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type) 250 res = re.search(expr, data)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
utils.py | 24 import re namespace 51 specialsre = re.compile(r'[][\\()<>@,:;".]') 52 escapesre = re.compile(r'[][\\()"]') 80 s = re.sub(r'(?<!\r)\n', CRLF, s) 82 s = re.sub(r'\r(?!\n)', CRLF, s) 117 ecre = re.compile(r''' 125 ''', re.VERBOSE | re.IGNORECASE) 267 rfc2231_continuation = re.compile(r'^(?P<name>\w+)\*((?P<num>[0-9]+)\*?)?$')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fnmatch.py | 13 import re namespace 54 _cache[pat] = re.compile(res) 78 _cache[pat] = re.compile(res) 115 res = res + re.escape(c)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/ |
util.py | 103 import re, tempfile, errno namespace 106 expr = r'[^\(\)\s]*lib%s\.[^\(\)\s]*' % re.escape(name) 125 res = re.search(expr, trace) 142 res = re.search(r'\[.*\]\sSONAME\s+([^\s]+)', data) 163 res = re.search(r'\sSONAME\s+([^\s]+)', data) 184 ename = re.escape(name) 191 res = re.findall(expr, data) 244 expr = r'\s+(lib%s\.[^\s]+)\s+\(%s' % (re.escape(name), abi_type) 250 res = re.search(expr, data)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/ |
utils.py | 24 import re namespace 51 specialsre = re.compile(r'[][\\()<>@,:;".]') 52 escapesre = re.compile(r'[][\\()"]') 80 s = re.sub(r'(?<!\r)\n', CRLF, s) 82 s = re.sub(r'\r(?!\n)', CRLF, s) 117 ecre = re.compile(r''' 125 ''', re.VERBOSE | re.IGNORECASE) 267 rfc2231_continuation = re.compile(r'^(?P<name>\w+)\*((?P<num>[0-9]+)\*?)?$')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fnmatch.py | 13 import re namespace 54 _cache[pat] = re.compile(res) 78 _cache[pat] = re.compile(res) 115 res = res + re.escape(c)
|
/external/protobuf/gtest/test/ |
gtest-port_test.cc | 167 // Defines StringTypes as the list of all string types that class RE 180 // Tests RE's implicit constructors. 182 const RE empty(TypeParam("")); 185 const RE simple(TypeParam("hello")); 188 const RE normal(TypeParam(".*(\\w+)")); 192 // Tests that RE's constructors reject invalid regular expressions. 195 const RE invalid(TypeParam("?")); 199 // Tests RE::FullMatch(). 201 const RE empty(TypeParam("")); 202 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty)) [all...] |
/frameworks/base/services/java/com/android/server/print/ |
RemotePrintService.java | 217 } catch (RemoteException re) { 218 Slog.e(LOG_TAG, "Error canceling a pring job.", re); 245 } catch (RemoteException re) { 246 Slog.e(LOG_TAG, "Error announcing queued pring job.", re); 272 } catch (RemoteException re) { 273 Slog.e(LOG_TAG, "Error creating printer dicovery session.", re); 305 } catch (RemoteException re) { 306 Slog.e(LOG_TAG, "Error destroying printer dicovery session.", re); 342 } catch (RemoteException re) { 343 Slog.e(LOG_TAG, "Error starting printer dicovery.", re); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/ |
SimpleCParser.java | 132 catch (RecognitionException re) { 133 reportError(re); 134 recover(input,re); 135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 286 catch (RecognitionException re) { 287 reportError(re); 288 recover(input,re); 289 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 377 catch (RecognitionException re) { 378 reportError(re); [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCParser.java | 132 catch (RecognitionException re) { 133 reportError(re); 134 recover(input,re); 135 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 286 catch (RecognitionException re) { 287 reportError(re); 288 recover(input,re); 289 retval.tree = (Object)adaptor.errorNode(input, retval.start, input.LT(-1), re); 377 catch (RecognitionException re) { 378 reportError(re); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyParse.py | 1 import re namespace 14 _synchre = re.compile(r""" 33 """, re.VERBOSE | re.MULTILINE).search 37 _junkre = re.compile(r""" 41 """, re.VERBOSE).match 44 # so that we're robust in the face of incomplete program text. 46 _match_stringre = re.compile(r""" 62 """, re.VERBOSE | re.DOTALL).matc [all...] |
/device/generic/goldfish/qemud/ |
Android.mk | 3 # We're moving the emulator-specific platform libs to
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
Lexer.java | 98 catch (MismatchedRangeException re) { 99 reportError(re); 102 catch (MismatchedTokenException re) { 103 reportError(re); 106 catch (RecognitionException re) { 107 reportError(re); 108 recover(re); // throw out current char and try again 329 public void recover(RecognitionException re) { 331 //re.printStackTrace();
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
Lexer.js | 58 catch (re) { 59 if (re instanceof org.antlr.runtime.NoViableAltException) { 60 this.reportError(re); 61 this.recover(re); 62 } else if ( re instanceof org.antlr.runtime.RecognitionException ) { 63 this.reportError(re); 65 throw re; 271 recover: function(re) {
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t001lexer.py | 16 def reportError(self, re): 18 raise re
|