/external/icu4c/test/cintltst/ |
cestst.c | 61 const static UCollationResult results[] = { variable 99 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 118 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
cturtst.c | 65 const static UCollationResult results[] = { variable 106 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 126 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/icu4c/test/intltest/ |
escoll.cpp | 70 const Collator::EComparisonResult CollationSpanishTest::results[] = { member in class:CollationSpanishTest 88 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 96 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
trcoll.cpp | 58 const Collator::EComparisonResult CollationTurkishTest::results[] = { member in class:CollationTurkishTest 78 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]); 86 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
/external/jmonkeyengine/engine/src/test/jme3test/collision/ |
TestTriangleCollision.java | 116 CollisionResults results = new CollisionResults(); local 118 golem.collideWith(bv, results); 120 if (results.size() > 0) {
|
TestMousePick.java | 83 CollisionResults results = new CollisionResults(); local 84 shootables.collideWith(ray, results); 85 // System.out.println("----- Collisions? " + results.size() + "-----"); 86 // for (int i = 0; i < results.size(); i++) { 88 // float dist = results.getCollision(i).getDistance(); 89 // Vector3f pt = results.getCollision(i).getWorldContactPoint(); 90 // String hit = results.getCollision(i).getGeometry().getName(); 94 if (results.size() > 0) { 95 CollisionResult closest = results.getClosestCollision();
|
/external/objenesis/tck/src/org/objenesis/tck/ |
TCK.java | 32 * implementations, reporting the results to a {@link Reporter}. 85 * @param reporter Where to report the results of the test to. 123 List results = new ArrayList(keys.size()); local 125 results.add(descriptions.get(keys.get(i))); 127 return results;
|
/packages/apps/Email/src/org/apache/james/mime4j/field/address/ |
AddressList.java | 82 ArrayList<Address> results = new ArrayList<Address>();
85 addr.addMailboxesTo(results);
89 // could have held onto a reference to the results
90 return new MailboxList(results, false);
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
RankAwarePromoterTest.java | 82 // The promoted results. There's just one result from corpus 90 // The promoted results. 124 ArrayList<CorpusResult> results = new ArrayList<CorpusResult>(); local 126 results.add(corpus.getSuggestions(query, 10, false)); 128 return results;
|
/external/chromium/chrome/browser/autofill/ |
autofill_manager_unittest.cc | 552 bool GetAutofillFormDataFilledMessage(int *page_id, FormData* results) { 562 if (results) 563 *results = autofill_param.b; 613 // No suggestions provided, so send an empty vector as the results. 657 // No suggestions provided, so send an empty vector as the results. 726 // No suggestions provided, so send an empty vector as the results. 783 // No suggestions provided, so send an empty vector as the results. 1510 FormData results; local 1530 FormData results; local 1554 FormData results; local 1580 FormData results; local 1605 FormData results; local 1631 FormData results; local 1653 FormData results; local 1697 FormData results; local 1768 FormData results; local 1798 FormData results; local 1899 FormData results; local 1939 FormData results; local 1971 FormData results; local 1991 FormData results; local 2029 FormData results; local [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/ |
ConfigTab.java | 11 package org.eclipse.test.internal.performance.results.ui; 39 import org.eclipse.test.internal.performance.results.db.AbstractResults; 40 import org.eclipse.test.internal.performance.results.model.BuildResultsElement; 41 import org.eclipse.test.internal.performance.results.model.ComponentResultsElement; 42 import org.eclipse.test.internal.performance.results.model.ConfigResultsElement; 43 import org.eclipse.test.internal.performance.results.model.ResultsElement; 44 import org.eclipse.test.internal.performance.results.model.ScenarioResultsElement; 45 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants; 46 import org.eclipse.test.internal.performance.results.utils.Util; 50 * Tab to display all performances results numbers for a configuration (i.e a performance machine) 78 ComponentResultsElement results; field in class:ConfigTab [all...] |
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/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/ |
PhysicsSpace.java | 653 * Performs a ray collision test and returns the results as a list of PhysicsRayTestResults 656 List<PhysicsRayTestResult> results = new LinkedList<PhysicsRayTestResult>(); local 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) { 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 692 List<PhysicsSweepTestResult> results = new LinkedList<PhysicsSweepTestResult>(); local 719 private List<PhysicsSweepTestResult> results; field in class:PhysicsSpace.InternalSweepListener [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_contents_provider.h | 16 // HistoryContentsProvider is an AutocompleteProvider that provides results from 18 // HistoryContentsProvider gets results from two sources: 19 // . HistoryService: this provides results for matches in the body/title of 21 // . BookmarkModel: provides results for matches in the titles of bookmarks. 27 // As necessary asks the history service for the relevant results. When 37 history::QueryResults* results); 76 // Whether we should trim "http://" from results. 79 // Results from most recent query. These are cached so we don't have to
|
/external/chromium/chrome/browser/ui/cocoa/find_bar/ |
find_bar_bridge.h | 57 virtual void ClearResults(const FindNotificationDetails& results);
|
/external/chromium/chrome/browser/ui/webui/ |
conflicts_ui.cc | 154 DictionaryValue results; local 155 results.Set("moduleList", list); 172 results.SetString("modulesTableTitle", table_title); 174 web_ui_->CallJavascriptFunction("returnModuleList", results);
|
flags_ui.cc | 161 DictionaryValue results; local 162 results.Set("flagsExperiments", 165 results.SetBoolean("needsRestart", 167 web_ui_->CallJavascriptFunction("returnFlagsExperiments", 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/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/webkit/PerformanceTests/SunSpider/resources/ |
sunspider-standalone-driver.js | 26 var results = new Array();
|
/external/webkit/Source/WebCore/inspector/front-end/ |
DatabaseQueryView.js | 68 var results = []; 72 if (bestMatchOnly && results.length) 80 results.push(textArray[i]); 91 completionsReadyCallback(results);
|
/external/webkit/Source/WebCore/platform/text/ |
TextCheckerClient.h | 67 virtual void checkTextOfParagraph(const UChar* text, int length, TextCheckingTypeMask checkingTypes, Vector<TextCheckingResult>& results) = 0;
|
/external/webkit/Tools/Scripts/ |
check-dom-results | 65 my @results = `find "${testDirectory}/${directory}" -name "*-expected.txt"`; 71 foreach my $result (@results) {
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/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;
|