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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/testing/gtest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognitionEvent.h 42 RefPtr<SpeechRecognitionResultList> results; member in struct:WebCore::SpeechRecognitionEventInit
51 static PassRefPtr<SpeechRecognitionEvent> createResult(unsigned long resultIndex, const Vector<RefPtr<SpeechRecognitionResult> >& results);
55 SpeechRecognitionResultList* results() const { return m_results.get(); } function in class:WebCore::SpeechRecognitionEvent
67 SpeechRecognitionEvent(const AtomicString& eventName, unsigned long resultIndex, PassRefPtr<SpeechRecognitionResultList> results);
  /external/chromium_org/tools/gyp/tools/
pretty_sln.py 55 results = begin_project.search(line)
56 if results:
58 if results.group(1).find('icu') != -1:
61 current_project = results.group(1).replace('_gyp', '')
62 projects[current_project] = [results.group(2).replace('_gyp', ''),
63 results.group(3),
64 results.group(2)]
68 results = end_project.search(line)
69 if results:
73 results = begin_dep.search(line
    [all...]
  /external/chromium_org/tools/json_schema_compiler/test/
callbacks_unittest.cc 12 ReturnsObject::Results::SomeObject some_object;
13 some_object.state = ReturnsObject::Results::SomeObject::STATE_FOO;
14 scoped_ptr<ListValue> results = ReturnsObject::Results::Create(some_object); local
20 EXPECT_TRUE(results->Equals(&expected));
24 ReturnsMultiple::Results::SomeObject some_object;
25 some_object.state = ReturnsMultiple::Results::SomeObject::STATE_FOO;
26 scoped_ptr<ListValue> results = local
27 ReturnsMultiple::Results::Create(5, some_object);
34 EXPECT_TRUE(results->Equals(&expected))
    [all...]
  /external/gtest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/icu4c/i18n/
csrecog.h 41 * Try the given input text against this Charset, and fill in the results object
47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrsbcs.h 56 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
65 virtual UBool match(InputText *det, CharsetMatch *results) const;
73 virtual UBool match(InputText *det, CharsetMatch *results) const;
124 virtual UBool match(InputText *det, CharsetMatch *results) const;
134 virtual UBool match(InputText *det, CharsetMatch *results) const;
144 virtual UBool match(InputText *det, CharsetMatch *results) const;
156 virtual UBool match(InputText *det, CharsetMatch *results) const;
166 virtual UBool match(InputText *det, CharsetMatch *results) const;
176 virtual UBool match(InputText *det, CharsetMatch *results) const;
188 virtual UBool match(InputText *det, CharsetMatch *results) const
    [all...]
csrucode.h 39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csrutf8.h 35 UBool match(InputText *input, CharsetMatch *results) const;
  /frameworks/base/core/java/android/speech/
IRecognitionListener.aidl 23 * This gives you both the final recognition results, as well as various
67 * Called when recognition results are ready.
69 * @param results a Bundle containing the most likely results (N-best list).
71 void onResults(in Bundle results);
74 * Called when recognition partial results are ready.
76 * @param results a Bundle containing the current most likely result.
78 void onPartialResults(in Bundle results);
  /ndk/sources/third_party/googletest/googletest/test/
gtest-test-part_test.cc 170 TestPartResultArray results; local
171 EXPECT_EQ(0, results.size());
177 TestPartResultArray results; local
178 results.Append(r1_);
179 EXPECT_EQ(1, results.size());
180 EXPECT_STREQ("Failure 1", results.GetTestPartResult(0).message());
186 TestPartResultArray results; local
187 results.Append(r1_);
188 results.Append(r2_);
189 EXPECT_EQ(2, results.size())
199 TestPartResultArray results; local
    [all...]
  /external/chromium_org/build/android/pylib/
device_stats_monitor.py 48 """Stops monitoring and saves results.
51 output_path: Path to save results.
54 String of URL to load results in browser.
61 results = collections.defaultdict(list)
68 results['sectors_read'].append(stats.num_sectors_read -
70 results['sectors_written'].append(stats.num_sectors_written -
76 results['user'].append(stats.user - last_cpu_stats.user)
77 results['nice'].append(stats.nice - last_cpu_stats.nice)
78 results['system'].append(stats.system - last_cpu_stats.system)
79 results['idle'].append(stats.idle - last_cpu_stats.idle
    [all...]
  /external/chromium_org/build/android/pylib/host_driven/
test_runner.py 97 # yield invalid results.
99 results = base_test_result.TestRunResults()
100 results.AddResult(HostDrivenExceptionTestResult(
102 return results, test
105 results = test.Run()
113 results = base_test_result.TestRunResults()
114 results.AddResult(HostDrivenExceptionTestResult(
128 results = base_test_result.TestRunResults()
129 results.AddResult(HostDrivenExceptionTestResult(
132 if not results.DidRunPass()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/plugins/
PluginListBuilder.h 42 PluginListBuilder(Vector<WebCore::PluginInfo>* results) : m_results(results) { }
  /external/chromium_org/tools/perf/benchmarks/
pica.py 13 def MeasurePage(self, _, tab, results):
15 results.Add('Total', 'ms', result)
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
AbstractTriangle.java 45 public int collideWith(Collidable other, CollisionResults results){
46 return other.collideWith(this, results);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_methodattrs.py 21 def transform(self, node, results):
22 attr = results["attr"][0]
fix_paren.py 37 def transform(self, node, results):
38 target = results["target"]
fix_repr.py 18 def transform(self, node, results):
19 expr = results["expr"].clone()
  /external/chromium_org/chrome/browser/history/
visit_database_unittest.cc 250 VisitVector results; local
251 GetVisitsForTimes(times, &results);
252 EXPECT_EQ(test_visit_rows.size(), results.size());
259 VisitVector results; local
260 GetVisitsForTimes(times, &results);
261 ASSERT_EQ(static_cast<size_t>(1), results.size());
262 EXPECT_TRUE(IsVisitInfoEqual(results[0], test_visit_rows[i]));
274 VisitVector results; local
275 GetAllVisitsInRange(Time(), Time(), 0, &results); local
276 ASSERT_EQ(test_visit_rows.size(), results.size())
291 GetAllVisitsInRange(Time(), Time(), 1, &results); local
305 VisitVector results; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
PRESUBMIT_test.py 157 results = checker.Run()
158 return results
161 results = self._RunTest(new_file_path=None)
163 self.assertEquals(1, len(results),
167 results = self._RunTest(self.TEST_FILE_PATTERN % "1")
169 self.assertEquals(0, len(results),
173 results = self._RunTest(self.TEST_FILE_PATTERN % "2")
175 self.assertEquals(1, len(results),
179 results = self._RunTest(self.TEST_FILE_PATTERN % "3")
181 self.assertEquals(1, len(results),
    [all...]
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.css 5 .autocomplete-results-table {
9 .autocomplete-results-table th {
13 .autocomplete-results-table td {

Completed in 1885 milliseconds

1 2 3 4 56 7 8 91011>>