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

1 2 3 4 5 6 78 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
fix_renames.py 51 results = match(node)
52 if results:
55 return results
62 def transform(self, node, results):
63 mod_name = results.get("module_name")
64 attr_name = results.get("attr_name")
65 #bare_name = results.get("bare_name")
66 #import_mod = results.get("module")
fix_throw.py 26 def transform(self, node, results):
29 exc = results["exc"].clone()
35 val = results.get(u"val")
46 throw_args = results["args"]
48 if "tb" in results:
49 tb = results["tb"].clone()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
fix_renames.py 51 results = match(node)
52 if results:
55 return results
62 def transform(self, node, results):
63 mod_name = results.get("module_name")
64 attr_name = results.get("attr_name")
65 #bare_name = results.get("bare_name")
66 #import_mod = results.get("module")
fix_throw.py 26 def transform(self, node, results):
29 exc = results["exc"].clone()
35 val = results.get(u"val")
46 throw_args = results["args"]
48 if "tb" in results:
49 tb = results["tb"].clone()
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.css 5 .autocomplete-results-table {
9 .autocomplete-results-table th {
13 .autocomplete-results-table td {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/audits/broken-links/
content.js 3 var results = [];
13 results.push({ href: link, text: text });
15 return results;
  /external/chromium_org/tools/strict_enum_value_checker/
strict_enum_value_checker_test.py 161 results = checker.Run()
162 return results
165 results = self._RunTest(new_file_path=None)
167 self.assertEquals(1, len(results),
171 results = self._RunTest(self.TEST_FILE_PATTERN % "1")
173 self.assertEquals(0, len(results),
177 results = self._RunTest(self.TEST_FILE_PATTERN % "2")
179 self.assertEquals(1, len(results),
183 results = self._RunTest(self.TEST_FILE_PATTERN % "3")
185 self.assertEquals(1, len(results),
    [all...]
  /external/libcxxabi/src/
cxa_personality.cpp 502 const scan_results& results)
507 static_cast<uintptr_t>(results.ttypeIndex));
508 _Unwind_SetIP(context, results.landingPad);
532 static void scan_eh_tab(scan_results &results, _Unwind_Action actions,
536 // Initialize results to found nothing but an error
537 results.ttypeIndex = 0;
538 results.actionRecord = 0;
539 results.languageSpecificData = 0;
540 results.landingPad = 0;
541 results.adjustedPtr = 0
929 scan_results results; local
1087 scan_results results; local
    [all...]
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.stdout.exp 6 to normalise for reporting results. For archival results,
10 No errors in results.
  /ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_personality.cpp 504 const scan_results& results)
509 static_cast<uintptr_t>(results.ttypeIndex));
510 _Unwind_SetIP(context, results.landingPad);
536 scan_eh_tab(scan_results& results, _Unwind_Action actions, bool native_exception,
540 // Initialize results to found nothing but an error
541 results.ttypeIndex = 0;
542 results.actionRecord = 0;
543 results.languageSpecificData = 0;
544 results.landingPad = 0;
545 results.adjustedPtr = 0
932 scan_results results; local
1099 scan_results results; local
    [all...]
  /external/chromium_org/ui/app_list/views/
search_result_list_view_unittest.cc 35 view_->SetResults(view_delegate_.GetModel()->results());
43 return view_delegate_.GetModel()->results();
56 AppListModel::SearchResults* results = GetResults(); local
58 results->Add(new SearchResult());
60 // Adding results will schedule Update().
100 // Adding results will schedule Update().
103 AppListModel::SearchResults* results = GetResults(); local
104 for (size_t i = 0; i < results->item_count(); ++i) {
105 EXPECT_EQ(results->GetItemAt(i), view_->GetResultViewAt(i)->result());
126 const int results = GetResultCount() local
    [all...]
  /external/chromium_org/tools/chrome_proxy/integration_tests/
chrome_proxy_metrics_unittest.py 124 results = test_page_test_results.TestPageTestResults(self)
126 metric.AddResultsForDataSaving(None, results)
127 results.AssertHasPageSpecificScalarValue('resources_via_proxy', 'count', 2)
128 results.AssertHasPageSpecificScalarValue('resources_from_cache', 'count', 1)
129 results.AssertHasPageSpecificScalarValue('resources_direct', 'count', 2)
139 results = test_page_test_results.TestPageTestResults(self)
143 metric.AddResultsForHeaderValidation(None, results)
153 metric.AddResultsForHeaderValidation(None, results)
154 results.AssertHasPageSpecificScalarValue('checked_via_header', 'count', 2)
163 results = test_page_test_results.TestPageTestResults(self
    [all...]
  /external/chromium_org/tools/perf/metrics/
timeline_unittest.py 18 results = test_page_test_results.TestPageTestResults(self)
19 metric.AddResults(model, renderer_thread, interaction_records, results)
20 return results
34 results = self.GetResults(
37 results.AssertHasPageSpecificScalarValue(
39 results.AssertHasPageSpecificScalarValue(
41 results.AssertHasPageSpecificScalarValue(
59 results = self.GetResults(
62 results.AssertHasPageSpecificScalarValue(
64 results.AssertHasPageSpecificScalarValue
    [all...]
  /external/chromium_org/build/android/pylib/utils/
report_results.py 5 """Module containing utility functions for reporting results."""
15 def _LogToFile(results, test_type, suite_name):
16 """Log results to local files which can be used for aggregation later."""
24 print >> log_file, '\n%s results for %s build %s:' % (
27 logging.info('Writing results to %s.' % full_file_name)
29 logging.info('Writing results to %s.' % full_file_name)
33 results.GetShortForm())
36 def _LogToFlakinessDashboard(results, test_type, test_package,
38 """Upload results to the flakiness dashboard"""
39 logging.info('Upload results for test type "%s", test package "%s" to %s'
    [all...]
  /external/junit/src/org/junit/internal/runners/
TestClass.java 42 List<Method> results= new ArrayList<Method>(); local
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) {
61 for (Method each : results) {
81 ArrayList<Class<?>> results= new ArrayList<Class<?>>(); local
84 results.add(current);
87 return results;
    [all...]
  /external/srec/srec/Semproc/src/
SemanticResultImpl.c 50 impl->results = NULL;
52 rc = HashMapCreate(&impl->results);
67 CHKLOG(rc, impl->results->getSize(impl->results, count));
80 CHKLOG(rc, HashMapGetSize(impl->results, &size));
96 CHKLOG(rc, HashMapGetKeyAtIndex(impl->results, i, &theKey));
110 CHKLOG(rc, impl->results->get(impl->results, key, (void **)&theValue));
128 CHKLOG(rc, HashMapRemoveAndFreeAll(impl->results));
129 CHKLOG(rc, HashMapDestroy(impl->results));
    [all...]
  /external/chromium_org/chrome/browser/diagnostics/
diagnostics_controller_unittest.cc 88 const DiagnosticsModel& results = local
90 EXPECT_EQ(results.GetTestRunCount(), results.GetTestAvailableCount());
91 EXPECT_EQ(DiagnosticsModel::kDiagnosticsTestCount, results.GetTestRunCount());
92 for (int i = 0; i < results.GetTestRunCount(); ++i) {
93 const DiagnosticsModel::TestInfo& info(results.GetTest(i));
103 const DiagnosticsModel& results = local
105 EXPECT_EQ(results.GetTestRunCount(), results.GetTestAvailableCount());
106 EXPECT_EQ(DiagnosticsModel::kDiagnosticsTestCount, results.GetTestRunCount())
121 const DiagnosticsModel& results = local
143 const DiagnosticsModel& results = local
    [all...]
  /external/skia/gm/rebaseline_server/
compare_rendered_pictures.py 9 Compare results of two render_pictures runs.
25 import results namespace
33 class RenderedPicturesComparisons(results.BaseComparisons):
34 """Loads results from two different render_pictures runs into an ImagePairSet.
38 generated_images_root=results.DEFAULT_GENERATED_IMAGES_ROOT,
65 logging.info('Results complete; took %d seconds.' %
79 'Reading actual-results JSON files from %s subdirs within %s...' % (
96 column_id=results.KEY__EXTRACOLUMNS__RESULT_TYPE, values=[
97 results.KEY__RESULT_TYPE__FAILED,
98 results.KEY__RESULT_TYPE__NOCOMPARISON
    [all...]
  /external/chromium_org/components/policy/resources/
PRESUBMIT.py 69 results = []
71 results.append(output_api.PresubmitError(error_missing % policy))
73 results.append(output_api.PresubmitError(error_extra % policy))
74 return results
94 results = []
97 results.append(output_api.PresubmitError(error_missing % policy['name']))
98 return results
102 results = []
103 results.extend(_CheckPolicyTemplatesSyntax(input_api, output_api))
113 results.append(output_api.PresubmitError('Invalid Python/JSON syntax.')
    [all...]
  /external/chromium_org/chrome/browser/
PRESUBMIT.py 26 results = []
43 results.extend(
64 results.extend(resource_checker.ResourceChecker(
66 results.extend(css_checker.CSSChecker(
68 results.extend(html_checker.HtmlChecker(
70 results.extend(js_checker.JSChecker(
75 return results
  /external/chromium_org/third_party/icu/source/i18n/
csrmbcs.h 74 UBool match(InputText* input, CharsetMatch *results) const = 0;
103 UBool match(InputText* input, CharsetMatch *results) const;
125 UBool match(InputText* input, CharsetMatch *results) const = 0;
147 UBool match(InputText* input, CharsetMatch *results) const;
162 UBool match(InputText* input, CharsetMatch *results) const;
180 UBool match(InputText* input, CharsetMatch *results) const;
199 UBool match(InputText* input, CharsetMatch *results) const;

Completed in 383 milliseconds

1 2 3 4 5 6 78 91011>>