Home
last modified time | relevance | path

Searched refs:fun_name (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/
Dd8-debug.cc91 Local<String> fun_name = String::New("debugCommandProcessor"); in HandleDebugEvent() local
92 Local<Function> fun = Function::Cast(*exec_state->Get(fun_name)); in HandleDebugEvent()
127 Handle<String> fun_name; in HandleDebugEvent() local
136 fun_name = String::New("processDebugRequest"); in HandleDebugEvent()
137 fun = Handle<Function>::Cast(cmd_processor->Get(fun_name)); in HandleDebugEvent()
Disolate.cc631 Handle<Object> fun_name(fun->shared()->name(), this); in CaptureCurrentStackTrace() local
632 if (fun_name->ToBoolean()->IsFalse()) { in CaptureCurrentStackTrace()
633 fun_name = Handle<Object>(fun->shared()->inferred_name(), this); in CaptureCurrentStackTrace()
637 stack_frame, function_key, fun_name, NONE)); in CaptureCurrentStackTrace()
Ddebug.cc2858 v8::Local<v8::String> fun_name = in NotifyMessageHandler() local
2861 v8::Function::Cast(*api_exec_state->Get(fun_name)); in NotifyMessageHandler()
2902 v8::Local<v8::String> fun_name; in NotifyMessageHandler() local
2906 fun_name = v8::String::New("processDebugRequest"); in NotifyMessageHandler()
2907 fun = v8::Function::Cast(*cmd_processor->Get(fun_name)); in NotifyMessageHandler()
2932 fun_name = v8::String::New("isRunning"); in NotifyMessageHandler()
2933 fun = v8::Function::Cast(*cmd_processor->Get(fun_name)); in NotifyMessageHandler()
Dbootstrapper.cc1838 #define INSTALL_BUILTIN_ID(holder_expr, fun_name, name) \ in InstallBuiltinFunctionIds() argument
1843 InstallBuiltinFunctionId(holder, #fun_name, id); \ in InstallBuiltinFunctionIds()
Dobjects.cc1083 Object* fun_name = JSFunction::cast(this)->shared()->name(); in JSObjectShortPrint() local
1085 if (fun_name->IsString()) { in JSObjectShortPrint()
1086 String* str = String::cast(fun_name); in JSObjectShortPrint()
/external/v8/samples/
Dlineprocessor.cc279 v8::Handle<v8::String> fun_name = v8::String::New("ProcessLine"); in RunCppCycle() local
281 v8::Context::GetCurrent()->Global()->Get(fun_name); in RunCppCycle()
/external/v8/test/cctest/
Dtest-debug.cc778 v8::Local<v8::String> fun_name = v8::String::New("uncaught"); in DebugEventCounter() local
780 v8::Function::Cast(*event_data->Get(fun_name)); in DebugEventCounter()