HomeSort by relevance Sort by last modified time
    Searched refs:results (Results 201 - 225 of 2244) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/icu4c/source/i18n/
csrmbcs.h 74 UBool match(InputText* input, CharsetMatch *results) const = 0;
103 UBool match(InputText* input, CharsetMatch *results) const;
125 UBool match(InputText* input, CharsetMatch *results) const = 0;
147 UBool match(InputText* input, CharsetMatch *results) const;
162 UBool match(InputText* input, CharsetMatch *results) const;
180 UBool match(InputText* input, CharsetMatch *results) const;
199 UBool match(InputText* input, CharsetMatch *results) const;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 72 def transform(self, node, results):
73 assert results
80 negation = results.get("negation")
81 anchor = results["anchor"]
83 before = [n.clone() for n in results["before"]]
84 arg = results["arg"].clone()
85 after = results.get("after")
fix_apply.py 31 def transform(self, node, results):
33 assert results
34 func = results["func"]
35 args = results["args"]
36 kwds = results.get("kwds")
fix_execfile.py 24 def transform(self, node, results):
25 assert results
26 filename = results["filename"]
27 globals = results.get("globals")
28 locals = results.get("locals")
fix_intern.py 28 def transform(self, node, results):
30 obj = results["obj"].clone()
35 after = results["after"]
41 [results["lpar"].clone(),
43 results["rpar"].clone()])] + after)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_has_key.py 72 def transform(self, node, results):
73 assert results
80 negation = results.get("negation")
81 anchor = results["anchor"]
83 before = [n.clone() for n in results["before"]]
84 arg = results["arg"].clone()
85 after = results.get("after")
fix_apply.py 31 def transform(self, node, results):
33 assert results
34 func = results["func"]
35 args = results["args"]
36 kwds = results.get("kwds")
fix_execfile.py 24 def transform(self, node, results):
25 assert results
26 filename = results["filename"]
27 globals = results.get("globals")
28 locals = results.get("locals")
fix_intern.py 28 def transform(self, node, results):
30 obj = results["obj"].clone()
35 after = results["after"]
41 [results["lpar"].clone(),
43 results["rpar"].clone()])] + after)
  /external/chromium_org/tools/gn/
command_refs.cc 47 void OutputResultSet(const TargetSet& results, bool as_files) {
48 if (results.empty())
54 for (TargetSet::const_iterator iter = results.begin();
55 iter != results.end(); ++iter)
66 for (TargetSet::const_iterator iter = results.begin();
67 iter != results.end(); ++iter)
72 (*results.begin())->settings()->default_toolchain_label();
127 TargetSet* results);
133 TargetSet* results) {
134 if (results->find(target) != results->end()
264 TargetSet results; local
270 TargetSet 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/model/
ComponentResultsElement.java 11 package org.eclipse.test.internal.performance.results.model;
21 import org.eclipse.test.internal.performance.results.db.AbstractResults;
22 import org.eclipse.test.internal.performance.results.db.ComponentResults;
23 import org.eclipse.test.internal.performance.results.db.PerformanceResults;
24 import org.eclipse.test.internal.performance.results.db.ScenarioResults;
25 import org.eclipse.test.internal.performance.results.utils.IPerformancesConstants;
26 import org.eclipse.test.internal.performance.results.utils.Util;
54 // Results category
56 NAME_DESCRIPTOR.setCategory("Results");
58 CURRENT_BUILD_DESCRIPTOR.setCategory("Results");
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/
BandwidthTest.java 128 Bundle results = new Bundle(); local
129 results.putString("device_id", mDeviceId);
130 results.putString("timestamp", ts);
131 results.putInt("size", FILE_SIZE);
132 addStatsToResults(PROF_LABEL, prof_stats, results, mUid);
133 addStatsToResults(PROC_LABEL, proc_stats, results, mUid);
134 getInstrumentation().sendStatus(INSTRUMENTATION_IN_PROGRESS, results);
182 Bundle results = new Bundle(); local
183 results.putString("device_id", mDeviceId);
184 results.putString("timestamp", ts)
239 Bundle results = new Bundle(); local
    [all...]
  /external/chromium_org/base/test/
gtest_xml_util.cc 91 std::vector<TestResult>* results,
93 DCHECK(results);
157 results->push_back(result);
187 if (!results->empty() &&
188 results->at(results->size() - 1).full_name == result.full_name &&
189 results->at(results->size() - 1).status ==
193 results->pop_back();
196 results->push_back(result)
    [all...]
  /external/chromium_org/net/dns/
mdns_cache_unittest.cc 153 std::vector<const RecordParsed*> results; local
162 cache_.FindDnsRecords(ARecordRdata::kType, "ghs.l.google.com", &results,
165 EXPECT_EQ(1u, results.size());
166 EXPECT_EQ(default_time_, results.front()->time_created());
168 EXPECT_EQ("ghs.l.google.com", results.front()->name());
170 results.clear();
171 cache_.FindDnsRecords(PtrRecordRdata::kType, "ghs.l.google.com", &results,
174 EXPECT_EQ(0u, results.size());
185 std::vector<const RecordParsed*> results; local
198 cache_.FindDnsRecords(ARecordRdata::kType, "ghs.l.google.com", &results,
235 std::vector<const RecordParsed*> results; local
254 std::vector<const RecordParsed*> results; local
273 std::vector<const RecordParsed*> results; local
298 std::vector<const RecordParsed*> results; local
328 std::vector<const RecordParsed*> results; local
354 std::vector<const RecordParsed*> results; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_profile.py 22 results = []
26 results.append(timer() - start_timer)
32 results.append(s.getvalue())
33 return results
36 results = self.do_profiling()
37 self.assertEqual(results[0], 1000)
39 self.assertEqual(results[i+1], self.expected_output[method],
66 results = cls.do_profiling()
79 cls.__name__, method, results[i+1]))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_profile.py 22 results = []
26 results.append(timer() - start_timer)
32 results.append(s.getvalue())
33 return results
36 results = self.do_profiling()
37 self.assertEqual(results[0], 1000)
39 self.assertEqual(results[i+1], self.expected_output[method],
66 results = cls.do_profiling()
79 cls.__name__, method, results[i+1]))
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
BatchOperation.java 64 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, local
66 if ((results != null) && (results.length > 0)){
67 for (int i = 0; i < results.length; i++){
68 resultUris.add(results[i].uri);
  /external/chromium_org/base/debug/
crash_logging_unittest.cc 144 std::vector<std::string> results = local
146 ASSERT_EQ(1u, results.size());
147 EXPECT_EQ("hello worl", results[0]);
150 results = ChunkCrashKeyValue(key, "hi", 10);
151 ASSERT_EQ(1u, results.size());
152 EXPECT_EQ("hi", results[0]);
156 results = ChunkCrashKeyValue(key, "foobar", 3);
157 ASSERT_EQ(2u, results.size());
158 EXPECT_EQ("foo", results[0]);
159 EXPECT_EQ("bar", results[1])
    [all...]
  /external/chromium_org/chrome/renderer/spellchecker/
spellcheck_provider_test.cc 24 const blink::WebVector<blink::WebTextCheckingResult>& results) {
78 std::vector<blink::WebTextCheckingResult> results;
79 results.push_back(blink::WebTextCheckingResult(
82 completion->didFinishCheckingText(results);
84 last_results_ = results;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTUnicodeSort.cpp 54 xmlXPathObjectPtr* results = 0; local
112 results = resultsTab[0];
117 if (!results)
132 if (!results[i])
137 if (!results[j]) {
143 if (xmlXPathIsNaN(results[j]->floatval)) {
144 if (xmlXPathIsNaN(results[j + incr]->floatval))
148 } else if (xmlXPathIsNaN(results[j + incr]->floatval)) {
150 } else if (results[j]->floatval == results[j + incr]->floatval)
    [all...]
  /external/chromium_org/tools/perf/benchmarks/
canvasmark.py 32 def ValidateAndMeasurePage(self, _, tab, results):
37 # Split the results into score and test name.
38 # results log e.g., "489 [Test 1 - Asteroids - Bitmaps]"
44 results.AddValue(scalar.ScalarValue(
45 results.current_page, name, 'score', score, important=False))
48 results.AddValue(scalar.ScalarValue(
49 results.current_page, 'Score', 'score', total))
  /external/chromium_org/tools/telemetry/telemetry/page/
page_runner_unittest.py 21 from telemetry.results import results_options
65 def GetSuccessfulPageRuns(results):
66 return [run for run in results.all_page_runs if run.ok or run.skipped]
87 results = results_options.CreateResults(EmptyMetadataForTest(), options)
88 page_runner.Run(Test(), ps, expectations, options, results)
89 self.assertEquals(0, len(GetSuccessfulPageRuns(results)))
90 self.assertEquals(1, len(results.failures))
118 results = results_options.CreateResults(EmptyMetadataForTest(), options)
119 page_runner.Run(test, ps, expectations, options, results)
121 self.assertEquals(1, len(GetSuccessfulPageRuns(results)))
266 results = results_options.CreateResults(EmptyMetadataForTest(), options) variable in class:PageRunnerTests.testPagesetRepeat.Measurement
    [all...]
  /external/chromium_org/base/strings/
string_split_unittest.cc 166 std::vector<std::string> results; local
167 SplitStringUsingSubstr(std::string(), "DELIMITER", &results); local
168 ASSERT_EQ(1u, results.size());
169 EXPECT_THAT(results, ElementsAre(""));
237 std::vector<std::string> results; local
238 SplitStringUsingSubstr("alongwordwithnodelimiter", "DELIMITER", &results);
239 ASSERT_EQ(1u, results.size());
240 EXPECT_THAT(results, ElementsAre("alongwordwithnodelimiter"));
244 std::vector<std::string> results; local
248 &results);
254 std::vector<std::string> results; local
264 std::vector<std::string> results; local
316 std::vector<std::string> results; local
    [all...]
  /development/apps/Development/src/com/android/development/
Development.java 36 protected void onSortResultList(List<ResolveInfo> results) {
37 super.onSortResultList(results);
43 results.addAll(0, topItems);
  /external/chromium_org/build/
apply_locales.py 29 results = []
38 results.append(str_template.replace('ZZLOCALE', locale))
42 print ' '.join(["'%s'" % x for x in results])

Completed in 461 milliseconds

1 2 3 4 5 6 7 891011>>