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

1 2 3 4 5 6 7 8 9

  /external/clang/include/clang/Driver/
Phases.h 21 Compile,
  /external/clang/lib/Driver/
Phases.cpp 20 case Compile: return "compiler";
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_impl.h 24 // Compile uses |pc| to emit a CodeGen::Node that conditionally continues
27 virtual CodeGen::Node Compile(PolicyCompiler* pc,
42 // Compile uses |pc| to emit a CodeGen::Node that executes the
44 virtual CodeGen::Node Compile(PolicyCompiler* pc) const = 0;
bpf_dsl.cc 28 CodeGen::Node Compile(PolicyCompiler* pc) const override {
56 CodeGen::Node Compile(PolicyCompiler* pc) const override {
82 CodeGen::Node Compile(PolicyCompiler* pc) const override {
83 // We compile the "then" and "else" expressions in separate statements so
85 CodeGen::Node then_node = then_result_->Compile(pc);
86 CodeGen::Node else_node = else_result_->Compile(pc);
87 return cond_->Compile(pc, then_node, else_node);
107 CodeGen::Node Compile(PolicyCompiler* pc,
128 CodeGen::Node Compile(PolicyCompiler* pc,
148 CodeGen::Node Compile(PolicyCompiler* pc
    [all...]
  /external/regex-re2/
testinstall.cc 16 f.Compile(&v);
  /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...]
  /external/regex-re2/re2/
set.h 32 // Compile prepares the Set for matching.
33 // Add must not be called again after Compile.
34 // Compile must be called before FullMatch or PartialMatch.
35 // Compile may return false if it runs out of memory.
36 bool Compile();
filtered_re2.h 12 // Compile the FilteredRE2. The compile returns strings that need to
48 // strings from the set of strings returned by Compile. Call after
50 void Compile(vector<string>* strings_to_match);
53 // Returns -1 on no match. Can be called prior to Compile.
59 // Returns -1 on no match. Compile has to be called before
88 // Has the FilteredRE2 been compiled using Compile()
prefilter_tree.h 35 // must precede Compile.
38 // The Compile returns a vector of string in atom_vec.
40 // No calls to Add after Compile are allowed.
44 void Compile(vector<string>* atom_vec);
105 // These are all the nodes formed by Compile. Essentially, there is
  /external/flatbuffers/tests/
JavaTest.sh 17 echo Compile then run the Java test.
  /frameworks/base/tools/aapt2/
Main.cpp 38 extern int Compile(const std::vector<android::StringPiece>& args, IDiagnostics* diagnostics);
57 if (command == "compile" || command == "c") {
59 return aapt::Compile(args, &diagnostics);
77 std::cerr << "\nusage: aapt2 [compile|link|dump|diff|optimize|version] ..."
  /frameworks/base/tools/preload/
Android.mk 6 Compile.java \
  /hardware/qcom/media/msm8998/
Android.mk 3 #Compile these for all targets under QCOM_BOARD_PLATFORMS list.
  /external/llvm/test/Object/Inputs/
elfver.S 0 # Compile with:
  /external/regex-re2/re2/testing/
set_test.cc 22 CHECK_EQ(s.Compile(), true);
48 CHECK_EQ(s.Compile(), true);
76 CHECK_EQ(s.Compile(), true);
91 CHECK_EQ(s.Compile(), true);
  /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...]
  /hardware/qcom/gps/msm8960/utils/
Android.mk 0 #Compile this library only for builds with the latest modem image
  /hardware/qcom/gps/msm8998/utils/platform_lib_abstractions/loc_stub/src/
Android.mk 3 #Compile this library only for builds with the latest modem image
  /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...]
  /external/llvm/unittests/ExecutionEngine/Orc/
ObjectLinkingLayerTest.cpp 122 SimpleCompiler Compile(*TM);
147 auto Obj1 = Compile(*MB1.getModule());
160 auto Obj2 = Compile(*MB2.getModule());
191 SimpleCompiler Compile(*TM);
217 auto Obj1 = Compile(*MB1.getModule());
231 auto Obj2 = Compile(*MB2.getModule());
  /prebuilts/go/darwin-x86/src/regexp/
onepass_test.go 189 // needs to be done before compile...
191 if p, err = syntax.Compile(re); err != nil {
192 t.Errorf("Compile(%q) got err:%s, want success", test.re, err)
212 re, err := Compile(test.re)
214 t.Errorf("Compile(%q): got err: %s", test.re, err)
218 t.Errorf("Compile(%q): got notOnePass, want one-pass", test.re)

Completed in 1055 milliseconds

1 2 3 4 5 6 7 8 9