HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 451 - 475 of 928) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 561 List<String> results = compound.get();
562 ASSERT.that(results).hasContentsInOrder(DATA1, DATA2, DATA3);
627 ListenableFuture<String> future2 = Futures.immediateFuture("results");
709 List<String> results = compound.get();
710 ASSERT.that(results).hasContentsInOrder(DATA1, DATA2, DATA3);
    [all...]
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
VideoEditorVideoDecoder.cpp 686 Vector<CodecCapabilities> results; local
689 &results), (status_t)OK);
691 if (results.size()) {
693 results.size(), "VideoComponentCapabilities");
696 pDecoder->componentNumber = results.size();
699 for (size_t i = 0; i < results.size(); ++i) {
701 results[i].mComponentName.string());
703 if (results[i].mProfileLevels.size() == 0) {
712 if (IsSoftwareCodec(results[i].mComponentName.string())) {
713 ALOGV("Ignore software codec %s", results[i].mComponentName.string())
    [all...]
  /external/chromium/net/base/
x509_certificate_openssl.cc 363 OSCertHandles results; local
365 return results;
371 results.push_back(handle);
375 CreateOSCertHandlesFromPKCS7Bytes(data, length, &results);
384 return results;
  /external/chromium/net/proxy/
proxy_service.cc 108 ProxyInfo* results,
139 ProxyInfo* results,
143 results->UsePacString(pac_string_);
262 ProxyInfo* results,
269 results_(results),
333 // Make a note in the results which configuration was in use at the
    [all...]
  /external/libvpx/libvpx/vp8/common/x86/
sad_sse3.asm 382 ; int *results)
424 ; int *results)
462 ; int *results)
491 ; int *results)
516 ; int *results)
705 ; int *results)
756 ; int *results)
803 ; int *results)
836 ; int *results)
865 ; int *results)
    [all...]
  /external/skia/src/core/
SkRTree.cpp 107 void SkRTree::search(const SkIRect& query, SkTDArray<void*>* results) {
113 this->search(fRoot.fChild.subtree, query, results);
307 void SkRTree::search(Node* root, const SkIRect query, SkTDArray<void*>* results) const {
311 results->push(root->child(i)->fChild.data);
313 this->search(root->child(i)->fChild.subtree, query, results);
  /packages/apps/Browser/src/com/android/browser/
SuggestionsAdapter.java 209 List<SuggestItem> results = new ArrayList<SuggestItem>(); local
212 results.add(cursor.getItem());
216 return results;
298 void mixResults(List<SuggestItem> results) {
306 results.add(s.getItem());
328 * sorted list of results of a suggestion query
  /external/icu4c/i18n/
csrsbcs.cpp     [all...]
  /external/opencv/ml/src/
mlsvm.cpp 232 const float* another, Qfloat* results,
245 results[j] = (Qfloat)(s*alpha + beta);
251 const float* another, Qfloat* results )
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
258 const float* another, Qfloat* results )
260 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
267 const float* another, Qfloat* results )
270 calc_non_rbf_base( vcount, var_count, vecs, another, results,
275 Qfloat t = results[j]
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar 
org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
GenerateResults.java 31 import org.eclipse.test.internal.performance.results.db.ConfigResults;
32 import org.eclipse.test.internal.performance.results.db.DB_Results;
33 import org.eclipse.test.internal.performance.results.db.PerformanceResults;
34 import org.eclipse.test.internal.performance.results.db.ScenarioResults;
35 import org.eclipse.test.internal.performance.results.utils.Util;
39 * Main class to generate performance results of all scenarios matching a given pattern
62 * <pre>-output /releng/results/I20070615-1200/performance</pre>
100 * Scenario pattern used to generate performance results.
189 public GenerateResults(PerformanceResults results, String current, String baseline, boolean fingerprints, File data, File output) {
194 this.performanceResults = results;
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 714 private int collideWithRay(Ray ray, CollisionResults results) {
740 results.addCollision(result);
742 results.addCollision(result);
748 results.addCollision(result);
754 public int collideWith(Collidable other, CollisionResults results) {
757 return collideWithRay(ray, results);
762 results.addCollision(r);
    [all...]
  /frameworks/av/cmds/stagefright/
stagefright.cpp 630 Vector<CodecCapabilities> results; local
634 &results), (status_t)OK);
636 for (size_t i = 0; i < results.size(); ++i) {
638 codecType, results[i].mComponentName.string());
640 if (results[i].mProfileLevels.size() == 0) {
645 for (size_t j = 0; j < results[i].mProfileLevels.size(); ++j) {
647 results[i].mProfileLevels[j];
    [all...]
  /external/opencv/ml/include/
ml.h 250 virtual float predict( const CvMat* _samples, CvMat* results=0 ) const;
289 virtual float find_nearest( const CvMat* _samples, int k, CvMat* results=0,
344 const float* another, float* results );
351 virtual void calc( int vcount, int n, const float** vecs, const float* another, float* results );
357 const float* another, float* results,
361 const float* another, float* results );
363 const float* another, float* results );
365 const float* another, float* results );
367 const float* another, float* results );
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_HttpTests.java 143 // of read(buf, offset, length) to read the results
319 final int[] results = { 'A', 'A', 'A', 'A', 'P', 'P', 'P' }; local
342 if (!(c == results[i] || c == -1)) {
346 } else if (c != results[i]) {
  /external/chromium/chrome/browser/debugger/
devtools_window.cc 292 ListValue results; local
308 results.Append(extension_info);
310 CallClientFunction(ASCIIToUTF16("WebInspector.addExtensions"), results);
  /external/chromium/chrome/browser/history/
url_database.cc 296 std::vector<history::URLRow>* results) {
300 results->clear();
337 results->push_back(info);
  /external/chromium/chrome/browser/ui/webui/
active_downloads_ui.cc 335 ListValue results; local
337 results.Append(download_util::CreateDownloadItemValue(downloads_[i], i));
340 web_ui_->CallJavascriptFunction("downloadsList", results);
  /external/chromium/testing/gtest/test/
gtest_output_test_.cc 905 TestPartResultArray results; local
909 &results);
914 EXPECT_EQ(0, results.size()) << "This shouldn't fail.";
980 // of them are intended to fail), and then compare the test 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/utils/
Util.java 11 package org.eclipse.test.internal.performance.results.utils;
33 import org.eclipse.test.internal.performance.results.db.BuildResults;
34 import org.eclipse.test.internal.performance.results.db.DB_Results;
  /external/gtest/test/
gtest_output_test_.cc 905 TestPartResultArray results; local
909 &results);
914 EXPECT_EQ(0, results.size()) << "This shouldn't fail.";
980 // of them are intended to fail), and then compare the test results
  /external/jmonkeyengine/engine/src/core/com/jme3/collision/
SweepSphere.java 416 public int collideWith(Collidable other, CollisionResults results)
422 results.addCollision(result);
431 results.addCollision(result);
  /external/jmonkeyengine/engine/src/test/jme3test/terrain/
TerrainTestCollision.java 259 CollisionResults results = new CollisionResults();
260 int numCollisions = terrain.collideWith(ray, results);
262 CollisionResult hit = results.getClosestCollision();
  /external/libvpx/libvpx/third_party/googletest/src/test/
gtest_output_test_.cc 905 TestPartResultArray results; local
909 &results);
914 EXPECT_EQ(0, results.size()) << "This shouldn't fail.";
980 // of them are intended to fail), and then compare the test results

Completed in 833 milliseconds

<<11121314151617181920>>