HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 376 - 400 of 1503) sorted by null

<<11121314151617181920>>

  /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/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/
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>
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...]
  /external/icu/icu4c/source/test/intltest/
jacoll.h 53 static const Collator::EComparisonResult results[]; member in class:CollationKanaTest
g7coll.cpp 60 static const int32_t results[G7CollationTest::TESTLOCALES][G7CollationTest::TOTALTESTSET] = { variable
142 doTest(myCollation.getAlias(), testCases[results[i][j]], testCases[results[i][n]], Collator::LESS);
174 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], Collator::LESS);
208 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], Collator::LESS);
242 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], Collator::LESS);
271 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], Collator::LESS)
    [all...]
  /external/junit/src/org/junit/experimental/results/
FailureList.java 4 package org.junit.experimental.results;
  /external/chromium_org/chrome/browser/ui/app_list/search/webstore/
webstore_provider_browsertest.cc 36 // Mock results.
39 "\"results\":["
50 "\"results\":["
148 std::string results; local
149 for (SearchProvider::Results::const_iterator it =
150 webstore_provider_->results().begin();
151 it != webstore_provider_->results().end();
153 if (!results.empty())
154 results += ',';
155 results += base::UTF16ToUTF8((*it)->title())
    [all...]
  /external/chromium_org/chrome/common/extensions/
PRESUBMIT.py 103 def _CheckLinks(input_api, output_api, results):
133 results.append(output_api.PresubmitPromptWarning(
140 results = [
154 results.append(output_api.PresubmitError('IntegrationTest failed!'))
159 #_CheckLinks(input_api, output_api, results)
161 return results
164 results = []
165 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api)
166 results += _CheckChange(input_api, output_api)
167 return results
    [all...]
  /external/chromium_org/content/test/
mock_webclipboard_impl.cc 59 std::vector<WebString> results; local
61 results.push_back(WebString("text/plain"));
64 results.push_back(WebString("text/html"));
67 results.push_back(WebString("image/png"));
72 CHECK(std::find(results.begin(), results.end(), it->first) ==
73 results.end());
74 results.push_back(it->first);
76 return results;
  /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/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/cc/
PRESUBMIT.py 283 results = []
284 results += CheckAsserts(input_api, output_api)
285 results += CheckStdAbs(input_api, output_api)
286 results += CheckPassByValue(input_api, output_api)
287 results += CheckChangeLintsClean(input_api, output_api)
288 results += CheckTodos(input_api, output_api)
289 results += CheckNamespace(input_api, output_api)
290 results += CheckForUseOfWrongClock(input_api, output_api)
291 results += FindUselessIfdefs(input_api, output_api)
292 results += input_api.canned_checks.CheckPatchFormatted(input_api, output_api
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cg7coll.c 107 const static int32_t results[TESTLOCALES][TOTALTESTSET] = { variable
178 doTest(tblColl1, testCases[results[i][j]], testCases[results[i][n]], UCOL_LESS);
211 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], UCOL_LESS);
241 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], UCOL_LESS);
271 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], UCOL_LESS);
300 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], UCOL_LESS)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
g7coll.cpp 59 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[11][j]], testCases[results[11][n]], Collator::LESS)
    [all...]
  /external/chromium_org/third_party/webrtc/tools/frame_analyzer/
video_quality_analysis.cc 198 // In case of 0 mse in one frame, 128 can skew the results significantly.
216 ResultsContainer* results) {
273 results->frames.push_back(result);
335 void PrintAnalysisResults(const std::string& label, ResultsContainer* results) {
336 PrintAnalysisResults(stdout, label, results);
340 ResultsContainer* results) {
344 static_cast<unsigned int>(results->frames.size()));
346 if (results->frames.size() > 0u) {
348 for (iter = results->frames.begin(); iter != results->frames.end() - 1
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cg7coll.c 108 const static int32_t results[TESTLOCALES][TOTALTESTSET] = { variable
190 doTest(myCollation, testCases[results[i][j]], testCases[results[i][n]], UCOL_LESS);
222 doTest(myCollation, testCases[results[8][j]], testCases[results[8][n]], UCOL_LESS);
252 doTest(myCollation, testCases[results[9][j]], testCases[results[9][n]], UCOL_LESS);
282 doTest(myCollation, testCases[results[10][j]], testCases[results[10][n]], UCOL_LESS);
311 doTest(myCollation, testCases[results[11][j]], testCases[results[11][n]], UCOL_LESS)
    [all...]
  /cts/suite/cts/utils/
grapher.py 46 results = tests[benchmark]
53 for r in results:
54 score = r.get('result', 'no results')
63 if score != 'no results':
  /dalvik/dx/src/com/android/dx/cf/code/
BaseMachine.java 72 /** {@code non-null;} results */
73 private TypeBearer[] results; field in class:BaseMachine
76 * {@code >= -1;} count of the results, or {@code -1} if no results
94 results = new TypeBearer[6];
401 ((resultCount == 0) ? "no" : "multiple") + " results");
404 TypeBearer result = results[0];
439 * Clears the results.
446 * Sets the results list to be the given single value.
458 results[0] = result
    [all...]
  /development/apps/Development/src/com/android/development/
InstrumentationList.java 176 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) {
177 if (results != null) {
178 for (String key : results.keySet()) {
180 "INSTRUMENTATION_STATUS_RESULT: " + key + "=" + results.get(key));
186 int resultCode, Bundle results) {
187 if (results != null) {
188 for (String key : results.keySet()) {
190 "INSTRUMENTATION_RESULT: " + key + "=" + results.get(key));
  /external/chromium_org/cc/debug/
unittest_only_benchmark.cc 51 void UnittestOnlyBenchmark::RecordImplResults(scoped_ptr<base::Value> results) {
52 NotifyDone(results.Pass());

Completed in 2805 milliseconds

<<11121314151617181920>>