HomeSort by relevance Sort by last modified time
    Searched refs:compile (Results 176 - 200 of 1905) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/screensavers/WebView/
Android.mk 6 # Only compile source java files in this apk.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_coding.py 21 self.assertRaises(SyntaxError, compile, text, filename, 'exec')
27 compile(input, "<string>", "exec")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_coding.py 21 self.assertRaises(SyntaxError, compile, text, filename, 'exec')
27 compile(input, "<string>", "exec")
  /external/chromium_org/media/
PRESUBMIT.py 42 problem_re = input_api.re.compile(
44 exception_re = input_api.re.compile(
71 message_loop_proxy_re = input_api.re.compile(
109 uma_macro_re = input_api.re.compile(
115 uma_max_re = input_api.re.compile(r'.*(?:Max|MAX).* \+ 1')
  /external/chromium_org/native_client_sdk/src/build_tools/
easy_template.py 19 indent_re = re.compile(r'\s*')
64 statement_re = statement_re or re.compile(STATEMENT_RE)
65 expr_re = expr_re or re.compile(EXPR_RE)
108 f.read(), re.compile(STATEMENT_RE), re.compile(EXPR_RE))
  /external/chromium_org/tools/gyp/tools/
pretty_sln.py 41 begin_project = re.compile(('^Project\("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942'
44 end_project = re.compile('^EndProject$')
46 begin_dep = re.compile('ProjectSection\(ProjectDependencies\) = postProject$')
48 end_dep = re.compile('EndProjectSection$')
50 dep_line = re.compile(' *({.*}) = ({.*})$')
  /external/chromium_org/tools/metrics/histograms/
update_histogram_enum.py 42 START_REGEX = re.compile(start_marker)
43 ITEM_REGEX = re.compile(r'^(\w+)')
44 ITEM_REGEX_WITH_INIT = re.compile(r'(\w+)\s*=\s*(\d+)')
45 END_REGEX = re.compile(end_marker)
115 SOURCE_COMMENT_REGEX = re.compile('^ Generated from ')
  /external/jarjar/src/main/com/tonicsystems/jarjar/
Wildcard.java 26 private static Pattern dstar = Pattern.compile("\\*\\*");
27 private static Pattern star = Pattern.compile("\\*");
28 private static Pattern estar = Pattern.compile("\\+\\??\\)\\Z");
29 private static Pattern dollar = Pattern.compile("\\$");
50 this.pattern = Pattern.compile("\\A" + regex + "\\Z");
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 22 self.assertEqual(cmd.compile, 1)
38 cmd.compile = cmd.optimize = 1
45 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile not enabled')
58 cmd.compile = cmd.optimize = 1
75 cmd.compile = cmd.optimize = 1
91 cmd.compile = 1
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
py_compile.py 1 """Routine to "compile" a .py file to a .pyc (or .pyo) file.
15 __all__ = ["compile", "main", "PyCompileError"]
20 compile the file.
71 def compile(file, cfile=None, dfile=None, doraise=False): function
72 """Byte-compile one Python source file to Python bytecode.
82 raised when a compile error is found. If an exception
89 Note that it isn't necessary to byte-compile Python modules for
95 good idea to byte-compile all modules upon installation, since
102 byte-compile all installed files (or all files in selected
113 codeobject = __builtin__.compile(codestring, dfile or file,'exec'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_install_lib.py 22 self.assertEqual(cmd.compile, 1)
38 cmd.compile = cmd.optimize = 1
45 @unittest.skipIf(sys.dont_write_bytecode, 'byte-compile not enabled')
58 cmd.compile = cmd.optimize = 1
75 cmd.compile = cmd.optimize = 1
91 cmd.compile = 1
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
py_compile.py 1 """Routine to "compile" a .py file to a .pyc (or .pyo) file.
15 __all__ = ["compile", "main", "PyCompileError"]
20 compile the file.
71 def compile(file, cfile=None, dfile=None, doraise=False): function
72 """Byte-compile one Python source file to Python bytecode.
82 raised when a compile error is found. If an exception
89 Note that it isn't necessary to byte-compile Python modules for
95 good idea to byte-compile all modules upon installation, since
102 byte-compile all installed files (or all files in selected
113 codeobject = __builtin__.compile(codestring, dfile or file,'exec'
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 47 private final static Pattern sPattern0Line1 = Pattern.compile(
55 private final static Pattern sPattern1Line1 = Pattern.compile(
63 private final static Pattern sPattern1Line2 = Pattern.compile(
70 private final static Pattern sPattern2Line1 = Pattern.compile(
78 private final static Pattern sPattern2Line2 = Pattern.compile(
84 private final static Pattern sPattern3Line1 = Pattern.compile(
91 private final static Pattern sPattern4Line1 = Pattern.compile(
99 private final static Pattern sPattern4Line2 = Pattern.compile(
106 private final static Pattern sPattern5Line1 = Pattern.compile(
113 private final static Pattern sPattern6Line1 = Pattern.compile(
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
rc2grd.py 34 _FILE_REF = lazy_re.compile('''
41 _DIALOG = lazy_re.compile(
47 _MENU = lazy_re.compile('^(?P<id>[A-Z0-9_]+)\s+MENU.+?^BEGIN\s*$.+?^END\s*$',
52 _VERSIONINFO = lazy_re.compile(
58 _STRING_TABLE = lazy_re.compile(
66 _MESSAGE = lazy_re.compile('''
76 _COMMENT_TEXT = lazy_re.compile('^\s*//\s*(?P<text>.+?)$', re.MULTILINE)
80 _WHITESPACE_ONLY = lazy_re.compile('\A\s*\Z', re.MULTILINE)
88 _FORMAT_SPECIFIER = lazy_re.compile(
155 self.not_localizable_re = re.compile('Not locali(s|z)able'
    [all...]
  /external/smali/smali/
build.gradle 68 compile project(':util')
69 compile project(':dexlib2')
70 compile depends.antlr_runtime
71 compile depends.commons_cli
148 from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
  /art/compiler/dex/
verification_results.cc 52 bool compile = IsCandidateForCompilation(ref, method_verifier->GetAccessFlags()); local
54 if (!compile && !method_verifier->HasCheckCasts()) {
58 const VerifiedMethod* verified_method = VerifiedMethod::Create(method_verifier, compile);
113 // Don't compile class initializers, ever.
  /build/core/
checktree 14 excludes_compiled = map(re.compile, excludes)
59 regex_compiled = re.compile(regex)
60 filt_compiled = re.compile(filt)
  /external/chromium_org/build/
compiler_version.py 59 version_re = re.compile(r"(\d+)\.(\d+)")
65 version_re = re.compile(r"^GNU [^ ]+ .* (\d+).(\d+).*?$", re.M)
76 version_re = re.compile(r"^GNU [^ ]+ .* (\d+).(\d+).*?$", re.M)
  /external/chromium_org/ppapi/
generate_ppapi_include_tests.py 26 SOURCE_FILE_RE = re.compile('.+\.(cc|c|h)$')
33 IGNORE_RE = re.compile('^(examples|GLES2|proxy|tests\/clang).*')
100 * This test simply includes all the C headers to ensure they compile with a C
110 // This test simply includes all the C++ headers to ensure they compile with a
132 # (with compile-time assertions) that all structs and enums are a particular
149 header_re = re.compile('.+\.h$')
  /external/chromium_org/tools/android/adb_profile_chrome/
chrome_controller.py 28 re.compile(r'Logging performance trace to file')
30 re.compile(r'Profiler finished[.] Results are in (.*)[.]')
42 re.compile(r'{"traceCategoriesList(.*)'), None, timeout=5).group(0)
  /external/chromium_org/v8/test/mjsunit/
testcfg.py 34 FLAGS_PATTERN = re.compile(r"//\s+Flags:(.*)")
35 FILES_PATTERN = re.compile(r"//\s+Files:(.*)")
36 SELF_SCRIPT_PATTERN = re.compile(r"//\s+Env: TEST_FILE_NAME")
  /external/chromium_org/v8/tools/
js2c.py 56 lines = re.sub(re.compile(r'/\*.*?\*/', re.DOTALL), '', lines) # comments.
70 EVAL_PATTERN = re.compile(r'\beval\s*\(')
71 WITH_PATTERN = re.compile(r'\bwith\s*\(')
154 CONST_PATTERN = re.compile(r'^const\s+([a-zA-Z0-9_]+)\s*=\s*([^;]*);$')
155 MACRO_PATTERN = re.compile(r'^macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$')
156 PYTHON_MACRO_PATTERN = re.compile(r'^python\s+macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*=\s*([^;]*);$')
171 constants.append((re.compile("\\b%s\\b" % name), value))
178 macros.append((re.compile("\\b%s\\(" % name), TextMacro(args, body)))
186 macros.append((re.compile("\\b%s\\(" % name), PythonMacro(args, fun)))
191 INLINE_MACRO_PATTERN = re.compile(r'macro\s+([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*\n'
    [all...]
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_B_D_T_.py 50 def compile(self, ttFont): member in class:cbdt_bitmap_format_17
69 def compile(self, ttFont): member in class:cbdt_bitmap_format_18
85 def compile(self, ttFont): member in class:cbdt_bitmap_format_19
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
testit 41 function compile function
43 echo " [COMPILE] $1"
81 if compile $FILE &> /dev/null
84 echo " [FAIL ] $FILE should not compile"
95 if compile $FILE
105 echo " [FAIL ] $FILE failed to compile"
  /art/test/094-pattern/src/
Main.java 72 public static final Pattern WEB_URL = Pattern.compile(WEB_URL_STR);

Completed in 374 milliseconds

1 2 3 4 5 6 78 91011>>