Home | History | Annotate | Download | only in inspector

Lines Matching defs:function

40 #include "src/inspector/v8-function-call.h"
72 // a single anonymous function(it's anonymous to avoid cluttering the global
74 // inspector's stuff) the function is called a few lines below with
77 // The function is expected
90 v8::Local<v8::Function> function = v8::Local<v8::Function>::Cast(value);
102 if (!function->Call(context, windowGlobal, arraysize(info), info)
129 V8FunctionCall function(m_context->inspector(), m_context->context(),
131 function.appendArgument(object);
132 function.appendArgument(groupName);
133 function.appendArgument(ownProperties);
134 function.appendArgument(accessorPropertiesOnly);
135 function.appendArgument(generatePreview);
138 v8::Local<v8::Value> resultValue = function.callWithoutExceptionHandling();
217 V8FunctionCall function(m_context->inspector(), m_context->context(),
219 function.appendArgument(array);
220 function.appendArgument(property);
221 function.appendArgument(groupName);
222 function.appendArgument(forceValueType);
223 function.appendArgument(generatePreview);
225 function.call(hadException);
233 V8FunctionCall function(m_context->inspector(), m_context->context(),
235 function.appendArgument(value);
236 function.appendArgument(groupName);
237 function.appendArgument(forceValueType);
238 function.appendArgument(generatePreview);
240 *result = function.call(hadException);
249 V8FunctionCall function(m_context->inspector(), context, v8Value(),
251 function.appendArgument(table);
253 function.appendArgument(false);
255 function.appendArgument(columns);
257 v8::Local<v8::Value> r = function.call(hadException);
286 V8FunctionCall function(m_context->inspector(), m_context->context(),
288 function.appendArgument(enabled);
290 function.call(hadException);