Lines Matching refs:sourceLink

15507         var sourceLink = findSourceForFunction(fn, context);
15508 if (sourceLink)
15509 Firebug.chrome.select(sourceLink);
15511 FBTrace.sysout("reps.function.inspectObject selected sourceLink is ", sourceLink);
16564 hideSourceLink: function(sourceLink) argument
16566 return sourceLink ? sourceLink.href.indexOf("XPCSafeJSObjectWrapper") != -1 : true;
16569 getSourceLinkTitle: function(sourceLink) argument
16571 if (!sourceLink)
16576 var fileName = getFileName(sourceLink.href);
16586 return typeof sourceLink.line == "number" ?
16587 fileName + " (line " + sourceLink.line + ")" :
16594 copyLink: function(sourceLink) argument
16596 copyToClipboard(sourceLink.href);
16599 openInTab: function(sourceLink) argument
16601 openNewTab(sourceLink.href);
16613 getTooltip: function(sourceLink) argument
16615 return decodeURI(sourceLink.href);
16618 inspectObject: function(sourceLink, context) argument
16620 if (sourceLink.type == "js")
16622 var scriptFile = getSourceFileByHref(sourceLink.href, context);
16624 return Firebug.chrome.select(sourceLink);
16626 else if (sourceLink.type == "css")
16630 if (sourceLink.object) {
16631 Firebug.chrome.select(sourceLink.object);
16635 var stylesheet = getStyleSheetByHref(sourceLink.href, context);
16641 Firebug.chrome.select(sourceLink, "html");
16646 if (panel && panel.getRuleByLine(stylesheet, sourceLink.line))
16647 return Firebug.chrome.select(sourceLink);
16652 viewSource(sourceLink.href, sourceLink.line);
16655 browseObject: function(sourceLink, context) argument
16657 openNewTab(sourceLink.href);
16661 getContextMenuItems: function(sourceLink, target, context) argument
16664 {label: "CopyLocation", command: bindFixed(this.copyLink, this, sourceLink) },
16666 {label: "OpenInTab", command: bindFixed(this.openInTab, this, sourceLink) }
16697 browseObject: function(sourceLink, context) argument
16777 var sourceLink = new SourceLink(stackFrame.href, stackFrame.lineNo, "js");
16778 Firebug.chrome.select(sourceLink);
16991 var sourceLink = this.getSourceLink(error);
16992 FirebugReps.SourceLink.inspectObject(sourceLink, context);
17034 var sourceLink = this.getSourceLink(error);
17035 Firebug.chrome.select(sourceLink);
18695 sourceLink: null, // {href:"file.html", line: 22}
21671 log: function(object, context, className, rep, noThrottle, sourceLink) argument
21674 return this.logRow(appendObject, object, context, className, rep, sourceLink, noThrottle);
21677 logFormatted: function(objects, context, className, noThrottle, sourceLink) argument
21680 … return this.logRow(appendFormatted, objects, context, className, null, sourceLink, noThrottle);
21683 openGroup: function(objects, context, className, rep, noThrottle, sourceLink, noPush) argument
21685 … return this.logRow(appendOpenGroup, objects, context, className, rep, sourceLink, noThrottle);
21693 logRow: function(appender, objects, context, className, rep, sourceLink, noThrottle, noRow) argument
21712 var row = panel.append(appender, objects, className, rep, sourceLink, noRow);
21732 … consoleQueue.push([appender, objects, context, className, rep, sourceLink, noThrottle, noRow]);
21742 var args = [appender, objects, context, className, rep, sourceLink, true, noRow];
22019 logRow: function(appender, objects, context, className, rep, sourceLink, noThrottle, noRow) argument
22033 log: function(context, object, className, sourceLink) argument
22037 logFormatted: function(context, objects, className, sourceLink) argument
22056 append: function(appender, objects, className, rep, sourceLink, noRow) argument
22075 if (sourceLink)
22076 FirebugReps.SourceLink.tag.append({object: sourceLink}, row);
23165 var sourceLink = null;
23166 Firebug.Console.openGroup(arguments, null, "group", null, false, sourceLink);
23176 var sourceLink = getStackLink();
23178 var row = Firebug.Console.openGroup(arguments, null, "group", null, true, sourceLink);
23533 var sourceLink = linkToSource ? getStackLink() : null;
23534 return Firebug.Console.logFormatted(args, context, className, noThrottle, sourceLink);
27488 var sourceLink = object;
27490 var sourceFile = getSourceFileByHref(sourceLink.href, this.context);
27502 var stylesheet = getStyleSheetByHref(sourceLink.href, this.context);
27508 … FBTrace.sysout("css.updateSelection no sourceFile for "+sourceLink.href, sourceLink);
27966 var sourceLink = new SourceLink(href, line, "css", rule, instance);
27971 selector: ruleData.selector, sourceLink: sourceLink,