HomeSort by relevance Sort by last modified time
    Searched defs:compile (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/proguard/build/
build.sh 40 function compile { function
41 # Compile java source files.
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."
  /prebuilts/tools/common/proguard/proguard4.7/build/
build.sh 40 function compile { function
41 # Compile java source files.
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."
  /development/ide/emacs/
android-compile.el 1 ;;; android-compile.el --- Compile the Android source tree.
19 ;; Helper functions to compile Android file within emacs.
25 ;; The only interactive function is 'android-compile'.
26 ;; In your .emacs load this file (e.g (require 'android-compile)) then:
28 ;; (add-hook 'c++-mode-hook 'android-compile)
29 ;; (add-hook 'java-mode-hook 'android-compile)
31 ;; (global-set-key [f9] 'android-compile)
34 ;; TODO: Maybe we could cache the result of the compile function in
39 (require 'compile)
    [all...]
  /external/chromium_org/tools/grit/grit/
lazy_re.py 6 '''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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
__init__.py 17 compile(source, filename, mode, flags=None, dont_inherit=None)
18 Returns a code object. A replacement for the builtin compile() function.
31 from compiler.pycodegen import compile, compileFile namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
__init__.py 17 compile(source, filename, mode, flags=None, dont_inherit=None)
18 Returns a code object. A replacement for the builtin compile() function.
31 from compiler.pycodegen import compile, compileFile namespace
  /external/bison/etc/
bench.pl.in 329 sub compile ($) subroutine
355 compile ($name);
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/tasks/support/
gl-matrix.rb 34 GLMatrix.compile
63 def compile(source = 'gl-matrix.js', dest = 'dist/gl-matrix.js') method in class:GLMatrix
77 dest = compile source, dest do |js|
78 Uglifier.compile js
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
InFilesCompiler.pm 104 sub compile() subroutine
  /external/guava/guava/src/com/google/common/io/
PatternFilenameFilter.java 48 this(Pattern.compile(patternStr));
  /external/javasqlite/src/main/java/SQLite/
Vm.java 16 * Internal last error code for compile()/step() methods.
29 * Vm vm = db.compile("select * from x; select * from y;");
33 * while (vm.compile()) {
50 * Compile the next SQL statement for the SQLite VM instance.
55 public native boolean compile() throws SQLite.Exception; method in class:Vm
  /external/jsr305/ri/src/main/java/javax/annotation/
RegEx.java 32 Pattern.compile((String) value);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_transformer.py 7 from compiler import compile namespace
28 c = compile(s, '<string>', 'single')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_transformer.py 7 from compiler import compile namespace
28 c = compile(s, '<string>', 'single')
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-private.hh 75 inline void compile (hb_ot_shape_plan_t &plan) function in struct:hb_ot_shape_planner_t
79 map.compile (plan.map);
  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 76 inline void compile (hb_ot_shape_plan_t &plan) function in struct:hb_ot_shape_planner_t
80 map.compile (plan.map);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPath.java 164 * <p>Compile an XPath expression for later evaluation.</p>
180 public XPathExpression compile(String expression) method in interface:XPath
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
regexp.h 61 RETURN(ptr) Used for normal exit of the `compile' function. `ptr'
65 ERROR(val) Used for abnormal return from `compile'. `val' is the
95 /* Get and compile the user supplied pattern up to end of line or
102 compile (char *__restrict instring, char *__restrict expbuf, function
167 /* Now compile the pattern. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
regexp.h 61 RETURN(ptr) Used for normal exit of the `compile' function. `ptr'
65 ERROR(val) Used for abnormal return from `compile'. `val' is the
95 /* Get and compile the user supplied pattern up to end of line or
102 compile (char *__restrict instring, char *__restrict expbuf, function
167 /* Now compile the pattern. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
regexp.h 61 RETURN(ptr) Used for normal exit of the `compile' function. `ptr'
65 ERROR(val) Used for abnormal return from `compile'. `val' is the
95 /* Get and compile the user supplied pattern up to end of line or
102 compile (char *__restrict instring, char *__restrict expbuf, function
167 /* Now compile the pattern. */
  /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/
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...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
task.rb 76 full_name = ( @namespace + [ @name, 'compile' ] ).join( ':' )
80 def compile!
106 desc( "compile ANTLR grammars" )
107 task( 'compile' => target_files )
201 def compile( grammar ) method in class:ANTLR3.CompileTask.GrammarSet
381 @group.compile( self )
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
grammar.rb 167 def compile( options = {} ) method in class:ANTLR3.Test.Grammar
169 compile!( options )
173 def compile!( options = {} )
  /external/srec/srec/Grammar/include/
SR_Grammar.h 95 ESR_ReturnCode(*compile)(struct SR_Grammar_t* self); member in struct:SR_Grammar_t
261 * - Compile from expressions (not supported by SREC) or load pre-compiled grammars

Completed in 1565 milliseconds

1 2 3 4 5 6