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

  /external/v8/src/
func-name-inferrer.cc 68 Handle<String> func_name = MakeNameFromStack(); local
70 funcs_to_infer_[i]->set_inferred_name(func_name);
oprofile-agent.cc 86 const char* func_name; local
89 func_name = name->length() > 0 ? *str : "<anonymous>";
90 CreateNativeCodeRegion(func_name, ptr, size);
101 const char* func_name; local
104 func_name = name->length() > 0 ? *str : "<anonymous>";
108 func_name, *source_str, line_num) != -1) {
  /external/v8/test/cctest/
test-mark-compact.cc 172 String* func_name = String::cast(Heap::LookupAsciiSymbol("theFunction")); local
174 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(func_name));
182 Top::context()->global()->SetProperty(func_name, function, NONE);
187 func_name = String::cast(Heap::LookupAsciiSymbol("theFunction"));
188 CHECK(Top::context()->global()->HasLocalProperty(func_name));
189 Object* func_value = Top::context()->global()->GetProperty(func_name);
test-heap.cc 209 String* func_name = String::cast(Heap::LookupAsciiSymbol("theFunction")); local
211 SharedFunctionInfo::cast(Heap::AllocateSharedFunctionInfo(func_name));
219 Top::context()->global()->SetProperty(func_name, function, NONE);
233 // function should be alive, func_name might be invalid after GC
234 func_name = String::cast(Heap::LookupAsciiSymbol("theFunction"));
235 CHECK(Top::context()->global()->HasLocalProperty(func_name));
237 Object* func_value = Top::context()->global()->GetProperty(func_name);

Completed in 155 milliseconds