Home | History | Annotate | Download | only in profiler

Lines Matching refs:argument

214      * @param {!CanvasAgent.CallArgument|undefined} argument
217 _collectResourceFromCallArgument: function(argument, output)
219 if (!argument)
221 var resourceId = argument.resourceId;
224 this._resourceIdToDescription[resourceId] = argument.description;
225 output.push(argument);
252 var argument = collectedResources[i];
253 while (currentOption && String.naturalOrderComparator(currentOption.text, argument.description) < 0)
255 var option = this._resourceSelector.createOption(argument.description, WebInspector.UIString("Show state of this resource."), argument.resourceId);