/external/chromium_org/tools/perf/measurements/ |
tab_switching.py | 34 def MeasurePage(self, _, tab, results): 63 results.AddSummary(histogram_name, '', diff_histogram,
|
rasterize_and_record.py | 98 parser.add_option('--report-all-results', dest='report_all_results', 128 def MeasurePage(self, page, tab, results): 177 results.Add('best_rasterize_time', 'seconds', 180 results.Add('best_record_time', 'seconds', 183 results.Add('total_pixels_rasterized', 'pixels', 186 results.Add('total_pixels_recorded', 'pixels', 192 results.Add(k, '', v)
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
SuggestedMemberListAdapter.java | 171 FilterResults results = new FilterResults(); local 173 return results; 207 return results; 210 // Read back the results from the cursor and filter out existing group members. 235 return results; 292 results.values = suggestionsList; 293 return results; 297 protected void publishResults(CharSequence constraint, FilterResults results) { 299 List<SuggestedMember> suggestionsList = (List<SuggestedMember>) results.values;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 14 def transform(self, node, results): 15 imports = results['imports']
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_itertools_imports.py | 14 def transform(self, node, results): 15 imports = results['imports']
|
/external/bluetooth/bluedroid/stack/gap/ |
gap_utils.c | 37 ** Also, the inquiry results event has its own callback; Not handled here! 53 /* pass the number of results to caller */ 120 GAP_TRACE_EVENT6 ("GAP Inquiry Results Callback (bdaddr [%02x%02x%02x%02x%02x%02x])", 128 /* Find the control block which has an Inquiry Active and call its results callback */ 162 tGAP_FINDADDR_RESULTS *p_result = &p_cb->results; 175 memcpy (p_result->bd_addr, p_cb->p_cur_inq->results.remote_bd_addr, BD_ADDR_LEN); 183 if ((BTM_ReadRemoteDeviceName (p_cb->p_cur_inq->results.remote_bd_addr, 185 return; /* This routine will get called again with the next results */ 190 p_result->status = GAP_EOINQDB; /* No inquiry results; we're done! */ 199 /* If this code is reached, the process has completed so call the appl's callback with results */ [all...] |
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_message_filter_mac.cc | 55 const std::vector<SpellCheckResult>& results); 58 void OnLocalCheckCompleted(const std::vector<SpellCheckResult>& results); 163 const std::vector<SpellCheckResult>& results) { 166 remote_results_ = results; 183 const std::vector<SpellCheckResult>& results) { 186 local_results_ = results; 234 // Discard all local results occurring before remote result.
|
/external/chromium_org/chrome/browser/ui/app_list/search/ |
history_data.cc | 103 scoped_ptr<KnownResults> results(new KnownResults); 118 (*results)[assoc_it->second.primary] = 131 if (results->find(secondary_result_id) != results->end()) 133 (*results)[secondary_result_id] = secondary_type; 137 return results.Pass();
|
history_data_store.cc | 34 HistoryData::SecondaryDeque results; local 41 results.push_back(str); 44 secondary->swap(results); 168 const HistoryData::SecondaryDeque& results) { 170 for (size_t i = 0; i< results.size(); ++i) 171 results_list->AppendString(results[i]);
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
command_handler.cc | 71 DictionaryValue results; local 72 GetAllCommands(&results); 74 "ExtensionCommandsOverlay.returnExtensionsData", results); 107 ListValue* results = new ListValue; local 168 results->Append(extension_dict.release()); 172 commands->Set("commands", results);
|
/external/chromium_org/chrome/common/extensions/ |
PRESUBMIT.py | 95 def _CheckLinks(input_api, output_api, results): 125 results.append(output_api.PresubmitPromptWarning( 132 results = [ 146 results.append(output_api.PresubmitError('IntegrationTest failed!')) 147 _CheckLinks(input_api, output_api, results) 148 return results
|
/external/chromium_org/chrome/test/perf/ |
dom_checker_uitest.cc | 81 void PrintResults(const ResultsList& results, const char* message, 83 if (!results.empty()) { 88 ResultsList::const_iterator it = results.begin(); 89 for (; it != results.end(); ++it) 113 std::string* results) { 116 return file_util::ReadFileToString(results_path, results); 189 // test failure. Add those strings to the results set. 227 // Get the test results. 247 // expected results file that didn't exist. Fixing that bug revealed 248 // that the expected results weren't correct anyway [all...] |
/external/chromium_org/content/browser/speech/ |
speech_recognizer_impl_android.cc | 154 SpeechRecognitionResults results; local 155 results.push_back(SpeechRecognitionResult()); 156 SpeechRecognitionResult& result = results.back(); 165 this, results)); 169 SpeechRecognitionResults const &results) { 171 listener()->OnRecognitionResults(session_id(), results); local
|
/external/chromium_org/content/renderer/ |
speech_recognition_dispatcher.cc | 177 int request_id, const SpeechRecognitionResults& results) { 179 SpeechRecognitionResults::const_iterator it = results.begin(); 180 for (; it != results.end(); ++it) { 187 results.size() - provisional_count); 190 for (it = results.begin(); it != results.end(); ++it) {
|
/external/chromium_org/third_party/sqlite/src/test/ |
colmeta.test | 76 foreach {tn params results} $tests { 82 } $results 91 } $results
|
/external/chromium_org/v8/test/mjsunit/ |
stress-array-push.js | 30 var results = []; variable 32 if ((k%10000) == 0) results.length = 0; 33 results.push({});
|
/external/v8/test/mjsunit/ |
stress-array-push.js | 30 var results = []; variable 32 if ((k%10000) == 0) results.length = 0; 33 results.push({});
|
/external/valgrind/main/VEX/switchback/ |
binary_switchback.pl | 137 # returns output results 181 my @results = <INFILE>; 184 while (@results && !((shift @results) =~ /^---START---/)) {} 185 print @results; 192 my @results = <INFILE>; 196 return @results; 395 # Done: Report results
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
Builder.java | 98 ArrayList<Address> results = new ArrayList<Address>();
local 103 results.add(buildMailbox((ASTmailbox)n));
107 return new MailboxList(results, true);
168 ArrayList<String> results = new ArrayList<String>(node.jjtGetNumChildren());
local 173 results.add(buildString((ASTdomain)n, true));
177 return new DomainList(results, true);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParser.java | 211 * @param results the output of aapt 215 public static boolean parseOutput(List<String> results, IProject project) { 216 int size = results.size(); 218 return parseOutput(results.toArray(new String[size]), project); 227 * @param results the output of aapt 231 public static boolean parseOutput(String[] results, IProject project) { 233 if (results.length == 0) { 243 for (int i = 0; i < results.length ; i++) { 244 String p = results[i]; 258 m = getNextLineMatcher(results, ++i, sPattern1Line2) [all...] |
/external/google-diff-match-patch/name/fraser/neil/plaintext/ |
diff_match_patch_test.java | 832 Object[] results = dmp.patch_apply(patches, "The quick brown fox jumps over the lazy dog."); local [all...] |
/external/dropbear/libtomcrypt/testprof/ |
x86_prof.c | 5 struct list results[100]; variable in typeref:struct:list 21 /* qsort the results */ 22 qsort(results, no_results, sizeof(struct list), &sorter); 27 fprintf(stderr, "%-20s: Schedule at %6lu\n", cipher_descriptor[results[x].id].name, (unsigned long)results[x].spd1); 32 ("%-20s[%3d]: Encrypt at %5lu, Decrypt at %5lu\n", cipher_descriptor[results[x].id].name, cipher_descriptor[results[x].id].ID, results[x].spd1, results[x].spd2); 37 ("%-20s: Process at %5lu\n", hash_descriptor[results[x].id].name, results[x].spd1 / 1000) [all...] |
/external/chromium_org/chrome/browser/resources/history/ |
history.js | 432 * quick flips back and forth between results. 502 * @param {Array} results A list of results. 504 HistoryModel.prototype.addResults = function(info, results) { 506 // results. Double check the search term as well. 519 for (var i = 0, result; result = results[i]; i++) { 553 * Return true if there are more results beyond the current page. 554 * @return {boolean} true if the there are more results, otherwise false. 638 // Flag to show that the results are grouped by domain or not. 656 // Keeps track of whether or not there are more results available than ar [all...] |
/external/chromium_org/build/android/ |
test_runner.py | 440 results, test_exit_code = test_dispatcher.RunTests( 451 results=results, 467 results = base_test_result.TestRunResults() 481 results.AddTestRunResults(test_results) 497 results.AddTestRunResults(test_results) 504 results=results, 520 results, exit_code = test_dispatcher.RunTests( 528 results=results [all...] |
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/styles/ |
main.css | 274 /*** results-view ***/ 276 /* FIXME: Remove this once garden-o-matic switches to the new results view. */ 277 .old-results-view { 286 .results-view { 290 .results-view .toolbar { 295 .results-view .toolbar .selector { 304 .results-view .test-selector { 309 .results-view .toolbar .actions { 313 .results-detail td {
|