Lines Matching refs:symbol
702 selector: 'a.intelliWindow-symbol',
711 "<span>Highlight</span> <b class=\"symbol-name\"></b></a>")))
714 "<span>Unhighlight</span> <b class=\"symbol-name\"></b></a>")))
726 "<span>Search for definitions of</span> <b class=\"symbol-name\"></b></a>")))
729 "<span>Search for references of</span> <b class=\"symbol-name\"></b></a>")))
732 "<span>Do a full search with</span> <b class=\"symbol-name\"></b></a>")))
735 "<span>Search for file names that contain</span> <b class=\"symbol-name\"></b></a>")))
740 "<span>Google</span> <b class=\"symbol-name\"></b></a>")))
756 .append($("<h2>").addClass('symbol-name'))
757 .append($("<span>").addClass('symbol-description'))
772 if (that.symbol) {
777 if (that.symbol) {
778 that.unhighlight(that.symbol).length === 0 && that.highlight(that.symbol);
801 symbol: undefined,
813 this.$last_highlighted_current = $el.hasClass("symbol-highlighted") ? $el : this.$last_highlighted_current
814 this.symbol = $el.text()
817 this.$window.find(".symbol-name").text(this.symbol);
818 this.$window.find(".symbol-description").text(this.getSymbolDescription(this.place))
832 this.$search_google.attr('href', this.options.google_url + this.symbol)
835 return this.options.contextPath + '/search?' + query + '=' + this.symbol + '&project=' + this.project;
842 return "A symbol declared or defined in this file.";
844 return "A symbol declared or defined elsewhere.";
853 highlight: function (symbol) {
854 if (this.$current.text() === symbol) {
858 return $(this).text() === symbol;
859 }).addClass('symbol-highlighted')
861 unhighlight: function (symbol) {
863 this.$last_highlighted_current.text() === symbol &&
864 this.$last_highlighted_current.hasClass('symbol-highlighted')) {
866 this.$last_highlighted_jump = this.getSymbols().slice(0, i).filter('.symbol-highlighted').last();
868 return this.getSymbols().filter(".symbol-highlighted").filter(function () {
869 return $(this).text() === symbol;
870 }).removeClass('symbol-highlighted')
875 return this.getSymbols().filter(".symbol-highlighted").removeClass("symbol-highlighted")
889 var $highlighted = this.getSymbols().filter(".symbol-highlighted");
899 $el = $el.filter('.symbol-highlighted')
910 $el = $el.filter('.symbol-highlighted')
930 callback.call(that, param || that.symbol)
1556 var symbol = symbols[j][0];
1559 + escape_html(symbol) + "</a><br/>";