Searched refs:results (Results 1 - 25 of 627) sorted by relevance

1234567891011>>

/external/v8/test/mjsunit/
H A Dstress-array-push.js30 var results = []; variable
32 if ((k%10000) == 0) results.length = 0;
33 results.push({});
/external/webkit/Source/WebKit/chromium/src/x11/
H A DWebScreenInfoFactory.cpp42 WebScreenInfo results; local
44 results.depthPerComponent = 8;
48 results.depth = XDisplayPlanes(display, screenNumber);
49 results.isMonochrome = results.depth == 1;
51 results.rect = WebRect(0, 0, displayWidth, displayHeight);
56 results.availableRect = results.rect;
58 return results;
/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dexpectedfailures.py34 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_succes
[all...]
/external/easymock/src/org/easymock/internal/
H A DExpectedInvocationAndResults.java26 Results results; field in class:ExpectedInvocationAndResults
29 Results results) {
31 this.results = results;
39 return results;
44 return expectedInvocation.toString() + ": " + results.toString();
28 ExpectedInvocationAndResults(ExpectedInvocation expectedInvocation, Results results) argument
H A DUnorderedBehavior.java26 private final List<ExpectedInvocationAndResults> results = new ArrayList<ExpectedInvocationAndResults>(); field in class:UnorderedBehavior
36 for (ExpectedInvocationAndResults entry : results) {
44 results.add(new ExpectedInvocationAndResults(expected, list));
48 for (ExpectedInvocationAndResults entry : results) {
70 for (ExpectedInvocationAndResults entry : results) {
79 List<ErrorMessage> messages = new ArrayList<ErrorMessage>(results
81 for (ExpectedInvocationAndResults entry : results) {
104 } else if (results.isEmpty() || !this.checkOrder) {
107 ExpectedInvocation lastMethodCall = results.get(results
[all...]
/external/webkit/Source/WebCore/page/
H A DSpeechInputEvent.cpp38 PassRefPtr<SpeechInputEvent> SpeechInputEvent::create(const AtomicString& eventType, const SpeechInputResultArray& results) argument
40 return adoptRef(new SpeechInputEvent(eventType, results));
46 SpeechInputEvent::SpeechInputEvent(const AtomicString& eventType, const SpeechInputResultArray& results) argument
48 , m_results(SpeechInputResultList::create(results))
H A DSpeechInputResultList.cpp38 PassRefPtr<SpeechInputResultList> SpeechInputResultList::create(const SpeechInputResultArray& results) argument
40 return adoptRef(new SpeechInputResultList(results));
48 SpeechInputResultList::SpeechInputResultList(const SpeechInputResultArray& results) argument
49 : m_results(results) // Takes a copy of the array of RefPtrs.
H A DSpeechInputEvent.idl31 readonly attribute SpeechInputResultList results;
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollisionResults.java47 private final ArrayList<CollisionResult> results = new ArrayList<CollisionResult>(); field in class:CollisionResults
51 * Clears all collision results added to this list
54 results.clear();
58 * Iterator for iterating over the collision results.
64 Collections.sort(results);
68 return results.iterator();
72 results.add(result);
77 return results.size();
85 Collections.sort(results);
89 return results
[all...]
H A DCollidable.java49 * @param results Will contain the list of {@link CollisionResult}s.
52 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException; 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 Dhistory_types_unittest.cc39 void AddSimpleData(QueryResults* results) { argument
47 results->AppendURLBySwapping(&result1);
48 results->AppendURLBySwapping(&result2);
49 results->AppendURLBySwapping(&result3);
50 CheckHistoryResultConsistency(*results);
54 void AddAlternateData(QueryResults* results) { argument
61 results->AppendURLBySwapping(&result1);
62 results->AppendURLBySwapping(&result2);
63 CheckHistoryResultConsistency(*results);
72 QueryResults results; local
111 QueryResults results; local
138 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/webkit/Source/WebKit/chromium/src/
H A DWebTextCheckingCompletionImpl.cpp51 static Vector<TextCheckingResult> toCoreResults(const WebVector<WebTextCheckingResult>& results) argument
54 for (size_t i = 0; i < results.size(); ++i) {
56 coreResult.type = toCoreCheckingType(results[i].error);
57 coreResult.location = results[i].position;
58 coreResult.length = results[i].length;
65 void WebTextCheckingCompletionImpl::didFinishCheckingText(const WebVector<WebTextCheckingResult>& results) argument
67 m_spellChecker->didCheck(m_identifier, toCoreResults(results));
/external/skia/
H A DPRESUBMIT.py31 results = []
38 results.extend(
41 return results
50 results = []
51 results.extend(_CommonChecks(input_api, output_api))
52 return results
88 results = []
89 results.extend(_CommonChecks(input_api, output_api))
90 results.extend(
93 return results
[all...]
/external/ceres-solver/include/ceres/
H A Dgradient_checker.h68 // Here we stash some results from the probe, for later
99 // results: On return, the two Jacobians (and other information)
107 GradientCheckResults* results) {
114 if (results == NULL) {
116 results = owned_results.get();
158 results->term_jacobians.clear();
159 results->term_jacobians.resize(num_blocks);
160 results->finite_difference_jacobians.clear();
161 results->finite_difference_jacobians.resize(num_blocks);
166 results
104 Probe(double const* const* probe_point, double error_tolerance, CostFunctionToProbe *term, GradientCheckResults* results) argument
[all...]
/external/protobuf/gtest/test/
H A Dgtest-test-part_test.cc121 TestPartResultArray results; local
122 EXPECT_EQ(0, results.size());
128 TestPartResultArray results; local
129 results.Append(r1_);
130 EXPECT_EQ(1, results.size());
131 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
137 TestPartResultArray results; local
138 results.Append(r1_);
139 results.Append(r2_);
140 EXPECT_EQ(2, results
150 TestPartResultArray results; local
[all...]
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.cc99 AuthResults results; local
100 const bool succeeded = AuthenticateImpl(params, &results);
102 auth_results_ = results;
105 results.auth_error, this };
120 AuthResults* results) {
122 results->auth_error = ConnectionUnavailable;
123 results->email = params.email.data();
124 results->password = params.password;
152 return PerformGaiaRequest(params, results);
156 AuthResults* results) {
119 AuthenticateImpl(const AuthParams& params, AuthResults* results) argument
155 PerformGaiaRequest(const AuthParams& params, AuthResults* results) argument
206 LookupEmail(AuthResults* results) argument
255 IssueAuthToken(AuthResults* results, const string& service_id) argument
300 ExtractTokensFrom(const string& response, AuthResults* results) argument
318 ExtractAuthErrorFrom(const string& response, AuthResults* results) argument
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/examples/basic/
H A Diterate.cs4 <?cs each:result = results ?>
/external/valgrind/main/none/tests/darwin/
H A Daccess_extended.c23 int results[3]; local
35 retval = syscall(SYS_access_extended, entries, entries_szB, results,
40 name1, results[0], strerror(results[0]));
42 name1, results[1], strerror(results[1]));
44 name2, results[2], strerror(results[2]));
/external/webkit/Tools/Scripts/
H A Dcompare-timing-files35 my $usage = "compare-timing-files [-c|--count results] oldFile newFile";
73 my @results = <FILE>;
76 @results = sort(@results);
79 $results[$i] =~ s/\D*//; # cut out non-digits
80 $total += $results[$i];
83 my $range = $results[$count - 1] - $results[0];
84 my $rangePercent = $range / $results[$count - 1] * 100;
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults_unittest.py54 </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)
93 expected_stderr = "Unhandled link text in results
[all...]
/external/chromium/chrome/common/extensions/
H A Dupdate_manifest_unittest.cc127 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()
[all...]
/external/chromium-trace/trace-viewer/
H A DPRESUBMIT.py35 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/srec/srec/Recognizer/src/
H A DRecognizerResultImpl.c55 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
151 ArrayList* results; local
[all...]

Completed in 1720 milliseconds

1234567891011>>