Searched refs:compile (Results 1 - 25 of 772) sorted by relevance

1234567891011>>

/external/smali/dexlib/
H A Dbuild.gradle33 compile 'com.google.code.findbugs:jsr305:1.3.9'
34 compile 'com.google.guava:guava:13.0.1'
/external/smali/util/
H A Dbuild.gradle33 compile 'commons-cli:commons-cli:1.2'
/external/chromium_org/v8/test/webkit/
H A Dregexp-compile.js25 'Test RegExp.compile method.'
31 re.compile("a");
38 re.compile("b", "g");
41 re.compile(new RegExp("c"));
44 re.compile(new RegExp("c", "i"));
49 shouldThrow("re.compile(new RegExp('c'), 'i');");
52 re.compile(re, undefined);
55 shouldThrow("re.compile(new RegExp('+'));");
57 re.compile(undefined);
60 re.compile(nul
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dregexp-compile.js29 // compile event.
33 re.compile("y");
36 re.compile("(x)");
40 re.compile("(y)");
/external/v8/test/mjsunit/
H A Dregexp-compile.js29 // compile event.
33 re.compile("y");
36 re.compile("(x)");
40 re.compile("(y)");
/external/stlport/test/compiler/
H A Dgcc.mak6 ALL_TAGS := compile-only
11 compile-only: $(OUTPUT_DIRS) $(OBJ)
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Djavascripttokenizer.py65 NUMBER = re.compile(r"""
74 SINGLE_QUOTE = re.compile(r"'")
75 SINGLE_QUOTE_TEXT = re.compile(r"([^'\\]|\\(.|$))+")
76 DOUBLE_QUOTE = re.compile(r'"')
77 DOUBLE_QUOTE_TEXT = re.compile(r'([^"\\]|\\(.|$))+')
79 START_SINGLE_LINE_COMMENT = re.compile(r'//')
80 END_OF_LINE_SINGLE_LINE_COMMENT = re.compile(r'//$')
82 START_DOC_COMMENT = re.compile(r'/\*\*')
83 START_BLOCK_COMMENT = re.compile(r'/\*')
84 END_BLOCK_COMMENT = re.compile(
[all...]
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Djavascripttokenizer.py65 NUMBER = re.compile(r"""
74 SINGLE_QUOTE = re.compile(r"'")
75 SINGLE_QUOTE_TEXT = re.compile(r"([^'\\]|\\(.|$))+")
76 DOUBLE_QUOTE = re.compile(r'"')
77 DOUBLE_QUOTE_TEXT = re.compile(r'([^"\\]|\\(.|$))+')
79 START_SINGLE_LINE_COMMENT = re.compile(r'//')
80 END_OF_LINE_SINGLE_LINE_COMMENT = re.compile(r'//$')
82 START_DOC_COMMENT = re.compile(r'/\*\*')
83 START_BLOCK_COMMENT = re.compile(r'/\*')
84 END_BLOCK_COMMENT = re.compile(
[all...]
/external/smali/baksmali/
H A Dbuild.gradle37 compile project(':util')
38 compile project(':dexlib')
39 compile 'commons-cli:commons-cli:1.2'
40 compile 'com.google.code.findbugs:jsr305:1.3.9'
50 from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
/external/apache-http/src/org/apache/http/conn/util/
H A DInetAddressUtils.java45 Pattern.compile(
49 Pattern.compile(
53 Pattern.compile(
/external/chromium_org/tools/grit/grit/tool/
H A Dtoolbar_preprocess.py19 _IDS_COMMAND_MACRO = lazy_re.compile(
21 _LINE_FEED_PH = lazy_re.compile(r'\$lf;')
22 _PH_COMMENT = lazy_re.compile(r'PHRWR')
23 _COMMENT = lazy_re.compile(r'^(\s*)//.*')
/external/javasqlite/src/main/java/SQLite/
H A DVm.java16 * Internal last error code for compile()/step() methods.
29 * Vm vm = db.compile("select * from x; select * from y;");
33 * while (vm.compile()) {
55 public native boolean compile() throws SQLite.Exception; method in class:Vm
/external/chromium_org/tools/grit/grit/
H A Dlazy_re_unittest.py23 rex = lazy_re.compile('bingo')
29 rex = lazy_re.compile(flags=re.I, pattern='BiNgO')
33 rex = lazy_re.compile('BiNgO', flags=re.I)
H A Dlazy_re.py6 '''In GRIT, we used to compile a lot of regular expressions at parse
7 time. Since many of them never get used, we use lazy_re to compile
30 self._lazy_re = re.compile(*self._stash_args, **self._stash_kwargs)
40 def compile(*args, **kwargs): function
41 '''Creates a LazyRegexObject that, when invoked on, will compile a
42 re.RegexObject (via re.compile) with the same arguments passed to
/external/proguard/build/
H A Dbuild.sh40 function compile { function
69 compile $PROGUARD
72 compile $PROGUARD_GUI
75 compile $RETRACE
80 compile $ANT_TASK
84 echo "if you want to compile the optional ProGuard Ant task."
89 compile $WTK_PLUGIN
93 echo "if you want to compile the optional ProGuard WTK plugin."
/external/chromium_org/build/android/pylib/utils/
H A Dapk_helper.py16 package_name_re = re.compile(r'package: .*name=\'(\S*)\'')
/external/chromium_org/third_party/WebKit/Source/core/scripts/
H A Dlist_idl_files_with_partial_interface.py34 partial_interface_regex = re.compile(r'partial\s+interface\s+(\w+).+\]', re.M | re.S)
/external/openfst/src/extensions/far/
H A Dstrings.cc17 #include <fst/extensions/far/compile-strings.h>
/external/llvm/utils/lint/
H A Dcpp_lint.py23 include_gtest_re = re.compile(r'^#include "gtest/(.*)"')
24 include_llvm_re = re.compile(r'^#include "llvm/(.*)"')
25 include_support_re = re.compile(r'^#include "(Support/.*)"')
26 include_config_re = re.compile(r'^#include "(Config/.*)"')
27 include_system_re = re.compile(r'^#include <(.*)>')
/external/chromium_org/tools/grit/grit/gather/
H A Drc.py24 _NEED_UNESCAPE = lazy_re.compile(r'""|\\\\|\\n|\\t')
27 _NEED_ESCAPE = lazy_re.compile(r'"|\n|\t|\\|\&nbsp\;')
78 first_line_re = re.compile(r'\s*' + self.extkey + r'\b')
122 dialog_re_ = lazy_re.compile('''
188 menu_re_ = lazy_re.compile('''
252 version_re_ = lazy_re.compile('''
280 dialog_re_ = lazy_re.compile('''
293 first_line_re = re.compile(r'\s*' + self.extkey + r'\b')
329 accelerators_re_ = lazy_re.compile('''
H A Dadmin_template.py31 _STRINGS_SECTION = lazy_re.compile(
36 _TRANSLATEABLES = lazy_re.compile(
/external/qemu/distrib/sdl-1.2.15/build-scripts/
H A Dmakedep.sh54 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
60 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
66 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
72 \$(LIBTOOL) --tag=CC --mode=compile \$(auxdir)/strip_fPIC.sh \$(NASM) -I\$(srcdir)/src/hermes/ $src -o \$@
78 \$(LIBTOOL) --mode=compile \$(CC) \$(CFLAGS) \$(EXTRA_CFLAGS) -c $src -o \$@
84 \$(LIBTOOL) --tag=RC --mode=compile \$(WINDRES) $src -o \$@
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
H A Ddeps.py46 pattern = re.compile(self._variable_regexp % name)
53 pattern = re.compile(self._variable_regexp % name)
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dsources.mak6 # this mode, compile MAPI_FILES.
9 # this mode, compile MAPI_UTIL_FILES with MAPI_MODE_UTIL defined.
12 # this mode, compile MAPI_GLAPI_FILES with MAPI_MODE_GLAPI defined.
15 # this mode, compile MAPI_BRIDGE_FILES with MAPI_MODE_BRIDGE defined.
/external/chromium_org/tools/telemetry/telemetry/page/
H A Dpage_filter.py13 self._page_regex = re.compile(options.page_filter)
21 self._page_exclude_regex = re.compile(options.page_filter_exclude)

Completed in 1255 milliseconds

1234567891011>>