/frameworks/compile/slang/tests/ |
test.py | 13 import re namespace 153 bc_dst = re.sub('tmp\/', cts_res_raw_path, bc_src, 1) 156 java_dst = re.sub('tmp\/', cts_src_path, java_src, 1)
|
/pdk/build/ |
prepare_pdk_tree.py | 23 import re namespace 33 self.patterns = [re.compile('path=\"([^\"]*)\".*groups=\"([^\"]*)\"'), \ 34 re.compile('groups=\"([^\"]*)\".*path=\"([^\"]*)\"')]
|
/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);
|
/frameworks/base/core/java/android/bluetooth/ |
BluetoothHealth.java | 111 } catch (Exception re) { 112 Log.e(TAG,"",re); 124 } catch (Exception re) { 125 Log.e(TAG,"",re); 507 } catch (Exception re) { 508 Log.e(TAG,"",re);
|
BluetoothInputDevice.java | 200 } catch (Exception re) { 201 Log.e(TAG,"",re); 213 } catch (Exception re) { 214 Log.e(TAG,"",re); 262 } catch (Exception re) { 263 Log.e(TAG,"",re);
|
/bionic/libc/arch-x86/bionic/ |
clone.S | 42 # we're in the child thread now, call __thread_entry 49 # we're the parent; nothing to do. 102 # we're in the child now, call __bionic_clone_entry 109 # we're the parent; nothing to do.
|
/bionic/libc/tools/zoneinfo/ |
generate | 7 import re namespace 68 new_version = re.search('(tzdata.+)\\.tar\\.gz', data_filename).group(1) 125 # If you're several releases behind, we'll walk you through the upgrades
|
/build/tools/ |
product_debug.py | 18 import re namespace 53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
|
/development/testrunner/test_defs/ |
gtest.py | 22 import re namespace 117 if re.search("_test$|_test_$|_unittest$|_unittest_$|^test_", name):
|
native_test.py | 22 import re namespace 120 if re.search("_test$|_test_$|_unittest$|_unittest_$|^test_", name):
|
/external/aac/libFDK/include/ |
FDK_trigFcts.h | 184 sl = (LONG)tmp.v.re; 190 cl = (LONG)tmp.v.re;
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t005lexer.py | 16 def reportError(self, re): 18 raise re
|
t010lexer.py | 16 def reportError(self, re): 18 raise re
|
t011lexer.py | 16 def reportError(self, re): 18 raise re
|
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
nuances.rb | 76 def recover(re) 77 raise re
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemValueOf.java | 251 catch (RuntimeException re) { 252 TransformerException te = new TransformerException(re);
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
htmlutil.py | 25 import re namespace 117 contents = re.sub(r'<([^\s\w/])',
|
simplefileflags.py | 24 import re namespace 149 ignore_dirs_regexs.append(re.compile(r'(^|[\\/])%s[\\/]' % ignore))
|
/external/icu4c/data/translit/ |
trnsfiles.mk | 10 # Then, you can have your local changes remain even if you upgrade or re
|
/external/markdown/markdown/extensions/ |
def_list.py | 22 import markdown, re namespace 29 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)') 32 return bool(self.RE.search(block)) 36 m = self.RE.search(block)
|
/external/skia/bench/ |
gen_skp_ranges.py | 28 import re namespace 147 range_match = re.search('(\d+)\:(\d+)', options.rev_range)
|
/external/skia/tools/ |
svndiff.py | 16 import re namespace 102 dest_filename = re.sub(os.sep, '__', modified_file_path)
|
/external/v8/test/mjsunit/ |
regexp-indexof.js | 28 function CheckMatch(re, str, matches) { 29 assertEquals(matches.length > 0, re.test(str)); 30 var result = str.match(re); 42 if (re.global || idx == 0) {
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-168347.js | 198 var re = /\s|\\t|\\n/g; 199 return str.replace(re, '');
|
/external/webkit/Tools/Scripts/ |
print-vse-failure-logs | 37 import re namespace 94 output_window_table = soup.find(text=re.compile("Output Window")).findParent("table")
|