HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 726 - 750 of 1965) sorted by null

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_future.py 7 rx = re.compile('\((\S+).py, line (\d+)')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
token.py 102 prog = re.compile(
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_scripts.py 15 first_line_re = re.compile('^#!.*python[0-9.]*([ \t].*)?$')
  /prebuilts/python/linux-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/linux-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/linux-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.]+)")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_future.py 7 rx = re.compile('\((\S+).py, line (\d+)')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
token.py 102 prog = re.compile(
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ConvertToDpFix.java 62 Pattern pattern = Pattern.compile("(\\d+)px"); //$NON-NLS-1$
  /cts/libs/vogar-expect/src/vogar/
ExpectationStore.java 165 pattern = Pattern.compile(reader.nextString(), PATTERN_FLAGS);
167 pattern = Pattern.compile(".*" + Pattern.quote(reader.nextString()) + ".*", PATTERN_FLAGS);
  /cts/tools/utils/cts/
tools.py 173 exp = re.compile(pattern)
188 exp = re.compile(pattern)
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 50 Pattern declaredByPattern = Pattern.compile(declaredBy);
51 Pattern memberNamePattern = Pattern.compile(memberName);
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 46 static Pattern dotdotPattern = Pattern.compile(dotdot);
47 static Pattern doubleEtcPattern = Pattern.compile(doubleEtc);
  /external/antlr/antlr-3.4/runtime/JavaScript/build/
README 32 Compile Tests:
39 3) Run 'ant compile-tests'. This can take a while. Warnings (but not errors)
44 1) Compile the tests using the directions above.
  /external/bison/etc/
bench.pl.in 329 sub compile ($) subroutine
355 compile ($name);
  /external/bison/tests/
Makefile.am 82 $(TESTSUITE) $(TESTSUITEFLAGS) --compile-c-with-cxx
  /external/chromium_org/build/android/
install_emulator_deps.py 68 pattern = re.compile('id: [0-9]+ or "android-%d"' % api_level)
197 pattern = re.compile('\s*([0-9]+)- SDK Platform Android [\.,0-9]+, API %d.*' %
  /external/chromium_org/build/util/
lastchange.py 16 _GIT_SVN_ID_REGEX = re.compile(r'.*git-svn-id:\s*([^@]*)@([0-9]+)', re.DOTALL)
169 svn_url_regex = re.compile(
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 89 ids_re = re.compile('<h[23].*id=.*?>')
90 headings_re = re.compile('<h[23].*?>')
  /external/chromium_org/components/crash/tools/
generate_breakpad_symbols.py 77 lib_re = re.compile('\t.* => (.+) \(.*\)$')
99 lib_re = re.compile('\t(.*) \(compatibility .*\)$')
  /external/chromium_org/native_client_sdk/src/tools/lib/
get_shared_deps.py 27 NeededMatcher = re.compile('^ *NEEDED *([^ ]+)\n$')
28 FormatMatcher = re.compile('^(.+):\\s*file format (.+)\n$')
  /external/chromium_org/remoting/tools/
zip2msi.py 117 quote_matcher_regex = re.compile(r'\s|"')
118 quote_replacer_regex = re.compile(r'(\\*)"')
  /external/chromium_org/sdch/open-vcdiff/
configure.ac 98 This way, when we compile the dll, we export our functions/classes.
100 internally, to compile the DLL, and every DLL source file
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
utilities.py 183 # re.compile needed b/c Python 2.6 doesn't support flags in re.sub
184 single_line_comment_re = re.compile(r'//.*$', flags=re.MULTILINE)
185 block_comment_re = re.compile(r'/\*.*?\*/', flags=re.MULTILINE | re.DOTALL)

Completed in 2478 milliseconds

<<21222324252627282930>>