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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_long.py 16 def transform(self, node, results):
fix_reduce.py 34 def transform(self, node, results):
fix_standarderror.py 17 def transform(self, node, results):
fix_next.py 46 def transform(self, node, results):
47 assert results
49 base = results.get("base")
50 attr = results.get("attr")
51 name = results.get("name")
68 head = results["head"]
73 elif "global" in results:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_basestring.py 13 def transform(self, node, results):
fix_future.py 19 def transform(self, node, results):
fix_long.py 16 def transform(self, node, results):
fix_reduce.py 34 def transform(self, node, results):
fix_standarderror.py 17 def transform(self, node, results):
fix_next.py 46 def transform(self, node, results):
47 assert results
49 base = results.get("base")
50 attr = results.get("attr")
51 name = results.get("name")
68 head = results["head"]
73 elif "global" in results:
  /external/chromium_org/content/browser/speech/
google_streaming_remote_engine_unittest.cc 42 const SpeechRecognitionResults& results) OVERRIDE {
43 results_.push(results);
107 SpeechRecognitionResults results; local
108 results.push_back(SpeechRecognitionResult());
109 SpeechRecognitionResult& result = results.back();
117 ExpectResultsReceived(results);
137 SpeechRecognitionResults results; local
138 results.push_back(SpeechRecognitionResult());
139 SpeechRecognitionResult& result = results.back();
146 ExpectResultsReceived(results);
156 SpeechRecognitionResults results; local
184 SpeechRecognitionResults results; local
223 SpeechRecognitionResults results; local
300 SpeechRecognitionResults results; local
    [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
AppDataDirGuesser.java 36 File[] results = guessPath(pathFromThisClassLoader); local
37 if (results.length > 0) {
38 return results[0];
73 List<File> results = new ArrayList<File>(); local
94 results.add(cacheDir);
99 return results.toArray(new File[results.size()]);
  /external/littlemock/src/com/google/testing/littlemock/
AppDataDirGuesser.java 49 File[] results = guessPath(pathFromThisClassLoader); local
50 if (results.length > 0) {
51 return results[0];
88 List<File> results = new ArrayList<File>(); local
108 results.add(cacheDir);
114 return results.toArray(new File[results.size()]);
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_message_filter_unittest.cc 37 const std::vector<SpellCheckResult>& results) {
39 route_id, identifier, markers, success, text, results);
90 std::vector<SpellCheckResult> results; local
91 results.push_back(SpellCheckResult(
93 results.push_back(SpellCheckResult(kType, kLocation, kLength, kReplacement));
99 kRouteId, kCallbackId, kMarkers, kSuccess, kText, results);
123 std::vector<SpellCheckResult> results; local
124 results.push_back(SpellCheckResult(
126 results.push_back(SpellCheckResult(
132 true, ASCIIToUTF16("Helllo walrd"), results);
    [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/model/
ScenarioResultsElement.java 11 package org.eclipse.test.internal.performance.results.model;
17 import org.eclipse.test.internal.performance.results.db.*;
18 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
19 import org.eclipse.test.internal.performance.results.utils.Util;
46 // Results category
48 SCENARIO_LABEL_DESCRIPTOR.setCategory("Results");
50 SCENARIO_FILE_NAME_DESCRIPTOR.setCategory("Results");
52 SCENARIO_SHORT_NAME_DESCRIPTOR.setCategory("Results");
62 ScenarioResultsElement(AbstractResults results, ResultsElement parent) {
63 super(results, parent)
    [all...]
  /external/chromium_org/chrome/browser/download/
download_query.h 21 // The following example copies from |all_items| to |results| those
24 // results to 20 items. Any number of filters or sorters is allowed. If all
38 // DownloadVector all_items, results;
39 // query.Search(all_items.begin(), all_items.end(), &results);
110 // filtering DownloadItem*s, Search() will sort the results primarily by the
120 // Limit the size of search results to |limit|.
123 // Filters DownloadItem*s from |iter| to |last| into |results|, sorts
124 // |results|, and limits the size of |results|. |results| must be non-NULL
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTUnicodeSort.cpp 48 xmlXPathObjectPtr *results = NULL, *res; local
122 results = resultsTab[0];
127 if (results == NULL)
141 if (results[i] == NULL)
145 if (results[j] == NULL)
151 if (xmlXPathIsNaN(results[j]->floatval)) {
152 if (xmlXPathIsNaN(results[j + incr]->floatval))
156 } else if (xmlXPathIsNaN(results[j + incr]->floatval))
158 else if (results[j]->floatval ==
159 results[j + incr]->floatval
    [all...]
  /external/chromium_org/tools/perf/benchmarks/
dom_perf.py 43 def MeasurePage(self, page, tab, results):
53 results.Add(SCORE_TRACE_NAME, SCORE_UNIT,
58 def DidRunTest(self, tab, results):
61 for result in results.page_results:
64 results.AddSummary(SCORE_TRACE_NAME, SCORE_UNIT, total, 'Total')
70 The final score is computed as the geometric mean of the individual results.
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/
EntropyComputeUtil.java 37 // Prepare collision results
38 CollisionResults results = new CollisionResults(); local
58 results.clear();
59 terrainBlock.collideWith(ray, Matrix4f.IDENTITY, bbox, results);
61 if (results.size() > 0){
62 Vector3f contactPoint = results.getClosestCollision().getContactPoint();
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCommitter.java 83 final ContentProviderResult[] results = mContentResolver.applyBatch( local
89 return ((results == null || results.length == 0 || results[0] == null)
90 ? null : results[0].uri);
  /ndk/sources/cxx-stl/gabi++/src/
helper_func_internal.h 58 const ScanResultInternal& results) _GABIXX_HIDDEN;
66 const ScanResultInternal& results)
70 ScanResultInternal& results)
77 const ScanResultInternal& results)
80 void scanEHTable(ScanResultInternal& results,
  /external/chromium_org/
PRESUBMIT.py 469 results = []
471 results.append(output_api.PresubmitError(
475 results.append(output_api.PresubmitPromptOrNotify(
480 return results
492 results = []
494 results.append(output_api.PresubmitError('checkperms.py failed.',
496 return results
512 results = []
514 results.append(output_api.PresubmitError(
516 return results
    [all...]
  /external/chromium_org/build/android/pylib/
surface_stats_collector.py 67 results = self.GetResults()
69 return results
120 results = []
123 results += SurfaceStatsCollector._CalculateResults(
125 return results
203 results = self._adb.RunShellCommand(
205 return not len(results)
246 results = self._adb.RunShellCommand(
249 if not len(results):
254 refresh_period = long(results[0]) / nanoseconds_per_secon
    [all...]
  /external/srec/tools/cmd/
srecres2utd.pl 45 undef %results;
52 process(\%token, \%results);
122 process(\%token, \%results) if(defined %token);
127 $results{total} ||= 1;
128 $rr = $results{correct}/$results{total} * 100;
130 print sprintf("%-45s RR %4.1f %d/%d (%d oovs)\n", $base, $rr, $results{correct}, $results{total}, $results{numoovs});
137 my $results = shift(@_)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
bin_multi_test.sh 13 mkdir results >/dev/null 2>&1
38 sh -c "cat ${asm} | ./yasm -f bin --mapfile=results/${m} -o results/${o} - 2>results/${e}" >/dev/null 2>/dev/null
54 if diff -w ${eg} results/${e} >/dev/null; then
73 ./test_hd results/${o} > results/${oh}
74 if diff -w ${og} results/${oh} >/dev/null; then
75 if diff -w ${eg} results/${e} >/dev/null; then
76 if diff -w ${mg} results/${m} >/dev/null; the
    [all...]

Completed in 346 milliseconds

<<11121314151617181920>>