HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 576 - 600 of 1830) sorted by null

<<21222324252627282930>>

  /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/jmonkeyengine/engine/src/test/jme3test/collision/
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/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/src/core/
SkTileGrid.cpp 65 void SkTileGrid::search(const SkIRect& query, SkTDArray<void*>* results) {
91 *results = this->tile(tileStartX, tileStartY);
93 results->reset();
112 results->push(nextElement);
  /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;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
fixer_base.py 89 results = {"node": node}
90 return self.pattern.match(node, results) and results
92 def transform(self, node, results):
97 results: a dict mapping symbolic names to part of the match.
pytree.py 467 name = None # Optional name used to store match in results dict
488 def match(self, node, results=None):
494 If results is not None, it must be a dict which will be
503 if results is not None:
508 results.update(r)
509 if results is not None and self.name:
510 results[self.name] = node
513 def match_seq(self, nodes, results=None):
521 return self.match(nodes[0], results)
545 If a name is given, the matching node is stored in the results
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_numliterals.py 21 def transform(self, node, results):
fix_unicode.py 16 def transform(self, node, results):
fix_ws_comma.py 24 def transform(self, node, results):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
fixer_base.py 89 results = {"node": node}
90 return self.pattern.match(node, results) and results
92 def transform(self, node, results):
97 results: a dict mapping symbolic names to part of the match.
pytree.py 467 name = None # Optional name used to store match in results dict
488 def match(self, node, results=None):
494 If results is not None, it must be a dict which will be
503 if results is not None:
508 results.update(r)
509 if results is not None and self.name:
510 results[self.name] = node
513 def match_seq(self, nodes, results=None):
521 return self.match(nodes[0], results)
545 If a name is given, the matching node is stored in the results
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_numliterals.py 21 def transform(self, node, results):
fix_unicode.py 16 def transform(self, node, results):
fix_ws_comma.py 24 def transform(self, node, results):
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiResourceAttributeNode.java 323 // Now collect results
324 List<String> results = new ArrayList<String>(); local
331 results.add(ANDROID_THEME_PREFIX + ResourceType.ATTR.getName() + '/');
334 results.add(PREFIX_THEME_REF + ResourceType.ATTR.getName() + '/');
339 results.add(ANDROID_THEME_PREFIX + item.getName());
343 return results.toArray(new String[results.size()]);
348 results.add(ANDROID_PREFIX + resType.getName() + '/');
350 results.add('@' + resType.getName() + '/');
354 results.add("@+" + resType.getName() + '/'); //$NON-NLS-1
    [all...]
  /external/chromium_org/net/cert/
x509_certificate_win.cc 76 X509Certificate::OSCertHandles* results) {
94 results->insert(results->begin(), to_add);
100 X509Certificate::OSCertHandles results; local
114 return results;
117 AddCertsFromStore(out_store, &results);
120 return results;
268 OSCertHandles results; local
273 results.push_back(handle);
277 results = ParsePKCS7(data, length)
    [all...]
  /frameworks/base/core/java/android/app/
LauncherActivity.java 187 FilterResults results = new FilterResults(); local
198 results.values = list;
199 results.count = list.size();
225 results.values = newValues;
226 results.count = newValues.size();
229 return results;
233 protected void publishResults(CharSequence constraint, FilterResults results) {
235 mActivitiesList = (List<ListItem>) results.values;
236 if (results.count > 0) {
446 protected void onSortResultList(List<ResolveInfo> results) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ReplaceStringsVisitor.java 339 TreeMap<Integer, Expression> results = new TreeMap<Integer, Expression>(); local
340 findContextCandidates(results, clazzType, 0 /*superType*/);
341 if (results.size() > 0) {
342 Integer bestRating = results.keySet().iterator().next();
343 return results.get(bestRating);
351 * Sort them by rating in the results map.
364 * @param results The map that accumulates the rating=>expression results. The lower
370 private void findContextCandidates(TreeMap<Integer, Expression> results,
388 results.put(Integer.MIN_VALUE, mi)
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_index.h 52 std::vector<bookmark_utils::TitleMatch>* results);
80 // count so that the best matches will always be added to the results.
86 // Add |node| to |results| if the node matches the query.
90 std::vector<bookmark_utils::TitleMatch>* results);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_index.h 50 std::vector<BookmarkTitleMatch>* results);
78 // count so that the best matches will always be added to the results.
84 // Add |node| to |results| if the node matches the query.
88 std::vector<BookmarkTitleMatch>* results);
  /external/chromium_org/chrome/browser/resources/history/
history.css 52 #results-display,
53 #results-pagination {
211 #results-display {
266 .search-results,
267 .day-results {
272 .site-results {
280 .month-results {
284 html[dir='rtl'] .site-results {
314 .site-results .domain {
362 .search-results .time
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
sandboxed_zip_analyzer.cc 62 zip_analyzer::Results()))) {
89 const zip_analyzer::Results& results) {
94 base::Bind(callback_, results));
  /external/chromium_org/tools/json_schema_compiler/test/
enums_unittest.cc 40 EXPECT_TRUE(args.Equals(ReturnsEnumAsType::Results::Create(
81 ReturnsEnum::Results::State state = ReturnsEnum::Results::STATE_FOO;
83 new base::StringValue(ReturnsEnum::Results::ToString(state)));
88 ReturnsEnum::Results::State state = ReturnsEnum::Results::STATE_FOO;
89 scoped_ptr<ListValue> results = ReturnsEnum::Results::Create(state); local
92 EXPECT_TRUE(results->Equals(&expected));
98 scoped_ptr<ListValue> results = ReturnsTwoEnums::Results::Create local
    [all...]

Completed in 683 milliseconds

<<21222324252627282930>>