/external/junit/src/org/junit/runner/ |
Description.java | 240 return Pattern.compile("(.*)\\((.*)\\)").matcher(toString());
|
/external/lldb/test/lang/cpp/class_types/ |
TestClassTypesDisassembly.py | 78 frameRE = re.compile(r"""
|
/external/lldb/test/lang/cpp/stl/ |
TestStdCXXDisassembly.py | 80 codeRE = re.compile(r"""
|
/external/lldb/test/lang/objc/foundation/ |
TestFoundationDisassembly.py | 43 codeRE = re.compile(r"""
|
/external/llvm/utils/ |
check-each-file | 128 echo Trying to compile $f with native gcc and rebuild $program
|
findmisopt | 77 # optimizations that opt -std-compile-opts and gccld run, in the same order. 78 opt_switches=`llvm-as < /dev/null -o - | opt -std-compile-opts -disable-output -debug-pass=Arguments 2>&1 | sed 's/Pass Arguments: //'`
|
/external/markdown/markdown/extensions/ |
def_list.py | 29 RE = re.compile(r'(^|\n)[ ]{0,3}:[ ]{1,3}(.*?)(\n|$)')
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/ |
Path.java | 34 static Pattern component = Pattern.compile("(....|\\.\\.)(\\[(.*)\\])?");
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/ |
PluralResourceLoader.java | 37 XPathExpression itemXPath = XPathFactory.newInstance().newXPath().compile("item");
|
/external/skia/gm/rebaseline_server/ |
download_actuals.py | 51 self._image_filename_re = re.compile(gm_json.IMAGE_FILENAME_PATTERN)
|
/frameworks/base/core/java/android/net/ |
WebAddress.java | 60 static Pattern sAddressPattern = Pattern.compile(
|
/frameworks/ex/common/java/com/android/common/ |
Rfc822Validator.java | 80 Pattern.compile(EMAIL_ADDRESS_LOCALPART_REGEXP + "@" + DOMAIN_REGEXP);
|
/ndk/sources/third_party/googletest/googletest/test/ |
gtest_help_test.py | 65 HELP_REGEX = re.compile(
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
Address.java | 66 private static final Pattern REMOVE_OPTIONAL_BRACKET = Pattern.compile("^<?([^>]+)>?$"); 68 private static final Pattern REMOVE_OPTIONAL_DQUOTE = Pattern.compile("^\"?([^\"]*)\"?$"); 70 private static final Pattern UNQUOTE = Pattern.compile("\\\\([\\\\\"])"); 84 Pattern.compile("\\A" + LOCAL_PART + "@" + DOMAIN_PART + "\\z");
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileAwareUriMatcher.java | 35 private static final Pattern PATH_SPLIT_PATTERN = Pattern.compile("/");
|
/prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/ |
printing.py | 164 self.compiled_re = re.compile(regexp)
|
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/ |
printing.py | 164 self.compiled_re = re.compile(regexp)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/ |
regexp.h | 62 RETURN(ptr) Used for normal exit of the `compile' function. `ptr' 66 ERROR(val) Used for abnormal return from `compile'. `val' is the 96 /* Get and compile the user supplied pattern up to end of line or 103 compile (char *__restrict instring, char *__restrict expbuf, function 172 /* Now compile the pattern. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
regexp.h | 62 RETURN(ptr) Used for normal exit of the `compile' function. `ptr' 66 ERROR(val) Used for abnormal return from `compile'. `val' is the 96 /* Get and compile the user supplied pattern up to end of line or 103 compile (char *__restrict instring, char *__restrict expbuf, function 172 /* Now compile the pattern. */
|
/prebuilts/gcc/linux-x86/mips/mips64el-linux-android-4.8/share/gdb/python/gdb/ |
printing.py | 164 self.compiled_re = re.compile(regexp)
|
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.8/share/gdb/python/gdb/ |
printing.py | 164 self.compiled_re = re.compile(regexp)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/ |
build_scripts.py | 15 first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
util.py | 95 rel_re = re.compile (r'[\d.]+') 248 _wordchars_re = re.compile(r'[^\\\'\"%s ]*' % string.whitespace) 249 _squote_re = re.compile(r"'(?:[^'\\]|\\.)*'") 250 _dquote_re = re.compile(r'"(?:[^"\\]|\\.)*"') 355 """Byte-compile a collection of Python source files to either .pyc 357 to compile; any files that don't end in ".py" are silently skipped. 394 # always compile indirectly if the current interpreter is in either 454 # "Direct" byte-compilation: use the py_compile module to compile 459 from py_compile import compile namespace 486 compile(file, cfile, dfile [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/ |
header.py | 34 ecre = re.compile(r''' 48 fcre = re.compile(r'[\041-\176]+:$') 52 _embeded_header = re.compile(r'\n[^ \t]+:') 448 cre = re.compile(r'%s\s*' % ch)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 106 re.compile, (Token, PseudoToken, Single3, Double3)) 107 endprogs = {"'": re.compile(Single), '"': re.compile(Double), 239 cookie_re = re.compile("coding[:=]\s*([-\w.]+)")
|