HomeSort by relevance Sort by last modified time
    Searched refs:Compile (Results 26 - 50 of 187) sorted by null

12 3 4 5 6 7 8

  /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...]
  /art/compiler/
compilers.cc 52 CompiledMethod* QuickCompiler::Compile(const DexFile::CodeItem* code_item,
140 CompiledMethod* OptimizingCompiler::Compile(const DexFile::CodeItem* code_item,
153 return QuickCompiler::Compile(code_item, access_flags, invoke_type, class_def_idx, method_idx,
compiler.h 50 virtual CompiledMethod* Compile(const DexFile::CodeItem* code_item,
102 * @param driver CompilerDriver for this compile.
  /external/chromium_org/third_party/re2/re2/
filtered_re2.cc 31 LOG(ERROR) << "Couldn't compile regular expression, skipping: "
43 void FilteredRE2::Compile(vector<string>* atoms) {
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
  /external/regex-re2/re2/
filtered_re2.cc 31 LOG(ERROR) << "Couldn't compile regular expression, skipping: "
43 void FilteredRE2::Compile(vector<string>* atoms) {
54 prefilter_tree_->Compile(atoms);
68 LOG(DFATAL) << "FirstMatch called before Compile";
  /hardware/qcom/gps/utils/
Android.mk 3 #Compile this library only for builds with the latest modem image
  /external/lldb/source/Interpreter/
OptionValueRegex.cpp 64 if (m_regex.Compile (value_cstr, m_regex.GetCompileFlags()))
  /frameworks/base/tools/preload/
Compile.java 31 public class Compile {
35 System.err.println("Usage: Compile [log file] [output file]");
  /external/chromium_org/v8/test/cctest/
test-compiler.cc 57 static Handle<JSFunction> Compile(const char* source) {
80 Handle<JSFunction> fun = Compile(buffer.start());
97 Handle<JSFunction> fun = Compile("result = x + y;");
116 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
135 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
157 Handle<JSFunction> fun = Compile(source);
188 Handle<JSFunction> fun = Compile(source);
202 Handle<JSFunction> fun = Compile(source);
226 Handle<JSFunction> fun0 = Compile(source);
284 v8::Script::Compile(script_body, &origin)->Run()
    [all...]
cctest.h 334 return v8::Script::Compile(v8_str(x));
339 return v8::Script::Compile(x);
347 return v8::ScriptCompiler::Compile(
364 // Helper functions that compile and run the source.
366 return v8::Script::Compile(v8_str(source))->Run();
371 return v8::Script::Compile(source)->Run();
376 // Compile once just to get the preparse data, then compile the second time
380 v8::ScriptCompiler::Compile(isolate, &script_source,
382 return v8::ScriptCompiler::Compile(isolate, &script_source)->Run()
    [all...]
test-debug.cc 127 // Compile and run the supplied source and return the fequested function.
131 v8::Script::Compile(v8::String::NewFromUtf8(env->GetIsolate(), source))
138 // Compile and run the supplied source and return the requested function.
142 v8::Script::Compile(v8::String::NewFromUtf8(isolate, source))->Run();
190 return v8::Script::Compile(str)->Run()->Int32Value();
214 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
243 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
267 v8::Script::Compile(v8::String::NewFromUtf8(isolate, buffer.start()))->Run();
278 v8::Script::Compile(v8::String::NewFromUtf8(isolate, buffer.start()))->Run();
289 v8::Script::Compile(v8::String::NewFromUtf8(isolate, buffer.start()))->Run()
    [all...]
  /external/chromium_org/native_client_sdk/src/tools/
host_vc.mk 42 # $2 = Compile Flags
56 # $2 = POSIX Compile Flags (unused)
57 # $3 = VC Compile Flags
host_gcc.mk 43 # $2 = Compile Flags
60 # Compile Macro
63 # $2 = POSIX Compile Flags
  /external/chromium_org/build/android/buildbot/
bb_host_steps.py 52 def Compile(options):
54 cmd = [os.path.join(SLAVE_SCRIPTS_DIR, 'compile.py'),
59 bb_annotations.PrintNamedStep('compile')
105 ('compile', Compile),
120 help='Indicate whether to compile experimental targets.')
  /external/chromium_org/build/android/gyp/
javac.py 22 warning_re = re.compile(
24 error_re = re.compile(
26 marker_re = re.compile(r'\s*(?P<marker>\^)\s*$')
90 # XDignore.symbol.file makes javac compile against rt.jar instead of
92 # trigger a compile warning or error.
97 def Compile():
112 Compile,
  /external/llvm/bindings/ocaml/backends/
Makefile.common 38 $(Verb) $(Compile.C) -DTARGET=$(TARGET) $< -o $@
  /hardware/qcom/gps/loc_api/libloc_api_50001/
Android.mk 2 #Compile this library only for builds with the latest modem image
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
Android.mk 2 #Compile this library only for builds with the latest modem image
  /external/chromium_org/gin/
wrappable_unittest.cc 187 v8::Handle<v8::Script> script = v8::Script::Compile(source);
213 v8::Handle<v8::Script> script = v8::Script::Compile(source);
238 v8::Handle<v8::Script> script = v8::Script::Compile(source);
258 v8::Handle<v8::Script> script = v8::Script::Compile(source);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
codegen.h 31 // build a DAG of Instructions. They'll eventually call Compile() to convert
51 // gen.Compile(dag, program);
94 void Compile(Instruction* instructions, SandboxBPF::Program* program);
153 // Compile() must only ever be called once as it makes destructive changes
  /art/compiler/dex/
dex_to_dex_compiler.cc 48 void Compile();
93 void DexCompiler::Compile() {
284 dex_compiler.Compile();
  /external/chromium_org/third_party/re2/re2/testing/
filtered_re2_test.cc 34 v.f.Compile(&v.atoms);
49 v.f.Compile(&v.atoms);
140 v->f.Compile(&v->atoms);
  /external/llvm/bindings/ocaml/
Makefile.ocaml 77 Compile.CMI := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
78 Compile.CMO := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
79 Compile.CMX := $(strip $(OCAMLOPT) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
307 $(Verb) $(Compile.CMI) $@ $<
340 $(Verb) $(Compile.CMO) $@ $<
379 $(Verb) $(Compile.CMX) $@ $<
460 $(Echo) "Compile.CMI : " '$(Compile.CMI)'
461 $(Echo) "Compile.CMO : " '$(Compile.CMO)
    [all...]
  /external/regex-re2/re2/testing/
filtered_re2_test.cc 34 v.f.Compile(&v.atoms);
49 v.f.Compile(&v.atoms);
140 v->f.Compile(&v->atoms);
  /external/clang/lib/Driver/
Tools.h 34 class Compile;
86 visualstudio::Compile *getCLFallback() const;
88 mutable std::unique_ptr<visualstudio::Compile> CLFallback;
151 class LLVM_LIBRARY_VISIBILITY Compile : public Common {
153 Compile(const ToolChain &TC) : Common("gcc::Compile",
177 // For Hexagon, we do not need to instantiate tools for PreProcess, PreCompile and Compile.
590 class LLVM_LIBRARY_VISIBILITY Compile : public Tool {
592 Compile(const ToolChain &TC) : Tool("visualstudio::Compile", "compiler", TC) {
    [all...]

Completed in 1080 milliseconds

12 3 4 5 6 7 8