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

  /external/v8/test/cctest/
test-func-name-inference.cc 90 static v8::Handle<v8::Script> Compile(const char* src) {
91 return v8::Script::Compile(v8::String::New(src));
99 v8::Handle<v8::Script> script = Compile(
111 v8::Handle<v8::Script> script = Compile(
123 v8::Handle<v8::Script> script = Compile(
137 v8::Handle<v8::Script> script = Compile(
151 v8::Handle<v8::Script> script = Compile(
167 v8::Handle<v8::Script> script = Compile(
185 v8::Handle<v8::Script> script = Compile(
203 v8::Handle<v8::Script> script = Compile(
    [all...]
test-compiler.cc 115 static Handle<JSFunction> Compile(const char* source) {
117 Handle<JSFunction> boilerplate = Compiler::Compile(source_code,
135 Handle<JSFunction> fun = Compile(buffer.start());
154 Handle<JSFunction> fun = Compile("result = x + y;");
175 Handle<JSFunction> fun = Compile("if (x < 0) result = -x; else result = x;");
196 Compile("s = 0; while (n > 0) { s += n; n -= 1; }; result = s;");
219 Handle<JSFunction> fun = Compile(source);
252 Handle<JSFunction> fun = Compile(source);
267 Handle<JSFunction> fun = Compile(source);
290 Handle<JSFunction> fun0 = Compile(source)
    [all...]
test-regexp.cc 164 CHECK_PARSE_EQ("[]", "^[\\x00-\\uffff]"); // Doesn't compile on windows
472 static RegExpNode* Compile(const char* input, bool multiline, bool is_ascii) {
479 RegExpEngine::Compile(&compile_data, false, multiline, pattern, is_ascii);
490 RegExpNode* node = Compile(input, multiline, is_ascii);
    [all...]
  /frameworks/base/tools/preload/
Compile.java 31 public class Compile {
35 System.err.println("Usage: Compile [log file] [output file]");
  /external/webkit/WebKitTools/BuildSlaveSupport/build.webkit.org-config/webkit/
basesteps.py 16 Compile = buildStepWithDefaultTimeout(shell.Compile)
steps.py 1 from webkit.basesteps import ShellCommand, SVN, Test, Compile, UploadCommand
148 class CompileWebKit(Compile):
154 self.name = "compile-" + configuration
158 Compile.__init__(self, env=self.env, *args, **kwargs)
233 class GenerateCoverageData(Compile):
  /external/v8/src/
compiler.cc 176 : &Counters::compile;
179 // Compile the code.
237 Handle<JSFunction> Compiler::Compile(Handle<String> source,
261 // No cache entry found. Do pre-parsing and compile the script.
283 // Compile the function and add it to the cache.
387 // Compile the code.
427 // We should not try to compile the same function literal more than
api.cc     [all...]
jsregexp.cc 110 Handle<Object> RegExpImpl::Compile(Handle<JSRegExp> re,
248 // Compile the RegExp.
278 RegExpEngine::Compile(&compile_data,
284 // Unable to compile regexp.
740 // Attempts to compile the regexp using an Irregexp code generator. Returns
    [all...]
  /external/v8/src/ia32/
stub-cache-ia32.cc 683 void Compile(MacroAssembler* masm,
    [all...]

Completed in 397 milliseconds