Home | History | Annotate | Download | only in wiktionary

Lines Matching refs:query

222             // Start query for incoming search request
223 String query = intent.getStringExtra(SearchManager.QUERY);
224 startNavigating(query, true);
231 String query = data.getPathSegments().get(0);
232 startNavigating(query, true);
261 * background query to the Wiktionary API. When finished, it transitions
275 * Perform the background query using {@link ExtendedWikiHelper}, which
280 String query = args[0];
284 // If query word is null, assume request for random word
285 if (query == null) {
286 query = ExtendedWikiHelper.getRandomWord();
289 if (query != null) {
291 publishProgress(query);
292 String wikiText = ExtendedWikiHelper.getPageContent(query, true);