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

<<11121314151617181920>>

  /build/tools/
filter-product-graph.py 32 (dependency, re.compile(r'"(.*)"\s*->\s*"(.*)"')),
33 (info, re.compile(r'"(.*)"(\s*\[.*\])')),
  /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...]
  /development/samples/ApiDemos/
Android.mk 6 # Only compile source java files in this apk.
  /external/chromium_org/testing/gtest/test/
gtest_list_tests_unittest.py 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\.
100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-private.hh 80 inline void compile (hb_ot_shape_plan_t &plan) function in struct:hb_ot_shape_planner_t
84 map.compile (plan.map);
  /external/chromium_org/third_party/markdown/
util.py 60 BLOCK_LEVEL_ELEMENTS = re.compile("^(p|div|h[1-6]|blockquote|pre|table|dl|ol|ul"
71 INLINE_PLACEHOLDER_RE = re.compile(INLINE_PLACEHOLDER % r'([0-9]{4})')
  /external/chromium_org/third_party/markupsafe/
__init__.py 19 _striptags_re = re.compile(r'(<!--.*?-->|<[^>]*>)')
20 _entity_re = re.compile(r'&([^;]+);')
  /external/chromium_org/third_party/webrtc/modules/audio_device/mac/portaudio/
pa_memorybarrier.h 98 # error Memory barriers are not defined on this system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaranteed.
125 # error Memory barriers are not defined on this system. You can still compile by defining ALLOW_SMP_DANGERS, but SMP safety will not be guaranteed.
  /external/chromium_org/tools/gyp/test/lib/
TestMac.py 21 pattern = re.compile('^Non-fat file: (.*) is architecture: (.*)$')
23 pattern = re.compile('^Architectures in the fat file: (.*) are: (.*)$')
  /external/chromium_org/tools/memory_inspector/memory_inspector/backends/android/
dumpheap_native_parser.py 44 BT_RE = re.compile(
46 MAP_RE = re.compile(
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
mmap_classifier.py 60 re.compile(filters['mmap_file']) if 'mmap_file' in filters else None)
62 re.compile(filters['mmap_prot']) if 'mmap_prot' in filters else None)
  /external/chromium_org/v8/test/mjsunit/
regexp-compile.js 29 // compile event.
33 re.compile("y");
36 re.compile("(x)");
40 re.compile("(y)");
  /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)
DefaultTable.py 17 def compile(self, ttFont): member in class:DefaultTable
28 writer.dumphex(self.compile(ttFont))
  /external/gtest/test/
gtest_list_tests_unittest.py 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\.
100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 80 inline void compile (hb_ot_shape_plan_t &plan) function in struct:hb_ot_shape_planner_t
84 map.compile (plan.map);
  /external/protobuf/
build.gradle 50 compile getAndroidPrebuilt('8')
  /frameworks/base/core/java/android/net/
WifiKey.java 36 private static final Pattern SSID_PATTERN = Pattern.compile("(\".*\")|(0x[\\p{XDigit}]+)");
38 Pattern.compile("([\\p{XDigit}]{2}:){5}[\\p{XDigit}]{2}");
  /frameworks/compile/libbcc/include/bcc/
Compiler.h 47 // is *shared* across the different calls to compile() before the next call
49 // 4. Once a compiler instance is created, you can use the compile() service
50 // to compile the file over and over again. Each call uses TargetMachine
95 // Compile a script and output the result to a LLVM stream.
99 enum ErrorCode compile(Script &pScript, llvm::raw_ostream &pResult,
102 // Compile a script and output the result to a file.
103 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
  /ndk/sources/third_party/googletest/googletest/test/
gtest_list_tests_unittest.py 56 EXPECTED_OUTPUT_NO_FILTER_RE = re.compile(r"""FooDeathTest\.
100 EXPECTED_OUTPUT_FILTER_FOO_RE = re.compile(r"""FooDeathTest\.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codeop.py 1 r"""Utilities to compile possibly incomplete Python source code.
4 function compile(), which take program text, a filename and a 'mode'
19 Compile three times: as is, with \n, and with \n\n appended. If it
21 we expect more. If it doesn't compile either way, we compare the
53 Compile():
55 Instances of this class act like the built-in function compile,
64 __all__ = ["compile_command", "Compile", "CommandCompiler"]
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
105 r"""Compile a command and determine whether it is incomplete.
124 class Compile
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codeop.py 1 r"""Utilities to compile possibly incomplete Python source code.
4 function compile(), which take program text, a filename and a 'mode'
19 Compile three times: as is, with \n, and with \n\n appended. If it
21 we expect more. If it doesn't compile either way, we compare the
53 Compile():
55 Instances of this class act like the built-in function compile,
64 __all__ = ["compile_command", "Compile", "CommandCompiler"]
102 return compile(source, filename, symbol, PyCF_DONT_IMPLY_DEDENT)
105 r"""Compile a command and determine whether it is incomplete.
124 class Compile
    [all...]
  /external/chromium_org/build/android/pylib/gtest/
test_runner.py 90 re_run = re.compile('\[ RUN \] ?(.*)\r\n')
91 re_fail = re.compile('\[ FAILED \] ?(.*)\r\n')
92 re_ok = re.compile('\[ OK \] ?(.*?) .*\r\n')
95 re_passed = re.compile('\[ PASSED \] ?(.*)\r\n')
96 re_runner_fail = re.compile('\[ RUNNER_FAILED \] ?(.*)\r\n')
99 re_crash = re.compile('\[ CRASHED \](.*)\r\n')
  /external/qemu/distrib/sdl-1.2.15/test/
gcc-fat.sh 58 compile=yes
69 compile=no; link=no;;
83 elif test x$compile = xyes; then
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
SplitTest.java 32 Pattern p = Pattern.compile("/");
42 Pattern p = Pattern.compile(" ");
71 p = Pattern.compile("d");
97 p = Pattern.compile("o");
133 Pattern p = Pattern.compile("");
161 Pattern p = Pattern.compile("");

Completed in 838 milliseconds

<<11121314151617181920>>