/packages/apps/Car/Settings/tests/multivalent/ |
D | Android.bp | 23 "src/**/*.kt", 24 // Goal is have `src/**/*.java` (i.e. all tests to work w/ Robolectric) 25 "src/**/applications/*.java", 26 "src/**/applications/appinfo/*.java", 27 "src/**/applications/assist/*.java", 28 "src/**/applications/defaultapps/*.java", 29 "src/**/applications/managedomainurls/*.java", 30 "src/**/applications/performance/*.java", 31 "src/**/applications/specialaccess/*.java", 32 "src/**/profiles/AddProfilePreferenceControllerTest.java", [all …]
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/ |
D | ResizableIntArrayTests.java | 41 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY); in testNewInstance() local 42 final int[] array = src.getPrimitiveArray(); in testNewInstance() 43 assertEquals("new instance length", 0, src.getLength()); in testNewInstance() 50 final ResizableIntArray src = new ResizableIntArray(DEFAULT_CAPACITY); in testAdd() local 51 final int[] array = src.getPrimitiveArray(); in testAdd() 56 src.add(value); in testAdd() 57 assertEquals("length after add " + i, i + 1, src.getLength()); in testAdd() 59 array2 = src.getPrimitiveArray(); in testAdd() 62 array3 = src.getPrimitiveArray(); in testAdd() 65 assertSame("array after add " + i, array, src.getPrimitiveArray()); in testAdd() [all …]
|
D | InputPointersTests.java | 41 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); in testNewInstance() local 42 assertEquals("new instance size", 0, src.getPointerSize()); in testNewInstance() 43 assertNotNull("new instance xCoordinates", src.getXCoordinates()); in testNewInstance() 44 assertNotNull("new instance yCoordinates", src.getYCoordinates()); in testNewInstance() 45 assertNotNull("new instance pointerIds", src.getPointerIds()); in testNewInstance() 46 assertNotNull("new instance times", src.getTimes()); in testNewInstance() 51 final InputPointers src = new InputPointers(DEFAULT_CAPACITY); in testReset() local 52 final int[] xCoordinates = src.getXCoordinates(); in testReset() 53 final int[] yCoordinates = src.getXCoordinates(); in testReset() 54 final int[] pointerIds = src.getXCoordinates(); in testReset() [all …]
|
/packages/inputmethods/LatinIME/native/jni/ |
D | Android.bp | 27 "src/dictionary/header/header_policy.cpp", 28 "src/dictionary/header/header_read_write_utils.cpp", 29 "src/dictionary/property/ngram_context.cpp", 30 "src/dictionary/structure/dictionary_structure_with_buffer_policy_factory.cpp", 31 "src/dictionary/structure/pt_common/bigram/bigram_list_read_write_utils.cpp", 32 "src/dictionary/structure/pt_common/dynamic_pt_gc_event_listeners.cpp", 33 "src/dictionary/structure/pt_common/dynamic_pt_reading_helper.cpp", 34 "src/dictionary/structure/pt_common/dynamic_pt_reading_utils.cpp", 35 "src/dictionary/structure/pt_common/dynamic_pt_updating_helper.cpp", 36 "src/dictionary/structure/pt_common/dynamic_pt_writing_utils.cpp", [all …]
|
/packages/modules/Bluetooth/system/btif/ |
D | BUILD.gn | 31 "src/bluetooth.cc", 34 "src/btif_a2dp.cc", 36 "src/btif_a2dp_sink.cc", 37 "src/btif_a2dp_source.cc", 38 "src/btif_av.cc", 41 # "src/btif_avrcp_audio_track.cc", 42 "src/btif_avrcp_audio_track_linux.cc", 43 "src/btif_ble_scanner.cc", 44 "src/btif_bqr.cc", 45 "src/btif_csis_client.cc", [all …]
|
D | Android.bp | 57 srcs: ["src/btif_jni_task.cc"], 97 "src/bluetooth.cc", 98 "src/btif_a2dp.cc", 99 "src/btif_a2dp_sink.cc", 100 "src/btif_a2dp_source.cc", 101 "src/btif_av.cc", 102 "src/btif_ble_scanner.cc", 103 "src/btif_bqr.cc", 104 "src/btif_config.cc", 105 "src/btif_core.cc", [all …]
|
/packages/apps/Car/RotaryController/tests/unit/src/com/android/car/rotary/ |
D | FocusFinderTest.java | 38 final Rect src = new Rect(100, 100, 200, 200); in testPartiallyInDirection() local 40 assertIsPartiallyInDirection(View.FOCUS_LEFT, src, in testPartiallyInDirection() 42 assertIsPartiallyInDirection(View.FOCUS_RIGHT, src, in testPartiallyInDirection() 44 assertIsPartiallyInDirection(View.FOCUS_UP, src, in testPartiallyInDirection() 46 assertIsPartiallyInDirection(View.FOCUS_DOWN, src, in testPartiallyInDirection() 52 final Rect src = new Rect(100, 100, 200, 200); in testInDirection() local 55 assertIsInDirection(View.FOCUS_LEFT, src, new Rect(99, 100, 200, 200)); in testInDirection() 56 assertIsInDirection(View.FOCUS_RIGHT, src, new Rect(100, 99, 201, 200)); in testInDirection() 57 assertIsInDirection(View.FOCUS_UP, src, new Rect(101, 99, 199, 200)); in testInDirection() 58 assertIsInDirection(View.FOCUS_DOWN, src, new Rect(99, 100, 201, 201)); in testInDirection() [all …]
|
/packages/modules/StatsD/statsd/ |
D | Android.bp | 58 "src/active_config_list.proto", 59 "src/anomaly/AlarmMonitor.cpp", 60 "src/anomaly/AlarmTracker.cpp", 61 "src/anomaly/AnomalyTracker.cpp", 62 "src/anomaly/DurationAnomalyTracker.cpp", 63 "src/anomaly/subscriber_util.cpp", 64 "src/condition/CombinationConditionTracker.cpp", 65 "src/condition/condition_util.cpp", 66 "src/condition/ConditionWizard.cpp", 67 "src/condition/SimpleConditionTracker.cpp", [all …]
|
/packages/providers/MediaProvider/src/com/android/providers/media/util/ |
D | Memory.java | 27 public static int peekInt(byte[] src, int offset, ByteOrder order) { in peekInt() argument 29 return (((src[offset++] & 0xff) << 24) | in peekInt() 30 ((src[offset++] & 0xff) << 16) | in peekInt() 31 ((src[offset++] & 0xff) << 8) | in peekInt() 32 ((src[offset ] & 0xff) << 0)); in peekInt() 34 return (((src[offset++] & 0xff) << 0) | in peekInt() 35 ((src[offset++] & 0xff) << 8) | in peekInt() 36 ((src[offset++] & 0xff) << 16) | in peekInt() 37 ((src[offset ] & 0xff) << 24)); in peekInt() 55 public static long peekLong(byte[] src, int offset, ByteOrder order) { in peekLong() argument [all …]
|
/packages/services/Car/service/ |
D | OWNERS | 6 per-file src/com/android/car/SystemActivityMonitoringService.java = gauravbhola@google.com 7 per-file src/com/android/car/am/* = gauravbhola@google.com 8 per-file src/com/android/car/systeminterface/ActivityManagerInterface.java = gauravbhola@google.com 12 per-file src/com/android/car/audio/* = oscarazu@google.com, ericjeong@google.com 13 per-file src/com/android/car/audio/hal/* = oscarazu@google.com, ericjeong@google.com 16 per-file src/com/android/car/bluetooth/* = salsavage@google.com, chengandrew@google.com 19 per-file src/com/android/car/cluster/* = bkchoi@google.com 20 per-file src/com/android/car/hal/ClusterHalService.java = bkchoi@google.com 23 per-file src/com/android/car/CarInputService.java = kanant@google.com 24 per-file src/com/android/car/hal/InputHalService.java = kanant@google.com [all …]
|
/packages/services/Car/tests/carservice_unit_test/ |
D | OWNERS | 4 per-file src/com/android/car/am/* = gauravbhola@google.com 7 per-file src/com/android/car/AppFocusServiceTest.java = bkchoi@google.com 10 per-file src/com/android/car/audio/* = oscarazu@google.com, ericjeong@google.com 11 per-file src/com/android/car/audio/hal/* = oscarazu@google.com, ericjeong@google.com 14 per-file src/com/android/car/bluetooth/* = salsavage@google.com, chengandrew@google.com 17 per-file src/android/car/cluster/* = bkchoi@google.com 18 per-file src/com/android/car/hal/ClusterHalServiceTest.java = bkchoi@google.com 21 per-file src/android/car/builtin/input/* = kanant@google.com 22 per-file src/com/android/car/CarInput*.java = kanant@google.com 23 per-file src/com/android/car/hal/InputHalServiceTest.java = kanant@google.com [all …]
|
/packages/modules/Connectivity/tests/common/java/android/net/ |
D | DependenciesTest.java | 54 final byte[] src = new byte[size]; in makeTrivialArray() 56 src[i] = (byte) i; in makeTrivialArray() 58 return src; in makeTrivialArray() 65 final byte[] src = makeTrivialArray(size); in testArrays() 75 final byte[] copy = Arrays.copyOfRange(src, offset, offset + copySize); in testArrays() 77 assertArrayEquals(new byte[0], Arrays.copyOfRange(src, size, size)); in testArrays() 83 final byte[] src = makeTrivialArray(128); in testCopyOf() 84 final byte[] copy = Arrays.copyOf(src, src.length); in testCopyOf() 85 assertArrayEquals(src, copy); in testCopyOf() 86 assertFalse(src == copy); in testCopyOf() [all …]
|
/packages/apps/Launcher3/tests/ |
D | Android.bp | 22 name: "launcher-tests-src", 24 "src/**/*.java", 25 "src/**/*.kt", 26 "multivalentTests/src/**/*.java", 27 "multivalentTests/src/**/*.kt", 30 ":launcher-non-quickstep-tests-src", 35 name: "launcher3-robo-src", 39 "multivalentTests/src/**/*.java", 40 "multivalentTests/src/**/*.kt", 48 name: "launcher-non-quickstep-tests-src", [all …]
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
D | jpeg_hook.cpp | 90 SourceManager *src = reinterpret_cast<SourceManager*>(cinfo->src); in Mgr_fill_input_buffer_fcn() local 91 int32_t bytesRead = src->inStream->read(src->inStream->getBufferSize(), 0); in Mgr_fill_input_buffer_fcn() 93 if (src->start_of_file == TRUE) { in Mgr_fill_input_buffer_fcn() 97 bytesRead = src->inStream->forceReadEOI(); in Mgr_fill_input_buffer_fcn() 103 src->mgr.next_input_byte = reinterpret_cast<JOCTET*>(src->inStream->getBufferPtr()); in Mgr_fill_input_buffer_fcn() 104 src->mgr.bytes_in_buffer = bytesRead; in Mgr_fill_input_buffer_fcn() 106 src->start_of_file = FALSE; in Mgr_fill_input_buffer_fcn() 112 SourceManager *s = reinterpret_cast<SourceManager*>(cinfo->src); in Mgr_init_source_fcn() 123 SourceManager *src = reinterpret_cast<SourceManager*>(cinfo->src); in Mgr_skip_input_data_fcn() local 124 if (src->mgr.bytes_in_buffer >= (size_t)num_bytes) { in Mgr_skip_input_data_fcn() [all …]
|
/packages/modules/NetworkStack/common/networkstackclient/ |
D | Android.bp | 25 local_include_dir: "src", 27 "src/android/net/IIpMemoryStore.aidl", 28 "src/android/net/IIpMemoryStoreCallbacks.aidl", 29 "src/android/net/ipmemorystore/**/*.aidl", 32 "src/android/net/networkstack/aidl/quirks/IPv6ProvisioningLossQuirkParcelable.aidl", 112 local_include_dir: "src", 121 "src/android/net/DataStallReportParcelable.aidl", 122 "src/android/net/DhcpResultsParcelable.aidl", 123 "src/android/net/INetworkMonitor.aidl", 124 "src/android/net/INetworkMonitorCallbacks.aidl", [all …]
|
/packages/apps/DocumentsUI/ |
D | wrap_alpha.py | 21 for src in files: 22 if not src.endswith(".png"): continue 23 src = src[0:-4] variable 25 src_clause = '\n android:src="@drawable/%s"' % (src) 27 alpha = src.endswith("_alpha") 29 src = src[0:-6] variable 30 if "ic_doc" in src or "ic_root" in src or "ic_grid_folder" in src: 37 am = src.endswith("_am") 39 src = src[0:-3] variable 44 with open("res/drawable/%s.xml" % (src), 'w') as xml:
|
/packages/services/Car/tests/CarLibUnitTest/ |
D | Android.bp | 26 "packages/services/Car/car-lib/src", 105 "src/**/*.java", 106 "src/**/*.aidl", 110 "packages/services/Car/car-lib/src", 115 "src/android/car/admin/**/*.java", 117 "src/android/car/app/**/*.java", 119 "src/android/car/cluster/renderer/*.java", 121 "src/com/android/car/internal/util/BinderKeyValueContainerTest.java", 123 "src/com/android/car/internal/user/UserHelperUnitTest.java", 126 "src/android/car/media/CarAudioZoneConfigInfoUnitTest.java", [all …]
|
/packages/modules/HealthFitness/apk/tests/ |
D | Android.bp | 22 "src/com/android/healthconnect/controller/tests/utils/**/*.java", 23 "src/com/android/healthconnect/controller/tests/utils/**/*.kt", 24 "src/**/HiltTestRunner.kt", 25 "src/**/TestActivity.kt", 35 "src/**/HiltTestRunner.kt", 36 "src/**/TestActivity.kt", 37 "src/com/android/healthconnect/controller/tests/utils/TestConstants.kt", 38 "src/com/android/healthconnect/controller/tests/utils/ScrollingUtils.kt", 115 "src/**/safetycenter/*.kt", 143 "src/com/android/healthconnect/controller/tests/data/**/*.java", [all …]
|
/packages/apps/LegacyCamera/jni/ |
D | Android.bp | 11 "feature_stab/src", 12 "feature_stab/src/dbreg", 13 "feature_mos/src", 14 "feature_mos/src/mosaic", 37 "feature_mos/src/mosaic/trsMatrix.cpp", 38 "feature_mos/src/mosaic/AlignFeatures.cpp", 39 "feature_mos/src/mosaic/Blend.cpp", 40 "feature_mos/src/mosaic/Delaunay.cpp", 41 "feature_mos/src/mosaic/ImageUtils.cpp", 42 "feature_mos/src/mosaic/Mosaic.cpp", [all …]
|
/packages/modules/Bluetooth/service/ |
D | Android.bp | 50 "src/**/*.java", 51 "src/ActiveLog.kt", 52 "src/AdapterBinder.kt", 53 "src/AdapterState.kt", 54 "src/AutoOnFeature.kt", 55 "src/BleScanSettingListener.kt", 56 "src/BluetoothService.kt", 57 "src/Log.kt", 58 "src/RadioModeListener.kt", 59 "src/airplane/ModeListener.kt", [all …]
|
/packages/services/Car/data/etc/ |
D | Android.bp | 25 src: "com.google.android.car.garagemode.testapp.xml", 32 src: "com.google.android.car.uxr.sample.xml", 39 src: "com.google.android.car.defaultstoragemonitoringcompanionapp.xml", 47 src: "com.android.carsystemui.xml", 54 src: "android.car.cluster.loggingrenderer.xml", 61 src: "android.car.cluster.sample.xml", 68 src: "android.car.cluster.xml", 75 src: "android.car.usb.handler.xml", 82 src: "com.android.car.carlauncher.xml", 89 src: "com.android.car.dialer.xml", [all …]
|
/packages/services/Car/cpp/watchdog/stable_server/ |
D | Android.bp | 70 "src/LooperWrapper.cpp", 76 "src", 83 "src/PackageInfoResolver.cpp", 95 "src", 110 "src/AIBinderDeathRegistrationWrapper.cpp", 124 "src/IoOveruseConfigs.cpp", 125 "src/IoOveruseMonitor.cpp", 126 "src/OveruseConfigurationXmlHelper.cpp", 127 "src/PerformanceProfiler.cpp", 128 "src/PressureMonitor.cpp", [all …]
|
/packages/services/Car/cpp/watchdog/server/ |
D | Android.bp | 70 "src/LooperWrapper.cpp", 76 "src", 83 "src/PackageInfoResolver.cpp", 95 "src", 110 "src/AIBinderDeathRegistrationWrapper.cpp", 124 "src/IoOveruseConfigs.cpp", 125 "src/IoOveruseMonitor.cpp", 126 "src/OveruseConfigurationXmlHelper.cpp", 127 "src/PerformanceProfiler.cpp", 128 "src/PressureMonitor.cpp", [all …]
|
/packages/services/Car/tests/CarServiceTest/ |
D | Android.bp | 27 srcs: ["dep/src/**/*.java"], 93 "src/com/android/car/CarFeatureControllerTest.java", 94 "src/com/android/car/AppFocusTest.java", 95 "src/com/android/car/CarAppFocusManagerTest.java", 96 "src/com/android/car/CarProjectionManagerTest.java", 97 "src/com/android/car/CarVendorExtensionManagerTest.java", 98 "src/com/android/car/ICarImplTest.java", 113 "src/com/android/car/drivingstate/*.java", 128 "src/com/android/car/CarCabinManagerTest.java", 129 "src/com/android/car/CarHvacManagerTest.java", [all …]
|
/packages/services/Car/car-lib/ |
D | OWNERS | 2 per-file src/android/car/app/* = gauravbhola@google.com 5 per-file src/android/car/app/IAppFocus* = bkchoi@google.com 8 per-file src/android/car/media/CarAudio*.java = oscarazu@google.com, ericjeong@google.com 9 per-file src/android/car/media/ICarAudio.aidl = oscarazu@google.com, ericjeong@google.com 10 per-file src/android/car/media/ICarVolumeCallback.aidl = oscarazu@google.com, ericjeong@google.com 13 per-file src/android/car/cluster/* = bkchoi@google.com 16 per-file src/android/car/input/* = kanant@google.com 19 per-file src/android/car/navigation/* = bkchoi@google.com 22 per-file src/android/car/CarOccupantZoneManager.* = xiangw@google.com, oscarazu@google.com, ericjeo… 23 per-file src/android/car/ICarOccupantZone* = xiangw@google.com, oscarazu@google.com, ericjeong@goog… [all …]
|