/frameworks/ex/common/java/com/android/common/contacts/ |
BaseEmailAddressAdapter.java | 73 * The preferred number of results to be retrieved. This number may be 173 FilterResults results = new FilterResults(); local 186 results.count = cursor.getCount(); 188 results.values = new Cursor[] { directoryCursor, cursor }; 189 return results; 193 protected void publishResults(CharSequence constraint, FilterResults results) { 194 if (results.values != null) { 195 Cursor[] cursors = (Cursor[]) results.values; 198 results.count = getCount(); 230 FilterResults results = new FilterResults() local [all...] |
/external/chromium_org/base/test/launcher/ |
test_results_tracker.cc | 68 // Maps test case names to test results. 73 per_iteration_data_[iteration_].results.begin(); 74 i != per_iteration_data_[iteration_].results.end(); 177 per_iteration_data_[iteration_].results[ 277 per_iteration_data_[i].results.begin(); 278 j != per_iteration_data_[i].results.end(); 338 per_iteration_data_[iteration].results.begin(); 339 j != per_iteration_data_[iteration].results.end();
|
/external/chromium_org/chrome/browser/resources/history/ |
history.css | 52 #results-display, 53 #results-pagination { 210 #results-display { 269 .search-results, 270 .day-results { 275 .site-results { 283 .site-results.grouped { 287 .no-checkboxes .site-results.grouped { 291 .month-results { 295 html[dir='rtl'] .site-results { [all...] |
/external/chromium_org/chrome/browser/spellchecker/ |
spelling_service_client_unittest.cc | 154 const std::vector<SpellCheckResult>& results) { 158 for (std::vector<SpellCheckResult>::const_iterator it = results.begin(); 159 it != results.end(); ++it) { 166 std::vector<SpellCheckResult> results; local 167 return ParseResponse(data, &results); 192 // monitor the class calls the callback with expected results. 198 const std::vector<SpellCheckResult>& results) { 199 client_.VerifyResponse(success, text, results); 218 // the corrected text with the expected results. (If there are not any
|
spelling_service_client.cc | 122 // if SPELLCHECK is not available for our language because SPELLCHECK results 123 // are a superset of SUGGEST results. 137 std::vector<SpellCheckResult>* results) { 221 results->push_back(result); 243 std::vector<SpellCheckResult> results; local 247 success = ParseResponse(data, &results); 253 callback_data->callback.Run(success, callback_data->text, results);
|
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck.cc | 229 WebVector<WebTextCheckingResult>* results) { 232 DCHECK(results); 251 results->assign(textcheck_results); 266 results->assign(textcheck_results); 370 WebVector<blink::WebTextCheckingResult> results; local 371 SpellCheckParagraph(param->text(), &results); 372 param->completion()->didFinishCheckingText(results);
|
/external/chromium_org/third_party/skia/tests/ |
PathOpsCubicQuadIntersectionTest.cpp | 127 int results[101]; local 128 sk_bzero(results, sizeof(results)); 221 results[diffIdx]++; 269 while (results[max] == 0) { 276 SkDebugf("%d ", results[i]); 297 SkDebugf("%1.9g ", sumCross[i] / results[i]);
|
/external/skia/tests/ |
PathOpsCubicQuadIntersectionTest.cpp | 127 int results[101]; local 128 sk_bzero(results, sizeof(results)); 221 results[diffIdx]++; 269 while (results[max] == 0) { 276 SkDebugf("%d ", results[i]); 297 SkDebugf("%1.9g ", sumCross[i] / results[i]);
|
/frameworks/opt/net/wifi/service/jni/ |
com_android_server_wifi_WifiNative.cpp | 420 wifi_scan_result results[256]; local 424 ALOGD("getting scan results on interface[%d] = %p", iface, handle); 426 int result = wifi_get_cached_gscan_results(handle, 1, num_results, results, &num_results); 448 setStringField(env, scanResult, "SSID", results[i].ssid); 451 sprintf(bssid, "%02x:%02x:%02x:%02x:%02x:%02x", results[i].bssid[0], 452 results[i].bssid[1], results[i].bssid[2], results[i].bssid[3], 453 results[i].bssid[4], results[i].bssid[5]) [all...] |
/external/chromium_org/ |
PRESUBMIT_test.py | 359 results = PRESUBMIT._CheckPatchFiles(mock_input_api, MockOutputApi()) 360 self.assertEqual(1, len(results)) 361 self.assertEqual(2, len(results[0].items)) 362 self.assertTrue('foo.cc.rej' in results[0].items[0]) 363 self.assertTrue('bar.h.rej' in results[0].items[1]) 373 results = PRESUBMIT._CheckPatchFiles(mock_input_api, MockOutputApi()) 374 self.assertEqual(1, len(results)) 375 self.assertEqual(1, len(results[0].items)) 376 self.assertTrue('qux.h.orig' in results[0].items[0]) 384 results = PRESUBMIT._CheckPatchFiles(mock_input_api, MockOutputApi() [all...] |
/external/chromium_org/components/omnibox/ |
search_suggestion_parser.cc | 98 // In case of zero-suggest results, do not highlight matches. 202 // In case of zero-suggest results, do not highlight matches. 243 // SearchSuggestionParser::Results --------------------------------------------- 245 SearchSuggestionParser::Results::Results() 250 SearchSuggestionParser::Results::~Results() {} 252 void SearchSuggestionParser::Results::Clear() { 259 bool SearchSuggestionParser::Results::HasServerProvidedScores() const { 263 // Right now either all results of one type will be server-scored or they wil [all...] |
/external/chromium_org/net/proxy/ |
multi_threaded_proxy_resolver_unittest.cc | 40 ProxyInfo* results, 55 results->UseNamedProxy(query_url.host()); 137 ProxyInfo* results, 147 query_url, results, callback, request, net_log); 164 ProxyInfo* results, 169 query_url, results, callback, request, net_log); 608 ProxyInfo results[kNumRequests]; local 614 GURL("http://request0"), &results[0], callback[0].callback(), &request[0], 621 EXPECT_EQ("PROXY request0:80", results[0].ToPacString()); 633 GURL(base::StringPrintf("http://request%d", i)), &results[i] 720 ProxyInfo results[kNumRequests]; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
TextCheckingHelper.cpp | 46 static void findBadGrammars(TextCheckerClient& client, const UChar* text, int start, int length, Vector<TextCheckingResult>& results) 65 results.append(badGrammar); 72 static void findMisspellings(TextCheckerClient& client, const UChar* text, int start, int length, Vector<TextCheckingResult>& results) 94 results.append(misspelling); 310 // since we will want to ignore results in this area. 328 // since we will want to ignore results in this area. 341 Vector<TextCheckingResult> results; 343 checkTextOfParagraph(m_client->textChecker(), paragraphString, checkingTypes, results); 345 for (unsigned i = 0; i < results.size(); i++) { 346 const TextCheckingResult* result = &results[i] [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/ |
main.js | 43 var results; variable 105 loadText('/results.json', function(text) { 106 results = JSON.parse(text); 112 * Groups test results by failure type. 119 for (var testName in results.tests) { 120 var test = results.tests[testName]; 234 var state = results.tests[testName].state; 251 var selectedTypeIsSortable = 'metric' in results.tests[sampleSelectedTest]; 257 return results.tests[b].metric - results.tests[a].metri [all...] |
/frameworks/base/services/usage/java/com/android/server/usage/ |
UserUsageStatsService.java | 251 // in-memory stats to the results (if necessary) so as to avoid writing to disk too 256 List<T> results = mDatabase.queryUsageStats(intervalType, beginTime, local 259 Slog.d(TAG, "Got " + (results != null ? results.size() : 0) + " results from disk"); 270 if (results == null) { 271 results = new ArrayList<>(); 273 combiner.combine(currentStats, true, results); 277 Slog.d(TAG, mLogPrefix + "Results: " + (results != null ? results.size() : 0)) 292 List<UsageEvents.Event> results = queryStats(UsageStatsManager.INTERVAL_DAILY, local [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
ContactsContract_StreamItemsTest.java | 129 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops); local 130 long rawContactId = ContentUris.parseId(results[0].uri); 133 Uri streamItemUri = results[1].uri; 155 results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops); 156 assertEquals(Integer.valueOf(1), results[0].count);
|
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/ |
js_checker.py | 163 results = [] 212 results.append(self._makeErrorOrWarning( 215 if results: 216 results.append(self.output_api.PresubmitNotifyResult( 222 return results
|
/external/chromium_org/build/android/pylib/base/ |
base_test_result.py | 5 """Module containing base test results classes.""" 75 """Set of results for a test run.""" 143 def AddResults(self, results): 144 """Add |results| to the set. 147 results: An iterable of BaseTestResult objects. 149 for t in results: 152 def AddTestRunResults(self, results): 153 """Add the set of test results from |results|. 156 results: An instance of TestRunResults [all...] |
/external/chromium_org/build/android/ |
test_runner.py | 565 results, test_exit_code = test_dispatcher.RunTests( 573 results=results, 588 results, exit_code = test_dispatcher.RunTests( 593 results=results, 608 results = base_test_result.TestRunResults() 618 results.AddTestRunResults(test_results) 630 results.AddTestRunResults(test_results) 641 results=results [all...] |
/external/chromium_org/chrome/browser/web_dev_style/ |
js_checker.py | 192 results = [] 235 results.append(self._MakeErrorOrWarning( 238 if results: 239 results.append(self.output_api.PresubmitNotifyResult( 246 return results
|
/external/chromium_org/third_party/skia/src/core/ |
SkTileGrid.cpp | 72 void SkTileGrid::search(const SkRect& query, SkTDArray<void*>* results) const { 106 results->setCount(tile.count()); 108 (*results)[i] = tile[i].data; 127 // Merge tiles into results until they're fully consumed. 128 results->reset(); 147 results->push(earliest->data);
|
/external/chromium_org/tools/chrome_proxy/integration_tests/ |
network_metrics_unittest.py | 162 results = test_page_test_results.TestPageTestResults(self) 163 metric.AddResults(None, results) 166 results.AssertHasPageSpecificScalarValue('content_length', 'bytes', cl) 169 results.AssertHasPageSpecificScalarValue( 173 results.AssertHasPageSpecificScalarValue(
|
/external/chromium_org/tools/telemetry/telemetry/ |
benchmark.py | 20 from telemetry.results import results_options 93 results = results_options.CreateResults(benchmark_metadata, finder_options) 95 page_runner.Run(pt, ps, expectations, finder_options, results) 99 results.PrintSummary() 100 return len(results.failures)
|
/external/guava/guava-tests/test/com/google/common/util/concurrent/ |
MoreExecutorsTest.java | 211 List<Future<String>> results; local 213 results = service.invokeAll(callables); 214 ASSERT.that(getOnlyElement(results)).isA(ListenableFutureTask.class); 216 results = service.invokeAll(callables, 1, SECONDS); 217 ASSERT.that(getOnlyElement(results)).isA(ListenableFutureTask.class);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
SentenceLevelAdapter.java | 163 SentenceTextInfoParams originalTextInfoParams, SuggestionsInfo[] results) { 164 if (results == null || results.length == 0) { 181 for (int j = 0; j < results.length; ++j) { 182 final SuggestionsInfo cur = results[j];
|