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

1 2 3

  /external/clang/include/clang/Driver/
Phases.h 21 Compile,
  /external/clang/lib/Driver/
Phases.cpp 21 case Compile: return "compiler";
Tools.h 119 class LLVM_LIBRARY_VISIBILITY Compile : public Common {
121 Compile(const ToolChain &TC) : Common("gcc::Compile",
213 class LLVM_LIBRARY_VISIBILITY Compile : public CC1 {
215 Compile(const ToolChain &TC) : CC1("darwin::Compile", "gcc frontend", TC) {}
Types.cpp 210 return N + 3; // compile, assemble, link
232 return phases::Compile;
  /external/v8/test/cctest/
test-func-name-inference.cc 106 static v8::Handle<v8::Script> Compile(const char* src) {
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...]
test-thread-termination.cc 59 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();
188 v8::Script::Compile(source)->Run();
213 v8::Script::Compile(source)->Run();
271 v8::Script::Compile(v8::String::New("function f() {
    [all...]
test-compiler.cc 116 static Handle<JSFunction> Compile(const char* source) {
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);
293 Handle<JSFunction> fun0 = Compile(source)
    [all...]
test-accessors.cc 262 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
285 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
303 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
318 Local<Script> scr = v8::Script::Compile(v8::String::New("obj.xxx"));
355 result = Script::Compile(v8_str(
362 result = Script::Compile(String::New(
384 Script::Compile(String::New(
417 Script::Compile(String::New(
444 v8::Handle<v8::Value> result = Script::Compile(String::New(
test-debug.cc 168 // Compile and run the supplied source and return the fequested function.
172 v8::Script::Compile(v8::String::New(source))->Run();
178 // Compile and run the supplied source and return the requested function.
181 v8::Script::Compile(v8::String::New(source))->Run();
226 return v8::Script::Compile(str)->Run()->Int32Value();
248 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
275 v8::Handle<v8::Value> value = v8::Script::Compile(str)->Run();
297 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
307 v8::Script::Compile(v8::String::New(buffer.start()))->Run();
317 v8::Script::Compile(v8::String::New(buffer.start()))->Run()
    [all...]
cctest.h 202 return v8::Script::Compile(v8_str(x));
208 return v8::Script::Compile(v8::String::New(source))->Run();
test-threads.cc 44 v8::Handle<v8::Script> script = v8::Script::Compile(
77 v8::Handle<v8::Script> script = v8::Script::Compile(
test-api.cc 154 Local<Script> script = Script::Compile(source);
320 Local<Script> script = Script::Compile(source);
401 Local<Script> script = Script::Compile(source);
425 Local<Script> script = Script::Compile(source);
450 Local<Script> script = Script::Compile(source);
476 Local<Script> script = Script::Compile(source);
677 Local<Script> script = Script::Compile(source);
698 Local<Script> script = Script::Compile(source);
747 Local<Script> script = Script::Compile(source);
976 // The casts allow this to compile, even if Smi::kMaxValue is 2^31-1
    [all...]
test-strings.cc 434 v8::Script::Compile(v8::String::New(source))->Run()->Int32Value());
475 v8::Script::Compile(v8::String::New(line))->Run();
test-alloc.cc 153 v8::Script::Compile(v8::String::New("(new Foo).get"))->Run();
test-serialize.cc 332 v8::Local<v8::Script> script = v8::Script::Compile(source);
349 v8::Local<v8::Script> script = v8::Script::Compile(source);
  /frameworks/base/tools/preload/
Android.mk 6 Compile.java \
Compile.java 31 public class Compile {
35 System.err.println("Usage: Compile [log file] [output file]");
  /external/llvm/bindings/ocaml/
Makefile.ocaml 61 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.CMO)
    [all...]
  /external/astl/tests/
Android.mk 53 # Compile using the host only on linux for valgrind support.
  /hardware/ril/mock-ril/src/cpp/
protobuf_v8.cpp 168 Script::Compile(String::New(from.str().c_str()))->Run().As<Function>();
172 Script::Compile(String::New(
183 self->SetInternalField(3, Script::Compile(String::New(to.str().c_str()))->Run());
  /external/v8/src/
compiler.h 40 // CompilationInfo encapsulates some information known at compile time. It
41 // is constructed based on the resources available at compile-time.
250 // Compile a String source within a context.
251 static Handle<SharedFunctionInfo> Compile(Handle<String> source,
260 // Compile a String source within a context for Eval.
266 // Compile from function info (used for lazy compilation). Returns true on
270 // Compile a shared function info object (the function is possibly lazily
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptManager.cpp 98 v8::Local<v8::Script> script = v8::Script::Compile(v8String(scriptSource));
  /dalvik/vm/
Android.mk 76 # Compile out the JIT
  /external/v8/test/mjsunit/
debug-compile-event.js 67 // If the compiled source contains 'eval' there will be additional compile
70 // For source with 'eval' there will be compile events with substrings
74 // For source without 'eval' there will be a compile events with the
97 // Compile different sources.
111 // Number of before and after compile events should be the same.
  /external/pcre/
pcrecpp.h 698 // Compile the regexp for the specified anchoring mode
699 pcre* Compile(Anchor anchor);

Completed in 1255 milliseconds

1 2 3