Lines Matching refs:s

481   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
2071 var s = DATA[i];
2073 s.label.toLowerCase().indexOf(text.toLowerCase()) != -1) {
2074 gMatches[matchedCount] = s;
2080 var s = gMatches[i];
2086 var s = GOOGLE_DATA[i];
2088 s.label.toLowerCase().indexOf(text.toLowerCase()) != -1) {
2089 gGoogleMatches[matchedCountGoogle] = s;
2095 var s = gGoogleMatches[i];
2111 var s = TRAINING_RESOURCES[i];
2112 s.matched_tag = 0;
2113 s.matched_title = 0;
2117 for (var j = s.keywords.length - 1; j >= 0; j--) {
2119 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2121 s.matched_tag = j + 1; // add 1 to index position
2126 if ((s.lang == currentLang) &&
2127 (!(s.type == "training" && s.url.indexOf("index.html") == -1) || matched)) {
2129 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2131 s.matched_title = 1;
2135 gDocsMatches[matchedCountDocs] = s;
2145 var s = GUIDE_RESOURCES[i];
2146 s.matched_tag = 0;
2147 s.matched_title = 0;
2151 for (var j = s.keywords.length - 1; j >= 0; j--) {
2153 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2156 s.matched_tag = j + 1; // add 1 to index position
2160 if (s.lang == currentLang) {
2162 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2164 s.matched_title = 1;
2168 gDocsMatches[matchedCountDocs] = s;
2178 var s = TOOLS_RESOURCES[i];
2179 s.matched_tag = 0;
2180 s.matched_title = 0;
2184 for (var j = s.keywords.length - 1; j >= 0; j--) {
2186 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2188 s.matched_tag = j + 1; // add 1 to index position
2192 if (s.lang == currentLang) {
2194 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2196 s.matched_title = 1;
2200 gDocsMatches[matchedCountDocs] = s;
2210 var s = ABOUT_RESOURCES[i];
2211 s.matched_tag = 0;
2212 s.matched_title = 0;
2216 for (var j = s.keywords.length - 1; j >= 0; j--) {
2218 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2220 s.matched_tag = j + 1; // add 1 to index position
2224 if (s.lang == currentLang) {
2226 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2228 s.matched_title = 1;
2232 gDocsMatches[matchedCountDocs] = s;
2242 var s = DESIGN_RESOURCES[i];
2243 s.matched_tag = 0;
2244 s.matched_title = 0;
2248 for (var j = s.keywords.length - 1; j >= 0; j--) {
2250 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2252 s.matched_tag = j + 1; // add 1 to index position
2256 if (s.lang == currentLang) {
2258 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2260 s.matched_title = 1;
2264 gDocsMatches[matchedCountDocs] = s;
2274 var s = DISTRIBUTE_RESOURCES[i];
2275 s.matched_tag = 0;
2276 s.matched_title = 0;
2280 for (var j = s.keywords.length - 1; j >= 0; j--) {
2282 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2284 s.matched_tag = j + 1; // add 1 to index position
2288 if (s.lang == currentLang) {
2290 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2292 s.matched_title = 1;
2296 gDocsMatches[matchedCountDocs] = s;
2306 var s = GOOGLE_RESOURCES[i];
2307 s.matched_tag = 0;
2308 s.matched_title = 0;
2312 for (var j = s.keywords.length - 1; j >= 0; j--) {
2314 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2316 s.matched_tag = j + 1; // add 1 to index position
2320 if (s.lang == currentLang) {
2322 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2324 s.matched_title = 1;
2328 gDocsMatches[matchedCountDocs] = s;
2338 var s = SAMPLES_RESOURCES[i];
2339 s.matched_tag = 0;
2340 s.matched_title = 0;
2343 for (var j = s.keywords.length - 1; j >= 0; j--) {
2345 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2347 s.matched_tag = j + 1; // add 1 to index position
2351 if (s.lang == currentLang) {
2353 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2355 s.matched_title = 1;
2359 gDocsMatches[matchedCountDocs] = s;
2368 var s = PREVIEW_RESOURCES[i];
2369 s.matched_tag = 0;
2370 s.matched_title = 0;
2374 for (var j = s.keywords.length - 1; j >= 0; j--) {
2376 if (s.keywords[j].toLowerCase().indexOf(queryStr) == 0) {
2378 s.matched_tag = j + 1; // add 1 to index position
2382 if (s.lang == currentLang) {
2384 if (s.title.toLowerCase().indexOf(queryStr) == 0) {
2386 s.matched_title = 1;
2390 gDocsMatches[matchedCountDocs] = s;
2450 var _lastSearch = function(s, re) { argument
2451 if (s == '')
2455 while ((tmp = s.search(re)) >= 0) {
2458 s = s.substr(tmp + 1);
2465 var _countChar = function(s, c) { argument
2467 for (var i=0; i<s.length; i++)
2468 if (s.charAt(i) == c) ++n;