HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 526 - 550 of 2244) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/skia/
PRESUBMIT.py 79 results = []
86 results.extend(
89 results.extend(_PythonChecks(input_api, output_api))
90 return results
99 results = []
100 results.extend(_CommonChecks(input_api, output_api))
101 return results
143 results = []
163 results.append(
181 return results
    [all...]
  /external/chromium_org/third_party/skia/tests/
StringTest.cpp 190 SkTArray<SkString> results; local
192 SkStrSplit("a-_b_c-dee--f-_-_-g-", "-_", &results);
193 REPORTER_ASSERT(r, results.count() == 6);
194 REPORTER_ASSERT(r, results[0].equals("a"));
195 REPORTER_ASSERT(r, results[1].equals("b"));
196 REPORTER_ASSERT(r, results[2].equals("c"));
197 REPORTER_ASSERT(r, results[3].equals("dee"));
198 REPORTER_ASSERT(r, results[4].equals("f"));
199 REPORTER_ASSERT(r, results[5].equals("g"));
  /external/chromium_org/tools/json_schema_compiler/test/
objects_unittest.cc 50 ReturnsObject::Results::Info info;
51 info.state = ReturnsObject::Results::Info::STATE_FOO;
52 scoped_ptr<base::ListValue> results = ReturnsObject::Results::Create(info); local
57 ASSERT_TRUE(results->GetDictionary(0, &result));
64 scoped_ptr<base::ListValue> results(OnObjectFired::Create(object));
69 ASSERT_TRUE(results->GetDictionary(0, &result));
  /external/chromium_org/tools/perf/page_sets/
PRESUBMIT.py 67 results = []
72 results.append(output_api.PresubmitError(
76 results.append(output_api.PresubmitError(
80 results.append(output_api.PresubmitError(
92 results.append(output_api.PresubmitError(
94 return results
97 results.append(output_api.PresubmitNotifyResult(
100 results.append(output_api.PresubmitError(
103 return results
111 results = [
    [all...]
  /external/chromium_org/tools/perf/profile_creators/
small_profile_creator.py 31 def ValidateAndMeasurePage(self, _, tab, results):
  /external/chromium_org/tools/site_compare/commands/
timeload.py 128 results = {}
130 results[url] = [None] * num_browsers
138 results[url][b] = time
140 # output the results
144 log_file.write(",%r" % results[url][b])
  /external/chromium_org/tools/strict_enum_value_checker/
strict_enum_value_checker.py 24 self.results = []
120 self.results.append(
131 results = []
140 results.append(tuple)
160 return results
185 results = []
206 results.append(line_num)
207 return results
284 return self.results
  /external/chromium_org/tools/telemetry/telemetry/web_perf/metrics/
timeline_based_metric.py 37 def AddResults(self, model, renderer_thread, interaction_records, results):
40 The override of this method should compute results on the data **only**
48 results: An instance of page.PageTestResults.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrint.java 29 import org.eclipse.test.internal.performance.results.db.ConfigResults;
30 import org.eclipse.test.internal.performance.results.db.DB_Results;
31 import org.eclipse.test.internal.performance.results.db.PerformanceResults;
32 import org.eclipse.test.internal.performance.results.db.ScenarioResults;
54 * @param performanceResults The performance results used to print the fingerprints
75 this.stream.print("The following fingerprints show results for the most representative tests of the ");
122 double[] results = configResults.getCurrentBuildDeltaInfo(); local
123 double percent = -results[0] * 100.0;
124 if (results != null && Math.abs(percent) < 200) {
136 results,
    [all...]
Main.java 15 import org.eclipse.test.internal.performance.results.db.DB_Results;
18 * Main class to generate performance results of all scenarios matching a given pattern
26 * Generate the performance results for a specified build regarding to a specific reference.
30 * <li>A global php file including global scenario fingerprints and links for all concerned components results php files</li>
  /external/icu/icu4c/source/test/intltest/
jacoll.h 53 static const Collator::EComparisonResult results[]; member in class:CollationKanaTest
  /external/junit/src/org/junit/experimental/results/
FailureList.java 4 package org.junit.experimental.results;
  /external/skia/tests/
StringTest.cpp 190 SkTArray<SkString> results; local
192 SkStrSplit("a-_b_c-dee--f-_-_-g-", "-_", &results);
193 REPORTER_ASSERT(r, results.count() == 6);
194 REPORTER_ASSERT(r, results[0].equals("a"));
195 REPORTER_ASSERT(r, results[1].equals("b"));
196 REPORTER_ASSERT(r, results[2].equals("c"));
197 REPORTER_ASSERT(r, results[3].equals("dee"));
198 REPORTER_ASSERT(r, results[4].equals("f"));
199 REPORTER_ASSERT(r, results[5].equals("g"));
  /frameworks/base/cmds/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);
186 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) {
190 if (!mRawMode && results != null) {
191 pretty = results.getString(Instrumentation.REPORT_KEY_STREAMRESULT);
196 if (results != null) {
197 for (String key : results.keySet()) {
199 + results.get(key))
    [all...]
  /frameworks/base/core/java/android/widget/
ArrayAdapter.java 44 * or to have some of data besides toString() results fill the views,
452 FilterResults results = new FilterResults(); local
465 results.values = list;
466 results.count = list.size();
499 results.values = newValues;
500 results.count = newValues.size();
503 return results;
507 protected void publishResults(CharSequence constraint, FilterResults results) {
509 mObjects = (List<T>) results.values;
510 if (results.count > 0)
    [all...]
SimpleAdapter.java 327 FilterResults results = new FilterResults(); local
335 results.values = list;
336 results.count = list.size();
369 results.values = newValues;
370 results.count = newValues.size();
373 return results;
377 protected void publishResults(CharSequence constraint, FilterResults results) {
379 mData = (List<Map<String, ?>>) results.values;
380 if (results.count > 0) {
  /hardware/libhardware_legacy/include/hardware_legacy/
gscan.h 99 // low, the firmware should choose to generate results as
104 * 2 => same as 1 + forward scan results (beacons/probe responses + IEs) in real time to HAL
105 * 3 => same as 2 + forward scan results (beacons/probe responses + IEs) in real time to
129 /* Get the GSCAN cached scan results */
131 int max, wifi_scan_result *results, int *num);
136 unsigned num_results, wifi_scan_result *results);
138 unsigned num_results, wifi_scan_result *results);
171 unsigned num_results, wifi_significant_change_result **results);
  /hardware/qcom/wlan/qcwcn/wifi_hal/
gscancommand.h 68 wifi_scan_result *results; member in struct:__anon21580
109 unsigned num_results, wifi_scan_result *results);
113 wifi_significant_change_result **results);
174 wifi_scan_result *results);
  /packages/apps/UnifiedEmail/src/com/android/mail/
SenderInfoLoader.java 122 Map<String, ContactInfo> results = Maps.newHashMap(); local
166 results.put(email, result);
175 if (!results.containsKey(email)) {
176 results.put(email, new ContactInfo(null));
182 return ImmutableMap.copyOf(results);
202 return ImmutableMap.copyOf(results);
223 results.put(email, new ContactInfo(prevResult.contactUri, photo));
226 results.put(email, new ContactInfo(prevResult.contactUri, photoBytes));
237 return ImmutableMap.copyOf(results);
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 52 public final ContentProviderResult[] results; field in class:ContentProviderTask.Result
57 * @param results
59 private Result(Exception exception, ContentProviderResult[] results) {
61 this.results = results;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 19 def transform(self, node, results):
fix_tuple_params.py 46 def transform(self, node, results):
47 if "lambda" in results:
48 return self.transform_lambda(node, results)
51 suite = results["suite"]
52 args = results["args"]
110 def transform_lambda(self, node, results):
111 args = results["args"]
112 body = results["body"]
113 inner = simplify_args(results["inner"])
fix_zip.py 24 def transform(self, node, results):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_input.py 19 def transform(self, node, results):
fix_tuple_params.py 46 def transform(self, node, results):
47 if "lambda" in results:
48 return self.transform_lambda(node, results)
51 suite = results["suite"]
52 args = results["args"]
110 def transform_lambda(self, node, results):
111 args = results["args"]
112 body = results["body"]
113 inner = simplify_args(results["inner"])

Completed in 1172 milliseconds

<<21222324252627282930>>