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

1 2 3

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /build/soong/cmd/microfactory/
microfactory.go 15 // Microfactory is a tool to incrementally compile a go program. It's similar
205 func (p *GoPackage) Compile(outDir, trimPath string) error {
219 dep.Compile(outDir, trimPath)
237 cmd := exec.Command(filepath.Join(goToolDir, "compile"),
402 if err := pkg.Compile(intermediates, mysrc); err != nil {
476 err = mainPackage.Compile(intermediates, trimPath)
478 fmt.Fprintln(os.Stderr, "Failed to compile:", err)
  /external/clang/include/clang/Driver/
Phases.h 21 Compile,
  /external/libchrome/sandbox/linux/bpf_dsl/
codegen.cc 34 // we could trace back through the program in Compile() and elide
60 CodeGen::Program CodeGen::Compile(CodeGen::Node head) {
policy_compiler.cc 103 CodeGen::Program PolicyCompiler::Compile() {
122 return gen_.Compile(AssemblePolicy());
159 // We already enabled unsafe traps in Compile, but enable them again to give
191 // Compile the system call ranges to an optimized BPF jumptable
278 return res->Compile(this);
321 // TODO(mdempsky): Compile Unexpected64bitArgument() just per program.
  /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";
set.cc 30 LOG(DFATAL) << "RE2::Set::Add after Compile";
69 bool RE2::Set::Compile() {
71 LOG(DFATAL) << "RE2::Set::Compile multiple times";
86 LOG(ERROR) << "Error simplifying during Compile.";
96 LOG(DFATAL) << "RE2::Set::Match without Compile";
prefilter_tree.cc 71 LOG(DFATAL) << "Add after Compile.";
82 void PrefilterTree::Compile(vector<string>* atom_vec) {
84 LOG(DFATAL) << "Compile after Compile.";
89 // PrefilterTree that call Compile before adding any regexps,
90 // and expect Compile not to have effect.
288 LOG(WARNING) << "Compile() not called";
  /frameworks/base/tools/preload/
Compile.java 31 public class Compile {
35 System.err.println("Usage: Compile [log file] [output file]");
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-job.cc 196 void CompilerDispatcherJob::Compile() {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
compile.go 18 // Compile is the main entry point for this package.
19 // Compile modifies f so that on return:
24 func Compile(f *Func) {
279 r, ok := regexp.Compile(underphase[1:])
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
compile.go 18 // Compile is the main entry point for this package.
19 // Compile modifies f so that on return:
24 func Compile(f *Func) {
279 r, ok := regexp.Compile(underphase[1:])
  /external/llvm/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 1 //===------ IRCompileLayer.h -- Eagerly compile IR for JIT ------*- C++ -*-===//
46 IRCompileLayer(BaseLayerT &BaseLayer, CompileFtor Compile)
47 : BaseLayer(BaseLayer), Compile(std::move(Compile)), ObjCache(nullptr) {}
52 /// @brief Compile each module in the given module set, then add the resulting
73 *Object = Compile(*M);
140 CompileFtor Compile;
IndirectionUtils.h 29 /// @brief Target-independent base class for compile callback management.
34 /// @brief Handle to a newly created compile callback. Can be used to get an
36 /// the compile action for the callback.
39 CompileCallbackInfo(TargetAddress Addr, CompileFtor &Compile)
40 : Addr(Addr), Compile(Compile) {}
43 void setCompileAction(CompileFtor Compile) {
44 this->Compile = std::move(Compile);
49 CompileFtor &Compile;
    [all...]
  /prebuilts/go/darwin-x86/src/regexp/syntax/
compile.go 78 // Compile compiles the regexp into a program to be executed.
80 func Compile(re *Regexp) (*Prog, error) {
83 f := c.compile(re)
98 func (c *compiler) compile(re *Regexp) frag { func
138 sub := c.compile(re.Sub[0])
142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
154 f = c.compile(sub)
156 f = c.cat(f, c.compile(sub)
    [all...]
  /prebuilts/go/linux-x86/src/regexp/syntax/
compile.go 78 // Compile compiles the regexp into a program to be executed.
80 func Compile(re *Regexp) (*Prog, error) {
83 f := c.compile(re)
98 func (c *compiler) compile(re *Regexp) frag { func
138 sub := c.compile(re.Sub[0])
142 return c.star(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
144 return c.plus(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
146 return c.quest(c.compile(re.Sub[0]), re.Flags&NonGreedy != 0)
154 f = c.compile(sub)
156 f = c.cat(f, c.compile(sub)
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 61 void Compile();
111 void DexCompiler::Compile() {
344 dex_compiler.Compile();
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/
VfrCompiler.cpp 360 " Compile VFRFILE.",
447 CVfrCompiler::Compile (
483 printf ("%s compile error!\n", UTILITY_NAME);
628 Compiler.Compile();
  /external/flatbuffers/src/
flatc.cpp 111 int FlatCompiler::Compile(int argc, const char** argv) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/
VfrCompiler.cpp 531 CVfrCompiler::Compile (
576 DebugError (NULL, 0, 0003, "Error parsing", "compile error in file %s", InFileName);
838 Compiler.Compile();
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/src/
compiler.cc 70 std::tuple<bool, std::vector<uint32_t>, size_t> Compiler::Compile(

Completed in 570 milliseconds

1 2 3