Lines Matching refs:function

63     ScriptFunctionCall function(injectedScriptObject(), "evaluate");
64 function.appendArgument(expression);
65 function.appendArgument(objectGroup);
66 function.appendArgument(includeCommandLineAPI);
67 function.appendArgument(returnByValue);
68 function.appendArgument(generatePreview);
69 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
74 ScriptFunctionCall function(injectedScriptObject(), "callFunctionOn");
75 function.appendArgument(objectId);
76 function.appendArgument(expression);
77 function.appendArgument(arguments);
78 function.appendArgument(returnByValue);
79 function.appendArgument(generatePreview);
80 makeEvalCall(errorString, function, result, wasThrown);
85 ScriptFunctionCall function(injectedScriptObject(), "evaluateOnCallFrame");
86 function.appendArgument(callFrames);
87 function.appendArgument(asyncCallStacks);
88 function.appendArgument(callFrameId);
89 function.appendArgument(expression);
90 function.appendArgument(objectGroup);
91 function.appendArgument(includeCommandLineAPI);
92 function.appendArgument(returnByValue);
93 function.appendArgument(generatePreview);
94 makeEvalCall(errorString, function, result, wasThrown, exceptionDetails);
99 ScriptFunctionCall function(injectedScriptObject(), "restartFrame");
100 function.appendArgument(callFrames);
101 function.appendArgument(callFrameId);
103 makeCall(function, &resultValue);
119 ScriptFunctionCall function(injectedScriptObject(), "getStepInPositions");
120 function.appendArgument(callFrames);
121 function.appendArgument(callFrameId);
123 makeCall(function, &resultValue);
139 ScriptFunctionCall function(injectedScriptObject(), "setVariableValue");
141 function.appendArgument(callFrames);
142 function.appendArgument(*callFrameIdOpt);
144 function.appendArgument(false);
145 function.appendArgument(false);
148 function.appendArgument(*functionObjectIdOpt);
150 function.appendArgument(false);
151 function.appendArgument(scopeNumber);
152 function.appendArgument(variableName);
153 function.appendArgument(newValueStr);
155 makeCall(function, &resultValue);
169 ScriptFunctionCall function(injectedScriptObject(), "getFunctionDetails");
170 function.appendArgument(functionId);
172 makeCall(function, &resultValue);
183 ScriptFunctionCall function(injectedScriptObject(), "getCollectionEntries");
184 function.appendArgument(objectId);
186 makeCall(function, &resultValue);
197 ScriptFunctionCall function(injectedScriptObject(), "getProperties");
198 function.appendArgument(objectId);
199 function.appendArgument(ownProperties);
200 function.appendArgument(accessorPropertiesOnly);
203 makeCall(function, &result);
213 ScriptFunctionCall function(injectedScriptObject(), "getInternalProperties");
214 function.appendArgument(objectId);
217 makeCall(function, &result);
232 ScriptFunctionCall function(injectedScriptObject(), "nodeForObjectId");
233 function.appendArgument(objectId);
236 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
244 ScriptFunctionCall function(injectedScriptObject(), "releaseObject");
245 function.appendArgument(objectId);
247 makeCall(function, &result);
253 ScriptFunctionCall function(injectedScriptObject(), "wrapCallFrames");
254 function.appendArgument(callFrames);
255 function.appendArgument(asyncOrdinal);
257 ScriptValue callFramesValue = callFunctionWithEvalEnabled(function, hadException);
307 ScriptFunctionCall function(injectedScriptObject(), "findObjectById");
308 function.appendArgument(objectId);
311 ScriptValue resultValue = callFunctionWithEvalEnabled(function, hadException);
319 ScriptFunctionCall function(injectedScriptObject(), "inspectNode");
320 function.appendArgument(nodeAsScriptValue(node));
322 makeCall(function, &result);