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

1 2 3 4 5

  /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
  /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/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);
  /external/fonttools/Lib/fontTools/ttLib/tables/
C_F_F_.py 18 def compile(self, otFont): member in class:table_C_F_F_
20 self.cff.compile(f, otFont)
C_P_A_L_.py 30 def compile(self, ttFont): member in class:table_C_P_A_L_
D_S_I_G_.py 59 def compile(self, ttFont): member in class:table_D_S_I_G_
DefaultTable.py 17 def compile(self, ttFont): member in class:DefaultTable
28 writer.dumphex(self.compile(ttFont))
F_F_T_M_.py 22 def compile(self, ttFont): member in class:table_F_F_T_M_
G_M_A_P_.py 63 def compile(self, ttFont): member in class:GMAPRecord
92 def compile(self, ttFont): member in class:table_G_M_A_P_
100 data = data + record.compile(ttFont)
G_P_K_G_.py 48 def compile(self, ttFont): member in class:table_G_P_K_G_
L_T_S_H_.py 27 def compile(self, ttFont): member in class:table_L_T_S_H_
S_I_N_G_.py 60 def compile(self, ttFont): member in class:table_S_I_N_G_
T_S_I__0.py 29 def compile(self, ttFont): member in class:table_T_S_I__0
T_S_I__1.py 39 def compile(self, ttFont): member in class:table_T_S_I__1
T_S_I__5.py 22 def compile(self, ttFont): member in class:table_T_S_I__5
_c_v_t.py 17 def compile(self, ttFont): member in class:table__c_v_t
_f_p_g_m.py 13 def compile(self, ttFont): member in class:table__f_p_g_m
_g_a_s_p.py 26 def compile(self, ttFont): member in class:table__g_a_s_p
_h_d_m_x.py 30 def compile(self, ttFont): member in class:table__h_d_m_x
_h_h_e_a.py 37 def compile(self, ttFont): member in class:table__h_h_e_a
_l_o_c_a.py 31 def compile(self, ttFont): member in class:table__l_o_c_a

Completed in 1055 milliseconds

1 2 3 4 5