/dalvik/tests/003-omnibus-opcodes/src/ |
FloatMath.java | 118 * We pass in the arguments and return the results so the compiler 124 float[] results = new float[9]; local 127 results[0] = x + y; 128 results[1] = x - y; 129 results[2] = x * y; 130 results[3] = x / y; 131 results[4] = x % -y; 134 results[8] = x + (((((x + y) - y) * y) / y) % y); 136 return results; 138 static void floatOperCheck(float[] results) { 154 double[] results = new double[9]; local 186 int[] results = new int[6]; local 206 long[] results = new long[6]; local 226 float[] results = new float[3]; local 241 double[] results = new double[3]; local [all...] |
IntMath.java | 114 * We pass in the arguments and return the results so the compiler 120 int[] results = new int[10]; local 123 results[0] = x + y; 124 results[1] = x - y; 125 results[2] = x * y; 126 results[3] = x * x; 127 results[4] = x / y; 128 results[5] = x % -y; 129 results[6] = x & y; 130 results[7] = x | y 166 int[] results = new int[8]; local 196 int[] results = new int[8]; local 235 int results[] = new int[4]; local 260 long[] results = new long[10]; local 308 long results[] = new long[4]; local [all...] |
/external/skia/gm/tests/outputs/aaclip-write/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : null
|
/external/skia/gm/tests/outputs/no-readpath/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : null
|
/external/valgrind/main/memcheck/tests/ |
vcpu_fbench.stdout.exp | 6 to normalise for reporting results. For archival results, 10 No errors in results.
|
/build/tools/droiddoc/templates-pdk/assets/ |
android-developer-resource-browser.css | 3 #resource-browser-results .no-results { 8 #resource-browser-results .result { 15 #resource-browser-results .tagged-article { 19 #resource-browser-results .tagged-sample { 23 #resource-browser-results .tagged-tutorial { 27 #resource-browser-results .resource-meta {
|
/external/chromium/chrome/browser/history/ |
history_querying_unittest.cc | 36 // service should sort them by visit time when returning query results. 49 // Returns true if the nth result in the given results set matches. It will 50 // return false on a non-match or if there aren't enough results. 51 bool NthResultIs(const QueryResults& results, 54 if (static_cast<int>(results.size()) <= n) 57 const URLResult& result = results[n]; 78 QueryResults* results) { 82 results->Swap(&last_query_results_); 128 void QueryHistoryComplete(HistoryService::Handle, QueryResults* results) { 129 results->Swap(&last_query_results_) 152 QueryResults results; local 155 QueryHistory(std::string(), options, &results); local 166 QueryHistory(std::string(), options, &results); local 176 QueryResults results; local 181 QueryHistory(std::string(), options, &results); local 191 QueryResults results; local 193 QueryHistory(std::string(), options, &results); local 197 QueryHistory(std::string(), options, &results); local 201 QueryHistory(std::string(), options, &results); local 205 QueryHistory(std::string(), options, &results); local 209 QueryHistory(std::string(), options, &results); local 219 QueryResults results; local 249 QueryResults results; local 265 QueryResults results; local 280 QueryResults results; local 320 QueryResults results; local [all...] |
history_types_unittest.cc | 39 void AddSimpleData(QueryResults* results) { 47 results->AppendURLBySwapping(&result1); 48 results->AppendURLBySwapping(&result2); 49 results->AppendURLBySwapping(&result3); 50 CheckHistoryResultConsistency(*results); 54 void AddAlternateData(QueryResults* results) { 61 results->AppendURLBySwapping(&result1); 62 results->AppendURLBySwapping(&result2); 63 CheckHistoryResultConsistency(*results); 72 QueryResults results; local 111 QueryResults results; local 138 QueryResults results; local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/ |
overview.html | 11 The performance results tool provide an easy way to look at results collected 12 while running performance tests on a build. It is accessible using the <b>Performance Results</b> 14 <p><img src="images/perspective.png" alt="Performance Results perspective"/></p> 19 the results in details for each components</li> 21 update local data and generate results when necessary</li> 22 <li><a href="results.html">Components Results view</a>: This is the view to 23 see whole results for each machine in a single table</li> 25 (typically results numbers and other database information)</li [all...] |
/dalvik/tests/085-old-style-inner-class/ |
info.txt | 1 Test that the conversion of an old-style (pre-1.5) inner class results
|
/external/easymock/src/org/easymock/internal/ |
ExpectedInvocationAndResults.java | 26 Results results;
field in class:ExpectedInvocationAndResults 29 Results results) {
31 this.results = results;
38 public Results getResults() {
39 return results;
44 return expectedInvocation.toString() + ": " + results.toString();
|
/external/webkit/Tools/Scripts/webkitpy/tool/bot/ |
expectedfailures.py | 34 def _can_trust_results(self, results): 35 if not results or not results.failure_limit_count(): 37 return len(results.failing_tests()) != 0 and len(results.failing_tests()) != results.failure_limit_count() 39 def failures_were_expected(self, results): 40 if not self._can_trust_results(results): 42 return set(results.failing_tests()) <= self._failures 44 def shrink_expected_failures(self, results, run_success) [all...] |
/frameworks/base/core/java/android/widget/ |
CursorFilter.java | 24 * and convert the results into String that can be used by auto-completion 51 FilterResults results = new FilterResults(); local 53 results.count = cursor.getCount(); 54 results.values = cursor; 56 results.count = 0; 57 results.values = null; 59 return results; 63 protected void publishResults(CharSequence constraint, FilterResults results) { 66 if (results.values != null && results.values != oldCursor) [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
CursorFilter.java | 25 * delegate methods to run the queries and convert the results into String 52 FilterResults results = new FilterResults(); local 54 results.count = cursor.getCount(); 55 results.values = cursor; 57 results.count = 0; 58 results.values = null; 60 return results; 64 protected void publishResults(CharSequence constraint, FilterResults results) { 67 if (results.values != null && results.values != oldCursor) [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/ |
iterate.cs | 3 Results: 4 <?cs each:result = results ?>
|
/external/skia/gm/tests/outputs/aaclip-readback/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : {
|
/external/skia/gm/tests/outputs/compared-against-different-pixels/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : {
|
/external/skia/gm/tests/outputs/compared-against-empty-dir/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : {
|
/external/skia/gm/tests/outputs/compared-against-identical-bytes/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : {
|
/external/skia/gm/tests/outputs/compared-against-identical-pixels/output-expected/ |
json-summary.txt | 2 "actual-results" : { 15 "expected-results" : {
|
/external/srec/srec/Recognizer/src/ |
RecognizerResultImpl.c | 55 impl->results = NULL; 97 CHKLOG(rc, ArrayListGetSize(impl->results, count)); 108 ArrayList* results; local 112 CHKLOG(rc, impl->results->get(impl->results, nbest, (void **)&results)); 117 CHKLOG(rc, results->get(results, 0, (void **)&result)); 128 ArrayList* results; local 133 CHKLOG(rc, impl->results->get(impl->results, nbest, (void **)&results)) 151 ArrayList* results; local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/ |
MetadataHandler.java | 42 * @param results the cursor to read data from. 45 private static List<WordListMetadata> makeMetadataObject(final Cursor results) { 48 if (results.moveToFirst()) { 49 final int localeColumn = results.getColumnIndex(MetadataDbHelper.LOCALE_COLUMN); 50 final int typeColumn = results.getColumnIndex(MetadataDbHelper.TYPE_COLUMN); 52 results.getColumnIndex(MetadataDbHelper.DESCRIPTION_COLUMN); 53 final int idIndex = results.getColumnIndex(MetadataDbHelper.WORDLISTID_COLUMN); 54 final int updateIndex = results.getColumnIndex(MetadataDbHelper.DATE_COLUMN); 55 final int fileSizeIndex = results.getColumnIndex(MetadataDbHelper.FILESIZE_COLUMN); 56 final int checksumIndex = results.getColumnIndex(MetadataDbHelper.CHECKSUM_COLUMN) 94 final Cursor results = MetadataDbHelper.queryCurrentMetadata(context, clientId); local [all...] |
/external/webkit/Tools/TestResultServer/model/ |
jsonresults_unittest.py | 67 '"results":[[TESTDATA_TEST_RESULTS]],' 150 # Empty incremental results json. 153 # Aggregated results 155 # Incremental results 160 # No actual incremental test results (only prefix and suffix) to merge. 163 # Aggregated results 165 # Incremental results 170 # No existing aggregated results. 171 # Merged results == new incremental results [all...] |
/external/chromium-trace/trace-viewer/ |
PRESUBMIT.py | 35 results = [] 36 results.extend(input_api.canned_checks.PanProjectChecks( 38 results.extend(_CheckIfAboutTracingIsOutOfdate(input_api, output_api)) 59 results.extend(css_checker.CSSChecker(input_api, output_api, 61 results.extend(js_checker.JSChecker(input_api, output_api, 66 results.extend(input_api.canned_checks.CheckLicense( 69 return results 90 results = [] 91 results.extend(_CommonChecks(input_api, output_api)) 92 return results [all...] |
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/ |
SimpleTestCursor.java | 14 Object[][] results = new Object[0][0]; field in class:SimpleTestCursor 35 return (String) results[resultsIndex][columnIndex]; 40 return (Long) results[resultsIndex][columnIndex]; 46 return resultsIndex < results.length; 58 public void setResults(Object[][] results) { 59 this.results = results;
|