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

1 2

  /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";
  /external/v8/test/cctest/compiler/
test-linkage.cc 29 static Handle<JSFunction> Compile(const char* source) {
45 Handle<JSFunction> function = Compile("a + b");
77 Handle<JSFunction> function = Compile("a + c");
function-tester.h 31 Compile(function);
50 Compile(function);
205 Handle<JSFunction> Compile(Handle<JSFunction> function) {
248 // Compile the given machine graph instead of the source of the function
  /external/v8/test/cctest/
test-func-name-inference.cc 96 static v8::Local<v8::Script> Compile(v8::Isolate* isolate, const char* src) {
97 return v8::Script::Compile(
109 v8::Local<v8::Script> script = Compile(CcTest::isolate(),
122 Compile(CcTest::isolate(),
135 Compile(CcTest::isolate(),
150 Compile(CcTest::isolate(),
165 Compile(CcTest::isolate(),
182 Compile(CcTest::isolate(),
200 v8::Local<v8::Script> script = Compile(
220 Compile(CcTest::isolate()
    [all...]
test-compiler.cc 59 static Handle<JSFunction> Compile(const char* source) {
77 Handle<JSFunction> fun = Compile(buffer.start());
94 Handle<JSFunction> fun = Compile("result = x + y;");
113 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
132 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
154 Handle<JSFunction> fun = Compile(source);
185 Handle<JSFunction> fun = Compile(source);
199 Handle<JSFunction> fun = Compile(source);
223 Handle<JSFunction> fun0 = Compile(source);
278 v8::Script::Compile(context.local(), script_body, &origin
    [all...]
  /frameworks/base/tools/preload/
Compile.java 31 public class Compile {
35 System.err.println("Usage: Compile [log file] [output file]");
  /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/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 1 //===------ IRCompileLayer.h -- Eagerly compile IR for JIT ------*- C++ -*-===//
49 IRCompileLayer(BaseLayerT &BaseLayer, CompileFtor Compile)
50 : BaseLayer(BaseLayer), Compile(std::move(Compile)), ObjCache(nullptr) {}
55 /// @brief Compile each module in the given module set, then add the resulting
76 std::tie(Object, Buffer) = Compile(*M).takeBinary();
139 CompileFtor Compile;
IndirectionUtils.h 30 /// @brief Target-independent base class for compile callback management.
36 /// @brief Handle to a newly created compile callback. Can be used to get an
38 /// the compile action for the callback.
41 CompileCallbackInfo(TargetAddress Addr, CompileFtor &Compile)
42 : Addr(Addr), Compile(Compile) {}
45 void setCompileAction(CompileFtor Compile) {
46 this->Compile = std::move(Compile);
50 CompileFtor &Compile;
    [all...]
  /external/v8/build/android/buildbot/
bb_host_steps.py 64 def Compile(options):
72 cmd = [os.path.join(SLAVE_SCRIPTS_DIR, 'compile.py'),
77 bb_annotations.PrintNamedStep('compile')
113 ('compile', Compile),
127 help='Indicate whether to compile experimental targets.')
  /art/compiler/dex/
dex_to_dex_compiler.cc 58 void Compile();
112 void DexCompiler::Compile() {
341 dex_compiler.Compile();
  /external/v8/test/cctest/interpreter/
bytecode-expectations-printer.cc 51 v8::Local<v8::Script> BytecodeExpectationsPrinter::Compile(
54 return v8::Script::Compile(isolate_->GetCurrentContext(), source)
339 v8::Local<v8::Script> script = Compile(source_code.c_str());
  /art/compiler/
image_test.cc 52 void Compile(CompilerDriver* driver,
69 void Compile(ImageHeader::StorageMode storage_mode,
106 void CompilationHelper::Compile(CompilerDriver* driver,
308 void ImageTest::Compile(ImageHeader::StorageMode storage_mode,
323 helper.Compile(compiler_driver_.get(), storage_mode);
336 Compile(storage_mode, /*out*/ helper);
456 // Compile multi-image with ImageLayoutA being the last image.
459 Compile(ImageHeader::kStorageModeUncompressed, helper, "ImageLayoutA", "LMyClass;");
465 // Compile multi-image with ImageLayoutB being the last image.
468 Compile(ImageHeader::kStorageModeUncompressed, helper, "ImageLayoutB", "LMyClass;")
    [all...]
  /art/compiler/utils/
assembler_test_base.h 113 Compile(assembly_text, &res, test_name);
205 // Compile the assembly file from_file to a binary file to_file. Returns true on success.
371 // Compile the given assembly code and extract the binary, if possible. Put result into res.
372 bool Compile(std::string assembly_code, NativeAssemblerResult* res, std::string test_name) {
389 res->error_msg = "Could not compile.";
  /external/pcre/dist/
pcrecpp.cc 94 re_partial_ = Compile(UNANCHORED);
96 re_full_ = Compile(ANCHOR_BOTH);
112 pcre* RE::Compile(Anchor anchor) {
122 // UNANCHORED Compile the original pattern, and use
124 // ANCHOR_START Compile the original pattern, and use
408 // compile-time and now, but this is simpler and safe enough.
  /external/regex-re2/util/
pcre.cc 68 re_partial_ = Compile(UNANCHORED);
70 re_full_ = Compile(ANCHOR_BOTH);
103 pcre* PCRE::Compile(Anchor anchor) {
109 // UNANCHORED Compile the original pattern, and use
111 // ANCHOR_START Compile the original pattern, and use
    [all...]
  /art/compiler/optimizing/
code_generator.cc 206 void CodeGenerator::Compile(CodeAllocator* allocator) {
    [all...]

Completed in 1963 milliseconds

1 2