Home | History | Annotate | Download | only in js

Lines Matching refs:RESULTS

1079    This method is called to reset the position when search results appear or hide */
1781 var ROW_COUNT_FRAMEWORK = 20; // max number of results in list
1786 var ROW_COUNT_GOOGLE = 15; // max number of results in list
1790 var ROW_COUNT_DOCS = 100; // max number of results in list
1845 // if there are NO results at all, hide all columns
1851 // if there are api results
1861 // ########### ANDROID RESULTS #############
1864 // determine android results to show
1874 // ########### GOOGLE RESULTS #############
1879 // determine google results to show
1892 // ########### JD DOC RESULTS #############
1897 // determine google results to show
1990 // close all search results
1999 // if results aren't showing (and text not empty), return true to allow search to execute
2003 // otherwise, results are already showing, so allow ajax to auto refresh the results
2013 // If Google results are showing, return true to allow ajax search to execute
2015 // Also, if search_results is scrolled out of view, scroll to top to make results visible
2571 // reset the ajax search callback to nothing, so results don't appear unless ENTER
2658 // once search results load, set up click listeners
2663 // draw the search results box
2677 // if there's no query in the url, don't search and make sure results are hidden
2681 // first time loading search results for this page
2714 // If the results pane is open, close it.
2733 $("#searchTitle").html("Results for <em>" + escapeHTML(query) + "</em>");
2767 // When user clicks enter for Google search results, track it
3818 var results = [];
3865 // concat to final results list
3866 results = results.concat(resources);
3869 if (opts.sortOrder && results.length) {
3873 var i = results.length, j, temp;
3876 temp = results[i];
3877 results[i] = results[j];
3878 results[j] = temp;
3885 results = results.sort(function(x,y) {
3891 results = results.filter(getResourceNotAlreadyAddedFilter(addedPageResources));
3892 results = results.slice(0, maxResults);
3894 for (var j = 0; j < results.length; ++j) {
3895 addedPageResources[results[j].index] = 1;
3898 return results;