Home | History | Annotate | Download | only in cctest

Lines Matching refs:source

2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
115 static Handle<JSFunction> Compile(const char* source) {
116 Handle<String> source_code(Factory::NewStringFromUtf8(CStrVector(source)));
131 const char* source = "result = %d + 1;";
133 OS::SNPrintF(buffer, source, x);
218 const char* source = "for (n = 0; n < 100; ++n) print(n, 1, 2);";
219 Handle<JSFunction> fun = Compile(source);
233 const char* source =
252 Handle<JSFunction> fun = Compile(source);
266 const char* source = "throw 42;";
267 Handle<JSFunction> fun = Compile(source);
288 const char* source = "function foo(a) { gc(), print(a); }";
290 Handle<JSFunction> fun0 = Compile(source);
315 // source resulted in crash.