/external/webkit/Tools/Scripts/webkitpy/common/net/ |
layouttestresults_unittest.py | 42 <title>Layout Test Results</title> 54 </table><p>Tests that had no expected results (probably new):</p> 65 results = LayoutTestResults([]) 66 self.assertEquals(results.failure_limit_count(), None) 67 results.set_failure_limit_count(10) 68 self.assertEquals(results.failure_limit_count(), 10) 75 results = LayoutTestResults._parse_results_html(self._example_results_html) 76 self.assertEqual(expected_results, results) 81 results = LayoutTestResults.results_from_string(self._example_results_html) 82 self.assertEqual(len(results.failing_tests()), 0 [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
AppDataDirGuesser.java | 36 File[] results = guessPath(pathFromThisClassLoader); local 37 if (results.length > 0) { 38 return results[0]; 73 List<File> results = new ArrayList<File>(); local 94 results.add(cacheDir); 99 return results.toArray(new File[results.size()]);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/html/ |
components.html | 12 This view shows the performance results in similar way than the one used to generate 13 the performance results, hence make it easy to match the numbers in the corresponding 18 nor from the performance results database. 29 for each scenario and all build results are available in the performance results 50 The warning icon means that some warnings occur for some results. The current possible warning are: 87 As baselines results are not really useful for the survey, the filter is activated
|
builds.html | 20 nor from the performance results database. 27 a performance results database is connected: 51 <p><img src="images/builds-generate-menu.png" alt="Generate results: menu item"/></p> 55 <p><img src="images/builds-generate-baseline.png" alt="Generate results: baseline selection"/></p> 58 <p><img src="images/builds-generate-fingerprints.png" alt="Generate results: fingerprints"/></p> 79 be interesting to know which baselines have results in the DB.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/ |
ComponentsView.java | 11 package org.eclipse.test.internal.performance.results.ui; 44 import org.eclipse.test.internal.performance.results.model.BuildResultsElement; 45 import org.eclipse.test.internal.performance.results.model.ComponentResultsElement; 46 import org.eclipse.test.internal.performance.results.model.ConfigResultsElement; 47 import org.eclipse.test.internal.performance.results.model.ResultsElement; 48 import org.eclipse.test.internal.performance.results.model.ScenarioResultsElement; 49 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 50 import org.eclipse.test.internal.performance.results.utils.Util; 57 * View to see the performance results of all the components in a hierarchical tree. 60 * machines (aka config). All builds results are stored onto each configuratio [all...] |
/external/littlemock/src/com/google/testing/littlemock/ |
AppDataDirGuesser.java | 49 File[] results = guessPath(pathFromThisClassLoader); local 50 if (results.length > 0) { 51 return results[0]; 88 List<File> results = new ArrayList<File>(); local 108 results.add(cacheDir); 114 return results.toArray(new File[results.size()]);
|
/external/webkit/Source/WebKit/chromium/src/mac/ |
WebScreenInfoFactory.mm | 78 WebScreenInfo results; 79 results.depth = 81 results.depthPerComponent = 83 results.isMonochrome = colorSpace == NSCalibratedWhiteColorSpace 87 results.rect = 89 results.availableRect = 91 return results;
|
/frameworks/base/core/tests/coretests/src/android/os/ |
PerformanceCollectorTest.java | 180 Bundle results = writer.timingResults; local 181 assertEquals(4, results.size()); 182 assertTrue(results.containsKey("testAddMeasurementLongZero")); 183 assertEquals(0, results.getLong("testAddMeasurementLongZero")); 184 assertTrue(results.containsKey("testAddMeasurementLongPos")); 185 assertEquals(348573, results.getLong("testAddMeasurementLongPos")); 186 assertTrue(results.containsKey("testAddMeasurementLongNeg")); 187 assertEquals(-19354, results.getLong("testAddMeasurementLongNeg")); 201 Bundle results = writer.timingResults; local 202 assertEquals(4, results.size()) 222 Bundle results = writer.timingResults; local [all...] |
/external/chromium/chrome/common/extensions/ |
update_manifest_unittest.cc | 127 EXPECT_TRUE(parser.results().list.empty()); 131 EXPECT_TRUE(parser.results().list.empty()); 135 EXPECT_TRUE(parser.results().list.empty()); 139 EXPECT_TRUE(parser.results().list.empty()); 145 EXPECT_FALSE(parser.results().list.empty()); 146 const UpdateManifest::Result* firstResult = &parser.results().list.at(0); 163 EXPECT_FALSE(parser.results().list.empty()); 164 firstResult = &parser.results().list.at(0); 170 EXPECT_FALSE(parser.results().list.empty()); 171 EXPECT_EQ(parser.results().daystart_elapsed_seconds, 456) [all...] |
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/ |
ManagerService.java | 34 * A service that handles managing the results of tests, informing of crashes, generating 48 Environment.getExternalStorageDirectory() + File.separator + "layout-test-results"; 171 AbstractResult results = local 174 Log.i(LOG_TAG, "onActualResultObtained: " + results.getRelativePath()); 175 handleResults(results); 208 private void handleResults(AbstractResult results) { 209 String relativePath = results.getRelativePath(); 210 results.setExpectedTextResult(getExpectedTextResult(relativePath)); 211 results.setExpectedTextResultPath(getExpectedTextResultPath(relativePath)); 212 results.setExpectedImageResult(getExpectedImageResult(relativePath)) [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_contents_provider.cc | 24 // Number of days to search for full text results. The longer this is, the more 28 // When processing the results from the history query, this structure points to 29 // a single result. It allows the results to be sorted and processed without 30 // modifying the larger and slower results structure. 46 // Want results in reverse-chronological order all else being equal. 80 // (REQUESTED_URL or UNKNOWN with dots) because we get poor results for it, 81 // but we could get better results if we did better tokenizing instead. 91 // None of our results are applicable for best match. 100 // Decide what to do about any previous query/results. 105 // We finished the previous query and still have its results. Mark them u [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/ |
BuildResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 19 import org.eclipse.test.internal.performance.results.db.*; 20 import org.eclipse.test.internal.performance.results.utils.Util; 67 // Results category 69 BUILD_DATE_DESCRIPTOR.setCategory("Results"); 71 BUILD_BASELINE_DESCRIPTOR.setCategory("Results"); 73 BUILD_COMMENT_DESCRIPTOR.setCategory("Results"); 75 BUILD_SUMMARY_DESCRIPTOR.setCategory("Results"); 77 BUILD_IS_BASELINE_DESCRIPTOR.setCategory("Results"); 79 BUILD_TEST_FAILURE_DESCRIPTOR.setCategory("Results"); [all...] |
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
json_results.html | 36 .results-row { 40 .results-row iframe { 169 var existingResultsRow = parentTbody.querySelector('.results-row'); 185 newRow.className = 'results-row'; 234 // tests with MISSING results. 255 // FIXME: only include timeout actual/expected results here if we actually spit out results for timeout tests. 307 html += '<div id=options><label><input class="unexpected-results" type=checkbox checked>Only show unexpected results</label></div>'; 312 html += '<p>Tests where results did not match expected results:</p>' [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloPicking.java | 95 // 1. Reset results list.
96 CollisionResults results = new CollisionResults();
99 // 3. Collect intersections between Ray and Shootables in results list.
100 shootables.collideWith(ray, results);
101 // 4. Print the results
102 System.out.println("----- Collisions? " + results.size() + "-----");
103 for (int i = 0; i < results.size(); i++) {
105 float dist = results.getCollision(i).getDistance();
106 Vector3f pt = results.getCollision(i).getContactPoint();
107 String hit = results.getCollision(i).getGeometry().getName(); [all...] |
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/ |
UiAutomatorTestRunner.java | 83 Bundle results = new Bundle(); 84 results.putString("shortMsg", ex.getClass().getName()); 85 results.putString("longMsg", ex.getMessage()); 86 mWatcher.instrumentationFinished(null, 0, results); 185 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) { 189 if (!mRawMode && results != null) { 190 pretty = results.getString(Instrumentation.REPORT_KEY_STREAMRESULT); 195 if (results != null) { 196 for (String key : results.keySet()) { 198 + results.get(key)) [all...] |
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
TestResultRepo.java | 42 * Create a {@link TestResultRepo} from a directory of results 44 * @param testResultsDir the parent directory of results 102 // TODO: consider caching the results in future 108 TestResults results = new TestResults(); local 111 results.parse(new BufferedReader(new FileReader(resultFile))); 112 return results;
|
/external/icu4c/i18n/ |
csrucode.cpp | 32 UBool CharsetRecog_UTF_16_BE::match(InputText* textIn, CharsetMatch *results) const 42 results->set(textIn, this, confidence); 56 UBool CharsetRecog_UTF_16_LE::match(InputText* textIn, CharsetMatch *results) const 66 results->set(textIn, this, confidence); 75 UBool CharsetRecog_UTF_32::match(InputText* textIn, CharsetMatch *results) const 114 results->set(textIn, this, confidence);
|
/external/junit/src/org/junit/runners/model/ |
TestClass.java | 95 ArrayList<Class<?>> results= new ArrayList<Class<?>>(); local 98 results.add(current); 101 return results; 142 List<T> results= new ArrayList<T>(); local 147 results.add(valueClass.cast(fieldValue)); 153 return results;
|
/external/webkit/Tools/Scripts/ |
run-webkit-tests | 73 # old-run-webkit-tests treats --results-directory as $CWD relative. 74 # new-run-webkit-tests treats --results-directory as build directory relative. 75 # Override the passed in --results-directory by appending a new one 77 push(@ARGV, "--results-directory"); 78 # The buildbot always uses $SRCDIR/layout-test-results, hardcode it: 79 push(@ARGV, sourceDir() . "/layout-test-results");
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
ShouldQueryStrategy.java | 28 * into account the source's query threshold and query after zero results flag. 43 // returned zero results for some prefix of the current query. mEmptyCorpora 45 // zero results. When a query is shortened (e.g., by deleting characters) 77 * Called to notify ShouldQueryStrategy when a source reports no results for a query. 83 if (DBG) Log.d(TAG, corpus + " returned 0 results for '" + query + "'"); 93 // that reported zero results after this query.
|
/external/clang/include/clang/Sema/ |
Lookup.h | 23 /// @brief Represents the results of name lookup. 25 /// An instance of the LookupResult class captures the results of a 29 /// results occurred for a given lookup. 54 /// @brief Name lookup results in an ambiguity; use 61 /// Name lookup results in an ambiguity because multiple 75 /// Name lookup results in an ambiguity because multiple 89 /// Name lookup results in an ambiguity because multiple definitions 104 /// Name lookup results in an ambiguity because an entity with a 122 /// A little identifier for flagging temporary lookup results. 249 /// Determines if the results are overloaded [all...] |
/development/samples/SearchableDictionary/res/values/ |
strings.xml | 39 <!-- Shown above search results when we receive a search request. --> 42 <item quantity="other">%1$d results for \"%2$s\": </item> 46 <string name="no_results">No results found for \"%s\"</string>
|
/external/chromium/build/ |
apply_locales.py | 29 results = [] 38 results.append(str_template.replace('ZZLOCALE', locale)) 42 print ' '.join(["'%s'" % x for x in results])
|
/external/chromium/chrome/browser/autofill/ |
data_driven_test.h | 24 // the |output_directory|, verifies that the results match the file contents; 30 // Given the |input| data, generates the |output| results. The output results
|
/external/chromium/net/proxy/ |
mock_proxy_resolver.h | 28 ProxyInfo* results, 32 ProxyInfo* results() const { return results_; } function in class:net::MockAsyncProxyResolverBase::Request 74 ProxyInfo* results,
|