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

<<21222324252627282930>>

  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_hw_context.c 40 uint32_t *results; local
76 results = ctx->ws->buffer_map(buffer->cs_buf, ctx->cs, PIPE_TRANSFER_WRITE);
77 if (results) {
80 memset(results, 0, ctx->max_db * 4 * 4);
93 /* analyze results */
94 results = ctx->ws->buffer_map(buffer->cs_buf, ctx->cs, PIPE_TRANSFER_READ);
95 if (results) {
98 if (results[i*4 + 1])
290 /* count all results across all data blocks */
364 uint32_t *results; local
    [all...]
  /external/apache-harmony/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
MockAbstractPreferences.java 151 String[] results = new String[keys.size()]; local
152 keys.toArray(results);
153 return result == returnNull ? null : results;
  /external/chromium/chrome/browser/history/
download_database.cc 84 std::vector<DownloadCreateInfo>* results) {
85 results->clear();
105 results->push_back(info);
  /external/chromium_org/chrome/browser/storage_monitor/
storage_monitor.cc 55 std::vector<StorageInfo> results; local
61 results.push_back(it->second);
63 return results;
  /external/chromium_org/chrome/browser/ui/sync/
profile_signin_confirmation_helper.cc 89 history::QueryResults* results);
125 history::QueryResults* results) {
127 results->Swap(&owned_results);
  /external/chromium_org/content/public/common/
page_state.cc 114 std::vector<base::FilePath> results; local
118 ToFilePathVector(state.referenced_files, &results);
120 return results;
  /external/chromium_org/remoting/tools/build/
remoting_copy_locales.py 158 results = DoMain(sys.argv[1:]) variable
159 if results:
160 print results
  /external/chromium_org/sync/notifier/
sync_system_resources_unittest.cc 166 invalidation::Status results(invalidation::Status::PERMANENT_FAILURE,
169 .WillOnce(SaveArg<0>(&results));
174 results); local
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DatabaseQueryView.js 75 var results = [];
85 results.push(textArray[i]);
94 completionsReadyCallback(results);
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechRecognition.cpp 116 Vector<RefPtr<SpeechRecognitionResult> > results = m_finalResults; local
118 results.append(currentInterimResults[i]);
120 dispatchEvent(SpeechRecognitionEvent::createResult(resultIndex, results));
  /external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
builders.js 54 // The first item in step.results is the success of the step:
56 return step.results[0] == 2;
140 // If the compile/update is broken, no steps will have a results url.
141 if (!step.urls.results)
145 perfTestMap[step.name].push({ builder: builderName, url: step.urls.results });
  /external/chromium_org/third_party/icu/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/chromium_org/third_party/icu/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/chromium_org/third_party/mesa/src/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/chromium_org/tools/checkdeps/
checkdeps_test.py 14 import results namespace
93 self.deps_checker.results_formatter = results.CountViolationsFormatter()
106 self.deps_checker.results_formatter = results.TemporaryRulesFormatter()
  /external/chromium_org/tools/flakiness/
find_flakiness.py 79 # Write the data file and print results.
111 results = test_start.search(line)
112 if results:
113 test_list.append(results.group(1))
152 # Print the results and write the data file.
  /external/icu4c/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/icu4c/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 47 def executeShCmd(cmd, cfg, cwd, results):
50 res = executeShCmd(cmd.lhs, cfg, cwd, results)
51 return executeShCmd(cmd.rhs, cfg, cwd, results)
57 res = executeShCmd(cmd.lhs, cfg, cwd, results)
59 res = executeShCmd(cmd.rhs, cfg, cwd, results)
63 res = executeShCmd(cmd.lhs, cfg, cwd, results)
68 res = executeShCmd(cmd.rhs, cfg, cwd, results)
224 results.append((cmd.commands[i], out, err, res))
259 results = []
261 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/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceCategoryProgramHandler.java 114 * Broadcast receiver to handle results of ordered broadcast. Sends the SCPD results
128 loge("SCP results error: result code = " + resultCode);
133 loge("SCP results error: missing extras");
138 loge("SCP results error: missing sender extra.");
141 ArrayList<CdmaSmsCbProgramResults> results
142 = extras.getParcelableArrayList("results");
143 if (results == null) {
144 loge("SCP results error: missing results extra.")
    [all...]
  /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 139 List<File> results = new ArrayList<File>();
141 results.addAll(findAllFiles(file));
143 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]

Completed in 1007 milliseconds

<<21222324252627282930>>