Searched defs:results (Results 176 - 200 of 314) sorted by relevance

1234567891011>>

/external/libvpx/libvpx/third_party/googletest/src/test/
H A Dgtest_output_test_.cc905 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/openssl/crypto/bn/
H A Dbntest.c123 static int results=0; variable
144 results = 0;
152 if (strcmp(*argv,"-results") == 0)
153 results=1;
182 if (!results)
335 if (!results)
388 if (!results)
439 if (!results)
449 if (!results)
514 if (!results)
[all...]
/external/protobuf/gtest/test/
H A Dgtest_output_test_.cc892 TestPartResultArray results; local
896 &results);
901 EXPECT_EQ(0, results.size()) << "This shouldn't fail.";
969 // of them are intended to fail), and then compare the test results
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc522 vector<int> results; local
526 if (sources_[i]->FindAllExtensionNumbers(extendee_type, &results)) {
527 copy(results.begin(), results.end(),
531 results.clear();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowLocation.java244 double lat2, double lon2, float[] results) {
329 results[0] = distance;
330 if (results.length > 1) {
334 results[1] = initialBearing;
335 if (results.length > 2) {
339 results[2] = finalBearing;
350 * <p> The computed distance is stored in results[0]. If results has length
351 * 2 or greater, the initial bearing is stored in results[1]. If results ha
243 computeDistanceAndBearing(double lat1, double lon1, double lat2, double lon2, float[] results) argument
363 distanceBetween(double startLatitude, double startLongitude, double endLatitude, double endLongitude, float[] results) argument
[all...]
/external/skia/src/core/
H A DSkRTree.cpp107 void SkRTree::search(const SkIRect& query, SkTDArray<void*>* results) { argument
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);
/external/skia/src/effects/
H A DSkDashPathEffect.cpp340 bool SkDashPathEffect::asPoints(PointData* results, argument
397 results->fSize.set(SkScalarHalf(fIntervals[0]), SkScalarHalf(rec.getWidth()));
399 results->fSize.set(SkScalarHalf(rec.getWidth()), SkScalarHalf(fIntervals[0]));
406 if (NULL != results) {
407 results->fFlags = 0;
411 results->fFlags |= PointData::kCircles_PointFlag;
414 results->fNumPoints = 0;
421 ++results->fNumPoints; // partial first dash
434 results->fNumPoints += numMidPoints;
442 ++results
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLTableElement.cpp449 void HTMLTableElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results) argument
475 results.append(decl);
501 void HTMLTableElement::addSharedCellDecls(Vector<CSSMutableStyleDeclaration*>& results) argument
503 addSharedCellBordersDecl(results);
504 addSharedCellPaddingDecl(results);
507 void HTMLTableElement::addSharedCellBordersDecl(Vector<CSSMutableStyleDeclaration*>& results) argument
562 results.append(decl);
565 void HTMLTableElement::addSharedCellPaddingDecl(Vector<CSSMutableStyleDeclaration*>& results) argument
590 results.append(m_paddingDecl.get());
593 void HTMLTableElement::addSharedGroupDecls(bool rows, Vector<CSSMutableStyleDeclaration*>& results) argument
[all...]
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
H A Dbuildbot.py67 return "http://%s/results/%s" % (self._buildbot.buildbot_host, self.url_encoded_name())
83 is_green=(build_dictionary['results'] == 0) # Undocumented, 0 seems to mean "pass"
176 results = current_build.layout_test_results()
177 # We treat a lack of results as if all the test failed.
179 if results:
180 failures = set(results.failing_tests())
235 def results(self): member in class:Build
239 results_html = "%s/results.html" % (self.results_url())
/external/chromium/chrome/browser/autocomplete/
H A Dsearch_provider.cc125 // Sort the results so that UpdateFirstSearchDescription does the right thing.
140 // Can't return search/suggest results for bogus input or without a profile.
284 // The history query results are synchronous, so if minimal_changes is true,
285 // we still have the last results and don't need to do anything.
328 // have its results, or are allowed to keep running it, just do that, rather
339 // We can't start a new query if we're only allowed synchronous results.
345 // now, else we won't think we're waiting on results from the server when we
388 // private, and the Suggest server is unlikely to have any useful results
392 // server is once again unlikely to have and useful results.
465 // Parse optional data in the results fro
603 AddHistoryResultsToMap(const HistoryResults& results, bool is_keyword, int did_not_accept_suggestion, MatchMap* map) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextensions_ui.cc245 DictionaryValue results; local
247 // Add the extensions to the results structure.
284 results.Set("extensions", extensions_list);
288 results.SetBoolean("developerMode", developer_mode);
290 web_ui_->CallJavascriptFunction("returnExtensionsData", results);
556 ListValue results; local
557 web_ui_->CallJavascriptFunction("hidePackDialog", results);
613 // Add the extensions to the results structure.
614 ListValue results; local
615 results
[all...]
/external/chromium/chrome/browser/history/
H A Dtext_database_manager.cc415 std::vector<TextDatabase::Match>* results,
417 results->clear();
466 // Adjust the max count according to how many results we've already got.
469 static_cast<int>(results->size());
476 results, &found_urls, first_time_searched);
480 static_cast<int>(results->size()) <= options.max_count);
482 static_cast<int>(results->size()) >= options.max_count)
483 break; // Got the max number of results.
412 GetTextMatches( const string16& query, const QueryOptions& options, std::vector<TextDatabase::Match>* results, Time* first_time_searched) argument
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_database_unittest.cc827 // Add the GetHash results to the cache.
833 std::vector<SBFullHashResult> results; local
834 results.push_back(full_hash);
837 results.push_back(full_hash);
840 database_->CacheHashResults(prefixes, results);
964 // Prefixes with no full results are misses.
/external/chromium/net/base/
H A Dx509_certificate.cc348 CertificateList results; local
351 return results;
357 results.push_back(scoped_refptr<X509Certificate>(result));
361 return results;
H A Dx509_certificate_openssl.cc363 OSCertHandles results; local
365 return results;
371 results.push_back(handle);
375 CreateOSCertHandlesFromPKCS7Bytes(data, length, &results);
384 return results;
/external/chromium/net/proxy/
H A Dproxy_resolver_v8.cc59 // implemented -- whether they should restrict to IPv4 results, or
351 int ResolveProxy(const GURL& query_url, ProxyInfo* results) { argument
398 results->UsePacString(UTF16ToASCII(ret_str));
689 ProxyInfo* results,
713 int rv = context_->ResolveProxy(query_url, results);
688 GetProxyForURL(const GURL& query_url, ProxyInfo* results, CompletionCallback* , RequestHandle* , const BoundNetLog& net_log) argument
/external/icu4c/i18n/
H A Duspoof.cpp555 int32_t results = uspoof_areConfusable(sc, s1U, lengthS1U, s2U, lengthS2U, status); local
563 return results;
578 int32_t results = uspoof_areConfusable(sc, u1, length1, u2, length2, status); local
579 return results;
683 // Unnormalized results should be very rare.
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java287 * This method creates an object where loading results will be stores. Only those features will be allowed to store
289 * @return an object to store loading results
485 * This class holds the loading results according to the given loading flag.
671 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException { argument
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DMesh.java850 CollisionResults results){
856 return collisionTree.collideWith(other, worldMatrix, worldBound, results);
1240 * modifying it will cause undefined results.
1253 * modifying it will cause undefined results.
847 collideWith(Collidable other, Matrix4f worldMatrix, BoundingVolume worldBound, CollisionResults results) argument
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/
H A DPhysicsSpace.java653 * Performs a ray collision test and returns the results as a list of PhysicsRayTestResults
656 List<PhysicsRayTestResult> results = new LinkedList<PhysicsRayTestResult>();
657 dynamicsWorld.rayTest(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
658 return results;
662 * Performs a ray collision test and returns the results as a list of PhysicsRayTestResults
664 public List<PhysicsRayTestResult> rayTest(Vector3f from, Vector3f to, List<PhysicsRayTestResult> results) { argument
665 results.clear();
666 dynamicsWorld.rayTest(Converter.convert(from, rayVec1), Converter.convert(to, rayVec2), new InternalRayListener(results));
667 return results;
672 private List<PhysicsRayTestResult> results; field in class:PhysicsSpace.InternalRayListener
674 InternalRayListener(List<PhysicsRayTestResult> results) argument
707 sweepTest(CollisionShape shape, Transform start, Transform end, List<PhysicsSweepTestResult> results) argument
719 private List<PhysicsSweepTestResult> results; field in class:PhysicsSpace.InternalSweepListener
721 InternalSweepListener(List<PhysicsSweepTestResult> results) argument
[all...]
/external/srec/srec/Semproc/src/
H A DSemanticProcessorImpl.c472 SR_SemanticResult** results,
518 * If the array to hold the results is not big enough,
668 if (&results[resultIdx] != NULL) /* SemanticResultImpl assumed to have been created externally */
669 interpretScripts(semproc, semproc->acc_scripts, &results[resultIdx]);
677 hashmap = ((SR_SemanticResultImpl*)results[resultIdx])->results;
776 SR_SemanticResult** results,
841 * If the array to hold the results is not big enough,
984 if (&results[resultIdx] != NULL) /* SemanticResultImpl assumed to have been created externally */
985 interpretScripts(semproc, acc_scripts, &results[resultId
469 SR_SemanticProcessor_CheckParseByWordID(SR_SemanticProcessor* self, SR_SemanticGraph* graph, wordID* wordIDs, SR_SemanticResult** results, size_t* resultCount) argument
773 SR_SemanticProcessor_CheckParse(SR_SemanticProcessor* self, SR_SemanticGraph* graph, const LCHAR* transcription, SR_SemanticResult** results, size_t* resultCount) argument
[all...]
/external/v8/test/cctest/
H A Dtest-strings.cc460 Handle<Object> results[] = { local
475 CHECK_EQ(results[i]->IsUndefined(), result->IsUndefined());
476 CHECK_EQ(results[i]->IsNumber(), result->IsNumber());
478 CHECK_EQ(Smi::cast(results[i]->ToSmi()->ToObjectChecked())->value(),
/external/webkit/Source/WebCore/editing/
H A DTextCheckingHelper.cpp243 // since we will want to ignore results in this area.
262 // since we will want to ignore results in this area.
276 Vector<TextCheckingResult> results; local
278 m_client->textChecker()->checkTextOfParagraph(paragraphString.characters(), paragraphString.length(), checkingTypes, results);
280 for (unsigned i = 0; i < results.size(); i++) {
281 const TextCheckingResult* result = &results[i];
417 // since we will want to ignore results in this area.
420 // Start checking from beginning of paragraph, but skip past results that occur before the start of the original search range.
455 // These results were all between the start of the paragraph and the start of the search range; look
526 Vector<TextCheckingResult> results;
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DAuditsPanel.js48 this.clearResultsButton = new WebInspector.StatusBarButton(WebInspector.UIString("Clear audit results."), "clear-status-bar-item");
128 var results = []; variable
139 resultCallback(mainResourceURL, results);
143 resultCallback(mainResourceURL, results);
150 results.push(result);
155 _auditFinishedCallback: function(launcherCallback, mainResourceURL, results)
164 var resultTreeElement = new WebInspector.AuditResultSidebarTreeElement(results, mainResourceURL, ordinal);
448 WebInspector.AuditResultSidebarTreeElement = function(results, mainResourceURL, ordinal)
450 this.results = results;
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DClipboardWin.cpp503 static void addMimeTypesForFormat(HashSet<String>& results, const FORMATETC& format) argument
507 results.add("URL");
508 results.add("text/uri-list");
512 results.add("Text");
513 results.add("text/plain");
520 HashSet<String> results; local
522 return results;
525 return results;
531 return results;
534 return results;
[all...]

Completed in 5543 milliseconds

1234567891011>>