/external/chromium_org/v8/test/mjsunit/compiler/ |
shift-shr.js | 7 // Check the results of `left >>> right`. The result is always unsigned (and
|
/external/skia/experimental/Intersection/ |
CubicBounds.cpp | 19 int results = findExtrema(cubic[0].x, cubic[1].x, cubic[2].x, cubic[3].x, leftTs); local 21 for (int index = 0; index < results; ++index) {
|
/external/skia/gm/rebaseline_server/ |
compare_rendered_pictures_test.py | 11 TODO(epoger): Create a command to update the expected results (in 13 1. examine the results in self._output_dir_actual and make sure they are ok 28 import results namespace 29 import gm_json # must import results first, so that gm_json will be in sys.path namespace 36 the results.""" 59 results.KEY__HEADER__RESULTS_ALL),
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
SuggestedMemberListAdapter.java | 173 FilterResults results = new FilterResults(); local 175 return results; 209 return results; 212 // Read back the results from the cursor and filter out existing group members. 237 return results; 296 results.values = suggestionsList; 297 return results; 301 protected void publishResults(CharSequence constraint, FilterResults results) { 303 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 | 38 ** Also, the inquiry results event has its own callback; Not handled here! 54 /* pass the number of results to caller */ 122 GAP_TRACE_EVENT ("GAP Inquiry Results Callback (bdaddr [%02x%02x%02x%02x%02x%02x])", 130 /* Find the control block which has an Inquiry Active and call its results callback */ 164 tGAP_FINDADDR_RESULTS *p_result = &p_cb->results; 177 memcpy (p_result->bd_addr, p_cb->p_cur_inq->results.remote_bd_addr, BD_ADDR_LEN); 185 if ((BTM_ReadRemoteDeviceName (p_cb->p_cur_inq->results.remote_bd_addr, 187 return; /* This routine will get called again with the next results */ 192 p_result->status = GAP_EOINQDB; /* No inquiry results; we're done! */ 201 /* If this code is reached, the process has completed so call the appl's callback with results */ [all...] |
/external/chromium_org/chrome/browser/profiles/ |
host_zoom_map_browsertest.cc | 97 std::vector<std::string> results; local 100 results.push_back(it->host); 101 return results; 108 std::vector<std::string> results; local 112 results.push_back(it.key()); 114 return results;
|
/external/chromium_org/chrome/browser/spellchecker/ |
spellcheck_message_filter_mac.cc | 57 const std::vector<SpellCheckResult>& results); 60 void OnLocalCheckCompleted(const std::vector<SpellCheckResult>& results); 165 const std::vector<SpellCheckResult>& results) { 168 remote_results_ = results; 184 const std::vector<SpellCheckResult>& results) { 186 local_results_ = results; 233 // 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 | 28 HistoryData::SecondaryDeque results; local 35 results.push_back(str); 38 secondary->swap(results); 159 const HistoryData::SecondaryDeque& results) { 161 for (size_t i = 0; i< results.size(); ++i) 162 results_list->AppendString(results[i]);
|
/external/chromium_org/chrome/browser/ui/webui/extensions/ |
command_handler.cc | 79 base::DictionaryValue results; local 80 GetAllCommands(&results); 82 "extensions.ExtensionCommandsOverlay.returnExtensionsData", results); 139 base::ListValue* results = new base::ListValue; local 196 results->Append(extension_dict.release()); 200 commands->Set("commands", results);
|
/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 | 182 int request_id, const SpeechRecognitionResults& results) { 184 SpeechRecognitionResults::const_iterator it = results.begin(); 185 for (; it != results.end(); ++it) { 192 results.size() - provisional_count); 195 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/tools/telemetry/telemetry/unittest/ |
json_results.py | 22 'in the results files (can be used for revision ' 24 parser.add_option('--write-full-results-to', metavar='FILENAME', 26 help='The path to write the list of full results to.') 31 parser.add_option("--test-results-server", default="", 74 def FullResults(args, suite, results): 75 """Convert the unittest results to the Chromium JSON test result format. 91 sets_of_passing_test_names = map(PassingTestNames, results) 93 results) 103 num_failures = NumFailuresAfterRetries(suite, results) 166 def NumFailuresAfterRetries(suite, results) [all...] |
/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/skia/src/core/ |
SkQuadTree.cpp | 114 SkTDArray<void*>* results) const { 118 results->push(entry->fData); 127 this->search(node->fChildren[index], query, results); 171 void SkQuadTree::search(const SkIRect& query, SkTDArray<void*>* results) { 173 SkASSERT(NULL != results); 175 this->search(fRoot, query, results);
|
/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);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiScanningServiceImpl.java | 266 public void onHotlistApFound(ScanResult[] results) { 268 sendMessage(CMD_HOTLIST_AP_FOUND, 0, 0, results); 272 public void onChangesFound(ScanResult[] results) { 274 sendMessage(CMD_WIFI_CHANGE_DETECTED, 0, 0, results); 315 if (DBG) log("ignored scan results available event"); 382 ScanResult[] results = WifiNative.getScanResults(); local 385 ci2.reportScanResults(results); 400 ScanResult[] results = (ScanResult[])msg.obj; local 401 if (DBG) Log.d(TAG, "Found " + results.length + " results"); 409 ScanResult[] results = (ScanResult[])msg.obj; local 414 ScanResult[] results = (ScanResult[])msg.obj; local 1064 ScanResult results[] = WifiNative.getScanResults(); local [all...] |
/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/chromium_org/chrome/browser/extensions/ |
bookmark_app_helper_unittest.cc | 303 std::map<int, SkBitmap> results( 306 EXPECT_EQ(3u, results.size()); 307 ValidateBitmapSizeAndColor(results[16], 16, SK_ColorRED); 308 ValidateBitmapSizeAndColor(results[32], 32, SK_ColorGREEN); 309 ValidateBitmapSizeAndColor(results[128], 128, SK_ColorYELLOW); 318 std::map<int, SkBitmap> results( 321 EXPECT_EQ(3u, results.size()); 322 ValidateBitmapSizeAndColor(results[16], 16, SK_ColorYELLOW); 323 ValidateBitmapSizeAndColor(results[32], 32, SK_ColorBLUE); 324 ValidateBitmapSizeAndColor(results[256], 256, SK_ColorRED) [all...] |
/frameworks/base/core/java/android/app/ |
Instrumentation.java | 75 * instrumentation can also be launched, and results collected, by an automated system. 165 * @param results Any results to send back to the code that started the instrumentation. 167 public void sendStatus(int resultCode, Bundle results) { 170 mWatcher.instrumentationStatus(mComponent, resultCode, results); 184 * @param results Any results to send back to the code that started the 187 public void finish(int resultCode, Bundle results) { 192 if (results == null) { 193 results = new Bundle() 1373 Bundle results = new Bundle(); local 1387 Bundle results = new Bundle(); local [all...] |