Searched defs:results (Results 76 - 100 of 314) sorted by relevance

1234567891011>>

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DRawDataTable.java19 import org.eclipse.test.internal.performance.results.db.BuildResults;
20 import org.eclipse.test.internal.performance.results.db.ConfigResults;
21 import org.eclipse.test.internal.performance.results.db.DB_Results;
22 import org.eclipse.test.internal.performance.results.utils.Util;
36 private RawDataTable(ConfigResults results, PrintStream ps) { argument
37 this.configResults = results;
41 public RawDataTable(ConfigResults results, List prefixes, PrintStream ps) { argument
42 this(results, ps);
45 public RawDataTable(ConfigResults results, String baselinePrefix, PrintStream ps) { argument
46 this(results, p
[all...]
/external/icu4c/test/cintltst/
H A Dcfrtst.c69 const static UCollationResult results[] = variable
163 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
H A Dcg7coll.c107 const static int32_t results[TESTLOCALES][TOTALTESTSET] = { variable
182 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], UCOL_LESS);
215 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], UCOL_LESS);
245 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], UCOL_LESS);
275 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], UCOL_LESS);
304 doTest(myCollation, testCases[results[1
[all...]
/external/icu4c/test/intltest/
H A Dallcoll.cpp49 const Collator::EComparisonResult CollationDummyTest::results[] = { member in class:CollationDummyTest
98 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
116 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
149 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
H A Dencoll.cpp133 static const Collator::EComparisonResult results[] = { variable
249 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
286 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
296 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
H A Dg7coll.cpp59 static const int32_t results[G7CollationTest::TESTLOCALES][G7CollationTest::TOTALTESTSET] = { variable
149 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], Collator::LESS);
184 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], Collator::LESS);
218 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], Collator::LESS);
252 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], Collator::LESS);
281 doTest(myCollation, testCases[results[1
[all...]
H A Djacoll.cpp56 const Collator::EComparisonResult CollationKanaTest::results[] = { member in class:CollationKanaTest
114 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
H A DBresenhamTerrainPicker.java76 public Vector3f getTerrainIntersection(Ray worldPick, CollisionResults results) { argument
109 results.addCollision(cr);
126 results.addCollision(cr);
153 results.addCollision(cr);
/external/junit/src/org/junit/experimental/max/
H A DMaxCore.java154 List<Description> results= new ArrayList<Description>();
155 findLeaves(null, request.getRunner().getDescription(), results);
156 return results;
159 private void findLeaves(Description parent, Description description, List<Description> results) { argument
162 results.add(Description.createSuiteDescription(MALFORMED_JUNIT_3_TEST_CLASS_PREFIX + parent));
164 results.add(description);
167 findLeaves(description, each, results);
/external/junit/src/org/junit/internal/runners/
H A DTestClass.java42 List<Method> results= new ArrayList<Method>();
47 if (annotation != null && ! isShadowed(eachMethod, results))
48 results.add(eachMethod);
52 Collections.reverse(results);
53 return results;
60 private boolean isShadowed(Method method, List<Method> results) { argument
61 for (Method each : results) {
81 ArrayList<Class<?>> results= new ArrayList<Class<?>>();
84 results.add(current);
87 return results;
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DSimpleTestCursor.java14 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) { argument
59 this.results = results;
/external/smack/src/com/kenai/jbosh/
H A DBodyParserSAX.java78 private Handler(SAXParser theParser, BodyParserResults results) { argument
80 result = results;
/external/webkit/Source/WebCore/html/
H A DHTMLTableSectionElement.cpp51 void HTMLTableSectionElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results) argument
58 static_cast<HTMLTableElement*>(p)->addSharedGroupDecls(true, results);
/external/webkit/Source/WebCore/platform/chromium/
H A DChromiumDataObject.cpp110 HashSet<String> results; local
113 results.add(mimeTypeText);
114 results.add(mimeTypeTextPlain);
118 results.add(mimeTypeURL);
121 results.add(mimeTypeTextURIList);
124 results.add(mimeTypeTextHTML);
126 return results;
H A DChromiumDataObjectLegacy.cpp105 HashSet<String> results; local
108 results.add(mimeTypeText);
109 results.add(mimeTypeTextPlain);
113 results.add(mimeTypeURL);
116 results.add(mimeTypeTextURIList);
119 results.add(mimeTypeTextHTML);
122 results.add("Files");
124 return results;
/external/webkit/Source/WebKit/chromium/src/
H A DSpeechInputClientImpl.cpp97 void SpeechInputClientImpl::setRecognitionResult(int requestId, const WebSpeechInputResultArray& results) argument
100 WebCore::SpeechInputResultArray webcoreResults(results.size());
101 for (size_t i = 0; i < results.size(); ++i)
102 webcoreResults[i] = results[i];
/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/
H A Dutil.js31 var results; variable
/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/
H A DConfigResultsElement.java11 package org.eclipse.test.internal.performance.results.model;
17 import org.eclipse.test.internal.performance.results.db.*;
18 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
19 import org.eclipse.test.internal.performance.results.utils.Util;
110 list.add("The results history for this machine shows that the variation of its delta is over 20%, hence its result is surely not reliable");
113 list.add("The results history for this machine shows that the variation of its delta is between 10% and 20%, hence its result may not be really reliable");
136 public ConfigResultsElement(AbstractResults results, ResultsElement parent) { argument
137 super(results, parent);
166 return (ConfigResults) this.results;
H A DDimResultsElement.java11 package org.eclipse.test.internal.performance.results.model;
16 import org.eclipse.test.internal.performance.results.db.*;
77 public DimResultsElement(AbstractResults results, ResultsElement parent, Dim d) { argument
78 super(results, parent);
87 return (BuildResults) this.results;
/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/
H A DConfigTab.java11 package org.eclipse.test.internal.performance.results.ui;
39 import org.eclipse.test.internal.performance.results.db.AbstractResults;
40 import org.eclipse.test.internal.performance.results.model.BuildResultsElement;
41 import org.eclipse.test.internal.performance.results.model.ComponentResultsElement;
42 import org.eclipse.test.internal.performance.results.model.ConfigResultsElement;
43 import org.eclipse.test.internal.performance.results.model.ResultsElement;
44 import org.eclipse.test.internal.performance.results.model.ScenarioResultsElement;
45 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
46 import org.eclipse.test.internal.performance.results.utils.Util;
50 * Tab to display all performances results number
78 ComponentResultsElement results; field in class:ConfigTab
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_contents_provider.cc24 // 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
163 QueryComplete(HistoryService::Handle handle, history::QueryResults* results) argument
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dmock_url_fetchers.cc23 const std::string& results,
49 const std::string& results,
71 const std::string& results,
92 const std::string& results,
123 const std::string& results,
167 const std::string& results,
20 ExpectCanceledFetcher( bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
47 GotCanceledFetcher(bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
69 SuccessFetcher(bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
90 FailFetcher(bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
121 CaptchaFetcher(bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
165 HostedFetcher(bool success, const GURL& url, const std::string& results, URLFetcher::RequestType request_type, URLFetcher::Delegate* d) argument
/external/chromium/chrome/browser/history/
H A Dhistory_querying_unittest.cc36 // 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, argument
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) { argument
129 results
76 QueryHistory(const std::string& text_query, const QueryOptions& options, QueryResults* results) argument
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...]
H A Dtext_database_unittest.cc57 std::vector<TextDatabase::Match> results; local
60 db->GetTextMatches("COUNTTAG", options, &results, &unique_urls,
62 return static_cast<int>(results.size());
76 bool ResultsHaveURL(const std::vector<TextDatabase::Match>& results, argument
79 for (size_t i = 0; i < results.size(); i++) {
80 if (results[i].url == gurl)
192 // Get all the results.
196 std::vector<TextDatabase::Match> results; local
199 db->GetTextMatches("COUNTTAG", options, &results, &unique_urls,
204 ASSERT_EQ(3U, results
247 std::vector<TextDatabase::Match> results; local
305 std::vector<TextDatabase::Match> results; local
[all...]
/external/chromium/chrome/browser/net/
H A Dresolve_proxy_msg_helper_unittest.cc19 virtual ConfigAvailability GetLatestProxyConfig(net::ProxyConfig* results) { argument
20 *results = net::ProxyConfig::CreateFromCustomPacURL(GURL("http://pac"));
106 resolver_->pending_requests()[0]->results()->UseNamedProxy("result1:80");
118 resolver_->pending_requests()[0]->results()->UseNamedProxy("result2:80");
130 resolver_->pending_requests()[0]->results()->UseNamedProxy("result3:80");
165 resolver_->pending_requests()[0]->results()->UseNamedProxy("result1:80");
176 resolver_->pending_requests()[0]->results()->UseNamedProxy("result2:80");
187 resolver_->pending_requests()[0]->results()->UseNamedProxy("result3:80");

Completed in 623 milliseconds

1234567891011>>