Searched defs:Compile (Results 1 - 19 of 19) sorted by relevance

/external/clang/include/clang/Driver/
H A DPhases.h21 Compile, enumerator in enum:clang::driver::phases::ID
/external/v8/test/cctest/
H A Dtest-func-name-inference.cc106 static v8::Handle<v8::Script> Compile(const char* src) { function
107 return v8::Script::Compile(v8::String::New(src));
115 v8::Handle<v8::Script> script = Compile(
127 v8::Handle<v8::Script> script = Compile(
139 v8::Handle<v8::Script> script = Compile(
153 v8::Handle<v8::Script> script = Compile(
167 v8::Handle<v8::Script> script = Compile(
183 v8::Handle<v8::Script> script = Compile(
201 v8::Handle<v8::Script> script = Compile(
219 v8::Handle<v8::Script> script = Compile(
[all...]
H A Dtest-compiler.cc116 static Handle<JSFunction> Compile(const char* source) { function
119 Compiler::Compile(source_code,
137 Handle<JSFunction> fun = Compile(buffer.start());
156 Handle<JSFunction> fun = Compile("result = x + y;");
177 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
198 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
221 Handle<JSFunction> fun = Compile(source);
254 Handle<JSFunction> fun = Compile(source);
269 Handle<JSFunction> fun = Compile(source);
292 Handle<JSFunction> fun0 = Compile(sourc
[all...]
H A Dtest-regexp.cc497 static RegExpNode* Compile(const char* input, bool multiline, bool is_ascii) { function
507 RegExpEngine::Compile(&compile_data, false, multiline, pattern, is_ascii);
518 RegExpNode* node = Compile(input, multiline, is_ascii);
/external/regex-re2/re2/
H A Dfiltered_re2.cc41 void FilteredRE2::Compile(vector<string>* atoms) { function in class:re2::FilteredRE2
52 prefilter_tree_->Compile(atoms);
66 LOG(DFATAL) << "FirstMatch called before Compile";
H A Dset.cc30 LOG(DFATAL) << "RE2::Set::Add after Compile";
69 bool RE2::Set::Compile() { function in class:RE2::Set
71 LOG(DFATAL) << "RE2::Set::Compile multiple times";
86 LOG(ERROR) << "Error simplifying during Compile.";
96 LOG(DFATAL) << "RE2::Set::Match without Compile";
H A Dprefilter_tree.cc71 LOG(DFATAL) << "Add after Compile.";
82 void PrefilterTree::Compile(vector<string>* atom_vec) { function in class:re2::PrefilterTree
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";
H A Dcompile.cc5 // Compile regular expression to Prog.
130 static Prog *Compile(Regexp* re, bool reversed, int64 max_mem);
990 Prog* Compiler::Compile(Regexp* re, bool reversed, int64 max_mem) { function in class:re2::Compiler
1079 return Compiler::Compile(this, false, max_mem);
1083 return Compiler::Compile(this, true, max_mem);
1098 // Compile alternation of fragments.
/external/openfst/src/include/fst/
H A Dstring.h49 // Compile string 's' into FST 'fst'.
55 Compile(labels, fst);
85 void Compile(const vector<Label> &labels, MutableFst<A> *fst) const { function in class:fst::StringCompiler
96 void Compile(const vector<Label> &labels, CompactFst<A, StringCompactor<A>, function in class:fst::StringCompiler
/external/clang/lib/Driver/
H A DTools.h130 class LLVM_LIBRARY_VISIBILITY Compile : public Common { class in namespace:clang::driver::tools::gcc
132 Compile(const ToolChain &TC) : Common("gcc::Compile", function in class:clang::driver::tools::gcc::Compile
167 // For Hexagon, we do not need to instantiate tools for PreProcess, PreCompile and Compile.
265 class LLVM_LIBRARY_VISIBILITY Compile : public CC1 { class in namespace:clang::driver::tools::darwin
267 Compile(const ToolChain &TC) : CC1("darwin::Compile", "gcc frontend", TC) {} function in class:clang::driver::tools::darwin::Compile
/external/v8/src/
H A Dcompiler.cc307 Handle<Code> optimized_code = graph->Compile(info);
408 // Compile the code.
471 Handle<SharedFunctionInfo> Compiler::Compile(Handle<String> source, function in class:v8::internal::Compiler
522 // Compile the function and add it to the cache.
629 // Compile the code.
H A Djsregexp.cc114 Handle<Object> RegExpImpl::Compile(Handle<JSRegExp> re, function in class:v8::internal::RegExpImpl
320 // Compile the RegExp.
364 RegExpEngine::Compile(&compile_data,
3935 // Compile $ in multiline regexps as an alternation with a positive
5253 RegExpEngine::CompilationResult RegExpEngine::Compile(RegExpCompileData* data, function in class:v8::internal::RegExpEngine
H A Dapi.cc1513 i::Compiler::Compile(str,
1537 Local<Script> Script::Compile(v8::Handle<String> source, function in class:v8::Script
1542 ON_BAILOUT(isolate, "v8::Script::Compile()", return Local<Script>());
1543 LOG_API(isolate, "Script::Compile");
1559 Local<Script> Script::Compile(v8::Handle<String> source, function in class:v8::Script
1563 return Compile(source, &origin, 0, script_data);
H A Dhydrogen.cc683 Handle<Code> HGraph::Compile(CompilationInfo* info) { function in class:v8::internal::HGraph
/external/regex-re2/util/
H A Dpcre.cc68 re_partial_ = Compile(UNANCHORED);
70 re_full_ = Compile(ANCHOR_BOTH);
103 pcre* PCRE::Compile(Anchor anchor) { function in class:re2::PCRE
109 // UNANCHORED Compile the original pattern, and use
111 // ANCHOR_START Compile the original pattern, and use
/external/v8/src/ia32/
H A Dstub-cache-ia32.cc537 void Compile(MacroAssembler* masm, function in class:v8::internal::BASE_EMBEDDED
1119 // Compile the interceptor call, followed by inline code to load the
2348 compiler.Compile(masm(), object, holder, name, &lookup, edx, ebx, edi, eax,
2817 // TODO(368): Compile in the whole chain: all the interceptors in
/external/v8/src/x64/
H A Dstub-cache-x64.cc521 void Compile(MacroAssembler* masm, function in class:v8::internal::BASE_EMBEDDED
1099 // Compile the interceptor call, followed by inline code to load the
2177 compiler.Compile(masm(), object, holder, name, &lookup, rdx, rbx, rdi, rax,
2647 // TODO(368): Compile in the whole chain: all the interceptors in
/external/v8/src/arm/
H A Dstub-cache-arm.cc704 void Compile(MacroAssembler* masm, function in class:v8::internal::BASE_EMBEDDED
1261 // Compile the interceptor call, followed by inline code to load the
2453 compiler.Compile(masm(), object, holder, name, &lookup, r1, r3, r4, r0,
/external/v8/src/mips/
H A Dstub-cache-mips.cc694 void Compile(MacroAssembler* masm, function in class:v8::internal::BASE_EMBEDDED
1270 // Compile the interceptor call, followed by inline code to load the
2447 compiler.Compile(masm(), object, holder, name, &lookup, a1, a3, t0, a0,

Completed in 872 milliseconds