/external/chromium_org/content/browser/speech/ |
speech_recognition_engine.h | 39 const SpeechRecognitionResults& results) = 0; 84 // will be pushed. The engine, however, can still provide further results
|
/external/chromium_org/content/shell/renderer/test_runner/ |
mock_web_media_stream_center.cc | 75 blink::WebVector<blink::WebSourceInfo> results(size); 76 results[0].initialize("MockAudioDevice#1", 80 results[1].initialize("MockVideoDevice#1", 84 request.requestSucceeded(results);
|
/external/chromium_org/extensions/common/ |
update_manifest.h | 63 struct Results { 64 Results(); 65 ~Results(); 76 // indicating success or failure. On success, the results are available by 77 // calling results(). The details for any failures are available by calling 81 const Results& results() { return results_; } function in class:UpdateManifest 85 Results results_;
|
/external/chromium_org/media/ |
PRESUBMIT_test.py | 86 results = PRESUBMIT._CheckForHistogramOffByOne(input_api, MockOutputApi()) 88 self.assertEqual(1, len(results)) 89 self.assertEqual(expected_errors, len(results[0].items)) 91 self.assertEqual(0, len(results))
|
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/ |
ValidationTest.java | 73 List<TestData> results = new ArrayList<TestData>(); local 78 return results; 88 results.add(testData); 90 return results;
|
/external/chromium_org/net/proxy/ |
proxy_resolver_v8_tracing.h | 49 ProxyInfo* results,
|
/external/chromium_org/ppapi/proxy/ |
pdf_resource.cc | 63 PP_PrivateFindResult** results, int* count) { 101 *results = reinterpret_cast<PP_PrivateFindResult*>(malloc( 103 memcpy(*results, &pp_results[0], *count * sizeof(PP_PrivateFindResult)); 105 *results = NULL;
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/resources/ |
sunspider-standalone-driver.js | 26 var results = new Array();
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
check-dom-results | 65 my @results = `find "${testDirectory}/${directory}" -name "*-expected.txt"`; 71 foreach my $result (@results) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/ |
queue.js | 56 var state = results.tests[testName].state; 82 var test = results.tests[testName]; 124 var test = results.tests[testName]; 160 results.tests[testName].state = newState;
|
/external/chromium_org/third_party/skia/include/effects/ |
SkDashPathEffect.h | 48 virtual bool asPoints(PointData* results, const SkPath& src,
|
/external/chromium_org/third_party/skia/src/core/ |
SkTileGrid.h | 36 * Populate 'results' with data pointers corresponding to bounding boxes that intersect 'query'. 39 virtual void search(const SkRect& query, SkTDArray<void*>* results) const SK_OVERRIDE;
|
/external/chromium_org/tools/auto_bisect/ |
source_control.py | 110 results = bisect_utils.RunGit(['checkout', revision])[1] 112 results = self.SyncToRevisionWithGClient(revision) 114 results = self.SyncToRevisionWithRepo(revision) 116 return not results
|
/external/chromium_org/tools/perf/benchmarks/ |
dromaeo.py | 29 def ValidateAndMeasurePage(self, page, tab, results): 35 # Start spying on POST request that will report benchmark results, and 57 self._power_metric.AddResults(tab, results) 78 results.AddValue(scalar.ScalarValue( 79 results.current_page, Escape(name), 'runs/s', value, important))
|
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
page_test_test_case.py | 17 from telemetry.results import results_options 75 results = results_options.CreateResults(EmptyMetadataForTest(), options) 76 page_runner.Run(measurement, ps, expectations, options, results) 77 return results
|
/external/chromium_org/ui/app_list/cocoa/ |
apps_search_results_controller.h | 31 // Controller for the search results displayed when a user types in the app list 32 // search box. Results display in an NSTableView with a single column. Each row 48 @property(readonly, nonatomic) app_list::AppListModel::SearchResults* results; variable 54 // or up/down to navigate results.
|
/external/clang/bindings/python/tests/cindex/ |
test_code_completion.py | 7 completions = [str(c) for c in cr.results]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/ |
AbstractResults.java | 11 package org.eclipse.test.internal.performance.results.db; 18 import org.eclipse.test.internal.performance.results.utils.Util; 22 * Abstract class to store performance results. 24 * Each results gives access to specific children depending on model. 58 * Add a child to current results, using specific sort 65 Object results = this.children.get(i); local 66 if (child.compareTo(results) < 0) { 76 * Compare the results to the given one using the name. 89 * Returns whether two results are equals using the name 92 * @param obj The results to compare wit [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/ui/ |
PerformanceResultsPerspective.java | 11 package org.eclipse.test.internal.performance.results.ui; 38 // Component results view put on bottom 45 bottom.addView("org.eclipse.test.internal.performance.results.ui.ComponentsResultsView"); 54 topLeft.addView("org.eclipse.test.internal.performance.results.ui.ComponentsView"); //NON-NLS-1 55 topLeft.addView("org.eclipse.test.internal.performance.results.ui.BuildsView"); //NON-NLS-1
|
/external/lldb/include/lldb/Expression/ |
ClangFunction.h | 295 /// @param[out] results 304 Value &results); 321 /// @param[out] results 330 Value &results); 353 /// @param[out] results 364 Value &results); 396 /// @param[out] results 411 Value &results);
|
/external/opencv/ml/src/ |
mlnbayes.cpp | 281 float CvNormalBayesClassifier::predict( const CvMat* samples, CvMat* results ) const 304 if( samples->rows > 1 && !results ) 306 "When the number of input samples is >1, the output vector of results must be passed" ); 308 if( results ) 310 if( !CV_IS_MAT(results) || CV_MAT_TYPE(results->type) != CV_32FC1 && 311 CV_MAT_TYPE(results->type) != CV_32SC1 || 312 results->cols != 1 && results->rows != 1 || 313 results->cols + results->rows - 1 != samples->rows [all...] |
/external/skia/include/effects/ |
SkDashPathEffect.h | 48 virtual bool asPoints(PointData* results, const SkPath& src,
|
/external/skia/src/core/ |
SkTileGrid.cpp | 68 void SkTileGrid::search(const SkIRect& query, SkTDArray<void*>* results) { 94 *results = this->tile(tileStartX, tileStartY); 96 results->reset(); 110 results->push(nextElement);
|
/frameworks/support/v4/java/android/support/v4/provider/ |
RawDocumentFile.java | 124 final ArrayList<DocumentFile> results = new ArrayList<DocumentFile>(); local 128 results.add(new RawDocumentFile(this, file)); 131 return results.toArray(new DocumentFile[results.size()]);
|
/packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/ |
IntegrationTestUtils.java | 175 List<T> results = new ArrayList<T>(); 177 results.add(clazz.cast(parent)); 182 results.addAll(getAllViews(clazz, viewGroup.getChildAt(i))); 185 return results;
|