/development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/ |
D | VoiceRecognitionService.java | 46 ArrayList<String> results = new ArrayList<String>(); in onStartListening() local 58 results.add("a"); in onStartListening() 59 results.add("b"); in onStartListening() 60 results.add("c"); in onStartListening() 62 results.add("1"); in onStartListening() 63 results.add("2"); in onStartListening() 64 results.add("3"); in onStartListening() 68 bundle.putStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION, results); in onStartListening() 71 listener.results(bundle); in onStartListening()
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/ |
D | BatchOperation.java | 64 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, in execute() local 66 if ((results != null) && (results.length > 0)){ in execute() 67 for (int i = 0; i < results.length; i++){ in execute() 68 resultUris.add(results[i].uri); in execute()
|
/development/tools/privapp_permissions/ |
D | privapp_permissions.py | 407 results = {} 410 results[p] = self._resolve_all_privapps(p) 411 return results 416 results[p] = [] 426 results[p].append(apk) 430 results[p].append(apk) 431 return results 463 results = {} 465 results[p] = self._resolve_sys_path(p + '/' + file_path) 466 return results [all …]
|
/development/apps/Development/src/com/android/development/ |
D | InstrumentationList.java | 176 public void instrumentationStatus(ComponentName name, int resultCode, Bundle results) { 177 if (results != null) { 178 for (String key : results.keySet()) { 180 "INSTRUMENTATION_STATUS_RESULT: " + key + "=" + results.get(key)); 186 int resultCode, Bundle results) { 187 if (results != null) { 188 for (String key : results.keySet()) { 190 "INSTRUMENTATION_RESULT: " + key + "=" + results.get(key));
|
D | Development.java | 36 protected void onSortResultList(List<ResolveInfo> results) { in onSortResultList() argument 37 super.onSortResultList(results); in onSortResultList() 42 results.add(0, topItem); in onSortResultList()
|
D | Connectivity.java | 731 private void onHttpRequestResults(final String results) { in onHttpRequestResults() argument 742 if (!TextUtils.isEmpty(results) || !mRequestRunning) { in onHttpRequestResults() 743 ((TextView) findViewById(R.id.http_response)).setText(results); in onHttpRequestResults()
|
/development/tools/bugreport/src/com/android/bugreport/anr/ |
D | AnrParser.java | 59 final ArrayList<Anr> results = new ArrayList<Anr>(); in parse() local 74 results.add(anr); in parse() 121 for (Anr item: results) { in parse() 131 return results; in parse()
|
/development/tools/external_crates/crate_health/src/ |
D | android_bp.rs | 47 let mut results = BTreeMap::new(); in generate_android_bps() localVariable 49 results.insert_or_error(NameAndVersion::new(crate_name, crate_version), result?)?; in generate_android_bps() 51 Ok(results) in generate_android_bps()
|
D | version_match.rs | 192 let results = generate_android_bps(self.compatible_and_eligible().map(|pair| pair.dest))?; in generate_android_bps() localVariable 193 for (nv, output) in results.into_iter() { in generate_android_bps() 204 let mut results = BTreeMap::new(); in diff_android_bps() localVariable 206 results.insert_or_error(NameAndVersion::from(pair.dest), pair.diff_android_bps()?)?; in diff_android_bps() 208 for (nv, output) in results.into_iter() { in diff_android_bps()
|
/development/tools/compare_cts_reports/ |
D | compare_cts_reports.py | 125 for test_name, results in tests.items(): 126 if results[0] != results[1]: 127 row = [module_name, abi, class_name, test_name] + results
|
D | README.md | 52 `--output-files/-o` is a boolean flag. If users specify this flag, the parsed results of reports af… 60 One-way comparison lists the tests that fail in report A and the corresponding results in both repo… 63 Two-way comparison lists the tests where report A and report B have different results. If a test on…
|
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/ |
D | ScannerFragment.java | 205 public void onBatchScanResults(List<ScanResult> results) { in onBatchScanResults() argument 206 super.onBatchScanResults(results); in onBatchScanResults() 208 for (ScanResult result : results) { in onBatchScanResults()
|
/development/tools/bugreport/src/com/android/bugreport/inspector/ |
D | DeadlockDetector.java | 192 final HashMap<Integer,ProcessSnapshot> results = new HashMap<Integer,ProcessSnapshot>(); in detectDeadlocks() local 211 ProcessSnapshot cloneProcess = results.get(tr.process.pid); in detectDeadlocks() 215 results.put(tr.process.pid, cloneProcess); in detectDeadlocks() 227 return new TreeSet<ProcessSnapshot>(results.values()); in detectDeadlocks()
|
/development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/ |
D | Utils.java | 177 Collection<String> results= new HashSet<String>(); in getNodes() local 181 results.add(node.getId()); in getNodes() 183 return results; in getNodes()
|
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
D | ReceiveResult.java | 88 mResults = (TextView)findViewById(R.id.results); in onCreate()
|
D | FragmentReceiveResult.java | 86 mResults = (TextView)v.findViewById(R.id.results); in onCreateView()
|
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
D | VoicemailProviderHelpers.java | 238 List<Voicemail> results = new ArrayList<Voicemail>(cursor.getCount()); in getAllVoicemails() local 247 results.add(getVoicemailFromCursor(cursor)); in getAllVoicemails() 249 return results; in getAllVoicemails()
|
/development/tools/repo_pull/ |
D | repo_pull.py | 374 results = [_do_pull_change_lists_for_project( 379 results = pool.map(_do_pull_change_lists_for_project, 384 failures = [result for result in results if result]
|
/development/samples/browseable/DataLayer/Application/src/com.example.android.wearable.datalayer/ |
D | MainActivity.java | 347 HashSet<String> results = new HashSet<>(); in getNodes() local 352 results.add(node.getId()); in getNodes() 355 return results; in getNodes()
|
/development/samples/training/multiscreen/newsreader/libs/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/development/samples/training/basic/ActivityLifecycle/libs/ |
D | android-support-v13.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/development/samples/training/basic/FragmentBasics/libs/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/development/samples/training/location-aware/libs/ |
D | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/development/samples/training/AnimationsDemo/libs/ |
D | android-support-v13.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/development/samples/SearchableDictionary/res/raw/ |
D | definitions.txt | 487 inefficient - j. not producing desired results; wasteful 655 odor - n. the sensation that results when olfactory receptors in the nose are stimulated by particu…
|