Searched refs:Compile (Results 1 - 25 of 80) sorted by relevance

1234

/external/clang/lib/Driver/
H A DPhases.cpp21 case Compile: return "compiler";
H A DTools.h122 class LLVM_LIBRARY_VISIBILITY Compile : public Common { class in namespace:clang::driver::tools::gcc
124 Compile(const ToolChain &TC) : Common("gcc::Compile", function in class:clang::driver::tools::gcc::Compile
159 // For Hexagon, we do not need to instantiate tools for PreProcess, PreCompile and Compile.
257 class LLVM_LIBRARY_VISIBILITY Compile : public CC1 { class in namespace:clang::driver::tools::darwin
259 Compile(const ToolChain &TC) : CC1("darwin::Compile", "gcc frontend", TC) {} function in class:clang::driver::tools::darwin::Compile
H A DTypes.cpp233 return phases::Compile;
/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-thread-termination.cc59 v8::Handle<v8::Value> result = v8::Script::Compile(source)->Run();
69 v8::Script::Compile(v8::String::New("function f() {"
94 v8::Script::Compile(v8::String::New("var term = true;"
133 v8::Script::Compile(source)->Run();
136 v8::Script::Compile(source)->Run();
153 v8::Script::Compile(source)->Run();
156 v8::Script::Compile(source)->Run();
192 v8::Script::Compile(source)->Run();
216 v8::Script::Compile(source)->Run();
282 v8::Script::Compile(v
[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-accessors.cc260 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
283 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
301 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
316 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
353 result = Script::Compile(v8_str(
360 result = Script::Compile(String::New(
382 Script::Compile(String::New(
415 Script::Compile(String::New(
442 v8::Handle<v8::Value> result = Script::Compile(String::New(
H A Dtest-debug.cc169 // Compile and run the supplied source and return the fequested function.
173 v8::Script::Compile(v8::String::New(source))->Run();
179 // Compile and run the supplied source and return the requested function.
182 v8::Script::Compile(v8::String::New(source))->Run();
227 return v8::Script::Compile(str)->Run()->Int32Value();
249 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
276 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
298 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
308 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
318 v8::Script::Compile(v
[all...]
H A Dcctest.h207 return v8::Script::Compile(v8_str(x));
213 return v8::Script::Compile(v8::String::New(source))->Run();
H A Dtest-threads.cc44 v8::Handle<v8::Script> script = v8::Script::Compile(
77 v8::Handle<v8::Script> script = v8::Script::Compile(
H A Dtest-api.cc158 Local<Script> script = Script::Compile(source);
322 Local<Script> script = Script::Compile(source);
394 Local<Script> script = Script::Compile(source);
419 Local<Script> script = Script::Compile(source);
445 Local<Script> script = Script::Compile(source);
471 Local<Script> script = Script::Compile(source);
676 Local<Script> script = Script::Compile(source);
697 Local<Script> script = Script::Compile(source);
746 Local<Script> script = Script::Compile(source);
1741 Script::Compile(v8_st
[all...]
/external/regex-re2/
H A Dtestinstall.cc12 f.Compile(&v);
/external/regex-re2/re2/
H A Dset.h32 // 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();
H A Dfiltered_re2.h12 // 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()
H A Dprefilter_tree.h35 // 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
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 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/llvm/test/Object/Inputs/
H A Delfver.S0 # Compile with:
/external/llvm/bindings/ocaml/
H A DMakefile.ocaml61 Compile.CMI := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
62 Compile.CMO := $(strip $(OCAMLC) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
66 Compile.CMX := $(strip $(OCAMLOPT) -c $(OCAMLCFLAGS) $(OCAMLDEBUGFLAG) -o)
233 $(Verb) $(Compile.CMI) $@ $<
266 $(Verb) $(Compile.CMO) $@ $<
305 $(Verb) $(Compile.CMX) $@ $<
386 $(Echo) "Compile.CMI : " '$(Compile.CMI)'
387 $(Echo) "Compile.CMO : " '$(Compile
[all...]
/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/antlr/antlr-3.4/runtime/JavaScript/build/
H A DREADME32 Compile Tests:
44 1) Compile the tests using the directions above.
/external/astl/tests/
H A DAndroid.mk53 # Compile using the host only on linux for valgrind support.
/external/v8/src/
H A Dcompiler.h287 // Compile a String source within a context.
288 static Handle<SharedFunctionInfo> Compile(Handle<String> source,
297 // Compile a String source within a context for Eval.
304 // Compile from function info (used for lazy compilation). Returns true on
308 // Compile a shared function info object (the function is possibly lazily

Completed in 381 milliseconds

1234