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

<<31323334353637383940>>

  /external/icu/icu4c/source/test/cintltst/
cdetst.c 69 const static UCollationResult results[][2] = variable
115 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][1]);
134 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][0]);
  /external/icu/icu4c/source/test/intltest/
decoll.cpp 85 const Collator::EComparisonResult CollationGermanTest::results[][2] = member in class:CollationGermanTest
116 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][1]);
131 doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i][0]);
  /external/llvm/utils/lit/lit/
TestRunner.py 24 def executeShCmd(cmd, cfg, cwd, results):
27 res = executeShCmd(cmd.lhs, cfg, cwd, results)
28 return executeShCmd(cmd.rhs, cfg, cwd, results)
34 res = executeShCmd(cmd.lhs, cfg, cwd, results)
36 res = executeShCmd(cmd.rhs, cfg, cwd, results)
40 res = executeShCmd(cmd.lhs, cfg, cwd, results)
45 res = executeShCmd(cmd.rhs, cfg, cwd, results)
212 results.append((cmd.commands[i], out, err, res))
249 results = []
251 exitCode = executeShCmd(cmd, test.config, cwd, results)
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_state_vs.c 57 struct svga_shader_result *result = vs->base.results;
142 result->next = vs->base.results;
143 vs->base.results = result;
  /external/smack/src/org/jivesoftware/smack/
RosterEntry.java 116 List<RosterGroup> results = new ArrayList<RosterGroup>(); local
121 results.add(group);
124 return Collections.unmodifiableCollection(results);
  /frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
UsageLogActivity.java 78 public long update(UsageEvents results) {
80 while (results.hasNextEvent()) {
82 results.getNextEvent(event);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceCategoryProgramHandler.java 116 * Broadcast receiver to handle results of ordered broadcast. Sends the SCPD results
130 loge("SCP results error: result code = " + resultCode);
135 loge("SCP results error: missing extras");
140 loge("SCP results error: missing sender extra.");
143 ArrayList<CdmaSmsCbProgramResults> results
144 = extras.getParcelableArrayList("results");
145 if (results == null) {
146 loge("SCP results error: missing results extra.")
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
MockAbstractPreferences.java 151 String[] results = new String[keys.size()]; local
152 keys.toArray(results);
153 return result == returnNull ? null : results;
  /packages/apps/Dialer/tests/src/com/android/dialer/util/
FakeAsyncTaskExecutor.java 208 List<SubmittedTask> results = Lists.newArrayList(); local
214 results.add(task);
219 return results;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseVoicemailProviderTest.java 137 List<File> results = new ArrayList<File>();
139 results.addAll(findAllFiles(file));
141 return results;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 37 def check(self, msg, results):
43 mn, ma = results[i][0], results[i][1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_rfc822.py 37 def check(self, msg, results):
43 mn, ma = results[i][0], results[i][1]
  /external/chromium_org/chrome/renderer/resources/extensions/
sync_file_system_custom_bindings.js 66 var results = [];
79 $Array.push(results, result);
83 request.callback(results);
  /external/chromium_org/components/autofill/content/browser/
content_autofill_driver_unittest.cc 88 bool GetAutofillFillFormMessage(int* page_id, FormData* results) {
99 if (results)
100 *results = autofill_param.b;
109 bool GetAutofillPreviewFormMessage(int* page_id, FormData* results) {
120 if (results)
121 *results = autofill_param.b;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/audits/
AuditsPanel.js 48 this.auditResultsTreeElement = new WebInspector.SidebarSectionTreeElement(WebInspector.UIString("RESULTS"), {}, true);
107 * @param {!Array.<!WebInspector.AuditCategoryResult>} results
109 auditFinishedCallback: function(mainResourceURL, results)
118 var resultTreeElement = new WebInspector.AuditResultSidebarTreeElement(this, results, mainResourceURL, ordinal);
491 * @param {!Array.<!WebInspector.AuditCategoryResult>} results
495 WebInspector.AuditResultSidebarTreeElement = function(panel, results, mainResourceURL, ordinal)
498 this.results = results;
509 this._panel.showResults(this.results);
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 53 * <h3>Returning spell check results</h3>
56 * should return spell check results.
404 SentenceTextInfoParams originalTextInfoParams, SuggestionsInfo[] results) {
405 if (results == null || results.length == 0) {
409 Log.w(TAG, "Adapter: onGetSuggestions: got " + results.length);
428 for (int j = 0; j < results.length; ++j) {
429 final SuggestionsInfo cur = results[j];
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSession.java 58 * {@link #getSuggestions(TextInfo[], int, boolean)} for obtaining results from the spell checker
419 public void onGetSuggestions(SuggestionsInfo[] results) {
423 MSG_ON_GET_SUGGESTION_MULTIPLE, results));
429 public void onGetSentenceSuggestions(SentenceSuggestionsInfo[] results) {
433 MSG_ON_GET_SUGGESTION_MULTIPLE_FOR_SENTENCE, results));
440 * Callback for getting results from text services
446 * @param results an array of {@link SuggestionsInfo}s.
447 * These results are suggestions for {@link TextInfo}s queried by
451 public void onGetSuggestions(SuggestionsInfo[] results);
454 * @param results an array of {@link SentenceSuggestionsInfo}s
    [all...]
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 157 // convert the results to a hashset of strings
158 Set<String> results = new HashSet<String>(); local
160 results.add(new String(value));
162 return results;
170 // convert the results to a hashset of strings
171 Set<String> results = new HashSet<String>(); local
173 results.add(value.toString(16));
175 return results;
322 // do the test- results should be all but the bad one are handled
338 // do the test- results should be all but the bad one are handle
    [all...]
  /bionic/libc/bionic/
getentropy_linux.c 356 uint8_t results[SHA512_DIGEST_LENGTH]; local
522 HD(results);
552 SHA512_Final(results, &ctx);
553 memcpy((char *)buf + i, results, min(sizeof(results), len - i));
554 i += min(sizeof(results), len - i);
556 memset(results, 0, sizeof results);
  /cts/tests/tests/widget/src/android/widget/cts/
FilterTest.java 180 protected void publishResults(CharSequence constraint, FilterResults results) {
183 mResults = results;
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_platform_mac_unittest.cc 37 void CompletionCallback(const std::vector<SpellCheckResult>& results) {
38 results_ = results;
379 // The OSX spellchecker returns non-spellcheck results when invoked on a
382 // RequestTextCheck results.
  /external/chromium_org/chrome/browser/ui/app_list/search/
app_search_provider_unittest.cc 46 // Sort results by relevance.
48 std::copy(app_search_->results().begin(),
49 app_search_->results().end(),
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/ttsdebug/
ttsdebug.css 41 .results {
  /external/chromium_org/components/enhanced_bookmarks/
bookmark_server_search_service.cc 84 it = response_proto.results().begin();
85 it != response_proto.results().end();
  /external/chromium_org/components/history/core/browser/
url_database.h 164 // whether any results were found.
168 URLRows* results);
189 // which match the |query| string. Returns any matches in |results|.
190 bool GetTextMatches(const base::string16& query, URLRows* results);

Completed in 1619 milliseconds

<<31323334353637383940>>