/external/chromium_org/third_party/skia/src/effects/ |
SkDashPathEffect.cpp | 158 bool SkDashPathEffect::asPoints(PointData* results, 214 results->fSize.set(SkScalarHalf(fIntervals[0]), SkScalarHalf(rec.getWidth())); 217 results->fSize.set(SkScalarHalf(rec.getWidth()), SkScalarHalf(fIntervals[0])); 224 if (results) { 225 results->fFlags = 0; 229 results->fFlags |= PointData::kCircles_PointFlag; 232 results->fNumPoints = 0; 239 ++results->fNumPoints; // partial first dash 252 results->fNumPoints += numMidPoints; 260 ++results->fNumPoints [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
RttManager.java | 168 /** specifies RTT results */ 211 /** pseudo-private class used to parcel results */ 216 public ParcelableRttResults(RttResult[] results) { 217 mResults = results; 260 RttResult results[] = new RttResult[num]; 262 results[i] = new RttResult(); 263 results[i].bssid = in.readString(); 264 results[i].status = in.readInt(); 265 results[i].requestType = in.readInt(); 266 results[i].ts = in.readLong() [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/ |
webrunner.js | 152 var results = {runs: runs}, num = times.length; 159 results.sum = 0; 162 results.sum += times[i]; 165 results.min = times[0]; 168 results.max = times[ num - 1 ]; 171 results.mean = results.sum / num; 174 results.median = num % 2 == 0 ? 179 results.variance = 0; 182 results.variance += Math.pow(times[i] - results.mean, 2) [all...] |
/external/chromium_org/chrome/browser/media_galleries/ |
media_galleries_scan_result_controller_unittest.cc | 199 // Start with two scan results. 239 // Start with two scan results. 318 // Blacklist scan results. 346 MediaGalleriesDialogController::Entries results = local 348 EXPECT_EQ(selected, results[0].pref_info.pref_id); 349 EXPECT_TRUE(results[0].selected); 350 EXPECT_EQ(selected_update, results[1].pref_info.pref_id); 351 EXPECT_TRUE(results[1].selected); 353 results[1].pref_info.volume_label); 354 EXPECT_EQ(unselected, results[2].pref_info.pref_id) 415 MediaGalleriesDialogController::Entries results = local [all...] |
/external/chromium_org/components/translate/content/renderer/ |
translate_helper.cc | 272 WebVector<v8::Local<v8::Value> > results; local 275 world_id_, &source, 1, extension_group_, &results); 276 if (results.size() != 1 || results[0].IsEmpty() || !results[0]->IsBoolean()) { 281 return results[0]->BooleanValue(); 291 WebVector<v8::Local<v8::Value> > results; local 294 world_id_, &source, 1, extension_group_, &results); 295 if (results.size() != 1 || results[0].IsEmpty() || !results[0]->IsString()) 314 WebVector<v8::Local<v8::Value> > results; local [all...] |
/external/chromium_org/chrome/browser/ui/webui/ |
flags_ui.cc | 174 base::DictionaryValue results; 182 results.Set("supportedExperiments", supported_experiments.release()); 183 results.Set("unsupportedExperiments", unsupported_experiments.release()); 184 results.SetBoolean("needsRestart", 186 results.SetBoolean("showOwnerWarning", 191 results.SetBoolean("showBetaChannelPromotion", 193 results.SetBoolean("showDevChannelPromotion", 196 results.SetBoolean("showBetaChannelPromotion", false); 197 results.SetBoolean("showDevChannelPromotion", false); 199 web_ui()->CallJavascriptFunction("returnFlagsExperiments", results); [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/ |
buildbot_results.py | 65 self._print("=> Results: %d/%d tests passed (%.1f%%)" % (passed, total, percent_passed)) 85 results = (run_results.tests_by_expectation[result] & run_results.tests_by_timeline[timeline]) 87 if not_passing and len(results): 88 pct = len(results) * 100.0 / not_passing 89 self._print(" %5d %-24s (%4.1f%%)" % (len(results), desc, pct)) 99 def add_result(test, results, passes=passes, flaky=flaky, regressions=regressions): 100 actual = results['actual'].split(" ") 101 expected = results['expected'].split(" ") 103 if 'is_unexpected' not in results or not results['is_unexpected'] [all...] |
/external/chromium_org/third_party/icu/source/common/ |
ucnvmbcs.h | 214 * -- stage 3 tables with byte results 297 #define MBCS_SINGLE_RESULT_FROM_U(table, results, c) (results)[ (table)[ (table)[(c)>>10] +(((c)>>4)&0x3f) ] +((c)&0xf) ] 300 #define SBCS_RESULT_FROM_LOW_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ] 303 #define SBCS_RESULT_FROM_UTF8(table, results, l, t) (results)[ (table)[l] +(t) ] 315 #define DBCS_RESULT_FROM_MOST_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ] 318 #define DBCS_RESULT_FROM_UTF8(table, results, lt1, t2) (results)[ (table)[lt1] +(t2) [all...] |
/external/chromium_org/third_party/skia/gm/rebaseline_server/static/ |
view.css | 49 .update-results-button { 53 /* Odd and even lines within results display. */ 54 .results-odd { 57 .results-even { 72 .results-header { 78 .results-header-actions {
|
/external/chromium_org/tools/perf/measurements/ |
page_cycler.py | 131 def ValidateAndMeasurePage(self, page, tab, results): 137 results.AddValue(scalar.ScalarValue( 138 results.current_page, '%stimes.page_load_time' % chart_name_prefix, 151 self._memory_metric.AddResults(tab, results) 152 self._power_metric.AddResults(tab, results) 155 self._cpu_metric.AddResults(tab, results) 158 self._v8_object_stats_metric.AddResults(tab, results) 166 tab, results, chart_name=chart_name_prefix+'speed_index') 168 def DidRunTest(self, browser, results): 169 iometric.IOMetric().AddSummaryResults(browser, results) [all...] |
smoothness_unittest.py | 58 that all metrics were added to the results. The test is purely functional, 104 results = self.RunMeasurement(measurement, ps, options=self._options) 105 self.assertEquals(0, len(results.failures)) 107 frame_times = results.FindAllPageSpecificValuesNamed('frame_times') 111 mean_frame_time = results.FindAllPageSpecificValuesNamed('mean_frame_time') 115 jank = results.FindAllPageSpecificValuesNamed('jank') 119 mostly_smooth = results.FindAllPageSpecificValuesNamed('mostly_smooth') 123 mean_input_event_latency = results.FindAllPageSpecificValuesNamed( 136 results = self.RunMeasurement(measurement, ps, options=self._options) 137 self.assertEquals(0, len(results.failures) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/ |
RawDataTable.java | 19 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) { 37 this.configResults = results; 41 public RawDataTable(ConfigResults results, List prefixes, PrintStream ps) { 42 this(results, ps); 45 public RawDataTable(ConfigResults results, String baselinePrefix, PrintStream ps) { 46 this(results, ps) [all...] |
/external/icu/icu4c/source/common/ |
ucnvmbcs.h | 214 * -- stage 3 tables with byte results 297 #define MBCS_SINGLE_RESULT_FROM_U(table, results, c) (results)[ (table)[ (table)[(c)>>10] +(((c)>>4)&0x3f) ] +((c)&0xf) ] 300 #define SBCS_RESULT_FROM_LOW_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ] 303 #define SBCS_RESULT_FROM_UTF8(table, results, l, t) (results)[ (table)[l] +(t) ] 315 #define DBCS_RESULT_FROM_MOST_BMP(table, results, c) (results)[ (table)[(c)>>6] +((c)&0x3f) ] 318 #define DBCS_RESULT_FROM_UTF8(table, results, lt1, t2) (results)[ (table)[lt1] +(t2) [all...] |
/external/lldb/tools/lldb-perf/lib/ |
Measurement.h | 95 WriteStartValue (Results &results) 98 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStartValue())); 102 WriteStopValue (Results &results) 105 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetStopValue())); 109 WriteAverageValue (Results &results) 112 results.GetDictionary().Add(metric.GetName(), metric.GetDescription(), lldb_perf::GetResult<typename GaugeType::ValueType> (NULL, metric.GetAverage())); 116 WriteAverageAndStandardDeviation (Results &results [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
DocXMLRPCServer.py | 30 results = [] 45 results.append(escape(text[here:start])) 50 results.append('<a href="%s">%s</a>' % (url, url)) 53 results.append('<a href="%s">%s</a>' % (url, escape(all))) 56 results.append('<a href="%s">%s</a>' % (url, escape(all))) 58 results.append(self.namelink(name, methods, funcs, classes)) 60 results.append('self.<strong>%s</strong>' % name) 62 results.append(self.namelink(name, classes)) 64 results.append(escape(text[here:])) 65 return ''.join(results) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
DocXMLRPCServer.py | 30 results = [] 45 results.append(escape(text[here:start])) 50 results.append('<a href="%s">%s</a>' % (url, url)) 53 results.append('<a href="%s">%s</a>' % (url, escape(all))) 56 results.append('<a href="%s">%s</a>' % (url, escape(all))) 58 results.append(self.namelink(name, methods, funcs, classes)) 60 results.append('self.<strong>%s</strong>' % name) 62 results.append(self.namelink(name, classes)) 64 results.append(escape(text[here:])) 65 return ''.join(results) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
ResourceValueCompleter.java | 86 * but computes complete results up front rather than dividing it up into 91 List<String> results = new ArrayList<String>(200); local 101 addMatches(repository, prefix, true /* isSystem */, results); 109 addMatches(repository, prefix, true /* isSystem */, results); 126 addMatches(repository, prefix, false /* isSystem */, results); 133 UiResourceAttributeNode.sortAttributeChoices(attributeDescriptor, results); 135 Collections.sort(results); 138 return results.toArray(new String[results.size()]); 142 List<String> results) { [all...] |
/external/chromium_org/chrome/renderer/spellchecker/ |
spellcheck_provider.cc | 152 blink::WebVector<blink::WebTextCheckingResult>* results) { 153 if (!results) 160 // UMA results seem to support that. Investigate, clean up if true. 162 spellcheck_->SpellCheckParagraph(text, results); 213 const std::vector<SpellCheckResult>& results) { 226 // Double-check the returned spellchecking results with our spellchecker to 232 results, 236 // Cache the request and the converted results. 267 const std::vector<SpellCheckResult>& results) { 279 results, [all...] |
/external/chromium_org/ui/gfx/geometry/ |
r_tree_unittest.cc | 803 // An empty RTree should never return AppendIntersectingRecords results, and 808 RT::Matches results; local 810 rt.AppendIntersectingRecords(test_rect, &results); 811 EXPECT_EQ(0U, results.size()); 816 // results after. 821 RT::Matches results; local 823 rt.AppendIntersectingRecords(test_rect, &results); 824 EXPECT_EQ(0U, results.size()); 829 // that all queries should not return results after. 834 RT::Matches results; local 849 RT::Matches results; local 865 RT::Matches results; local 880 RT::Matches results; local 891 RT::Matches results; local 903 RT::Matches results; local 915 RT::Matches results; local 929 RT::Matches results; local 962 RT::Matches results; local 988 RT::Matches results; local 1005 RT::Matches results; local [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...] |
PerformanceResultsElement.java | 11 package org.eclipse.test.internal.performance.results.model; 21 import org.eclipse.test.internal.performance.results.db.*; 22 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 23 import org.eclipse.test.internal.performance.results.utils.Util; 65 : this.results == null 145 return (PerformanceResults) this.results; 149 String[] builds = this.results == null ? getBuildNames() : getPerformanceResults().getAllBuildNames(); 157 return super.isInitialized() && this.results.size() > 0; 169 this.results = new PerformanceResults(this.lastBuildName, null, null, System.out); 171 this.results = new PerformanceResults(buildName, null, null, System.out) [all...] |
/libcore/luni/src/test/java/libcore/java/lang/ |
OldStringTest.java | 174 String [] results = {"!\'123123.123?ello?orld!123123?ello?orld#", local 180 results[i], str.replaceAll(patterns[i], "?")); 196 String [] results = {"!'123123.123?elloWorld!123123helloworld#", local 202 results[i], str.replaceFirst(patterns[i], "?")); 216 String [][] results = {{"", "'","23", "23", "", "23HelloWorld", "", "23", local 222 patterns[i], Arrays.equals(results[i], str.split(patterns[i]))); 236 String [][] results = {{"", "'","23", "23.123HelloWorld!123123helloworld#"}, local 241 Arrays.equals(results[0], str.split(pattern, 4))); 243 Arrays.equals(results[1], str.split(pattern, 9))); 245 Arrays.equals(results[1], str.split(pattern, 0))) [all...] |
/external/chromium_org/chrome/browser/ui/passwords/ |
password_manager_presenter.cc | 212 const std::vector<autofill::PasswordForm*>& results) { 215 results.begin(), results.end()); 236 const std::vector<autofill::PasswordForm*>& results) { 239 results.begin(), results.end());
|
/external/chromium_org/chrome/browser/ui/webui/ntp/ |
suggestions_combiner_unittest.cc | 30 const char* results[8]; member in struct:__anon10142::TestDescription 203 // Keep the results of the db query here. 284 base::ListValue* results = combiner_->GetPageValues(); local 285 size_t result_count = results->GetSize(); 291 results->GetDictionary(j, &dictionary); 293 EXPECT_STREQ(description.results[j], value.c_str()) << 296 EXPECT_EQ(description.results[j], static_cast<const char*>(NULL)) <<
|
/external/chromium_org/chromeos/login/auth/ |
mock_url_fetchers.cc | 24 const std::string& results, 49 const std::string& results, 67 const std::string& results, 85 const std::string& results, 112 const std::string& results, 154 const std::string& results,
|