Searched refs:types (Results 1 - 25 of 44) sorted by relevance

12

/packages/apps/Contacts/tests/src/com/android/contacts/tests/
H A DFakeDeviceAccountTypeFactory.java46 public FakeDeviceAccountTypeFactory withSimTypes(String... types) { argument
47 for (String type : types) {
53 public FakeDeviceAccountTypeFactory withSimTypes(AccountType... types) { argument
54 for (AccountType type : types) {
60 public FakeDeviceAccountTypeFactory withDeviceTypes(String... types) { argument
61 for (String type : types) {
67 public FakeDeviceAccountTypeFactory withDeviceTypes(AccountType... types) { argument
68 for (AccountType type : types) {
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DJniCallbacks.java53 void devicePropertyChangedCallback(byte[] address, int[] types, byte[][] val) { argument
54 mRemoteDevices.devicePropertyChangedCallback(address, types, val);
81 void adapterPropertyChangedCallback(int[] types, byte[][] val) { argument
82 mAdapterProperties.adapterPropertyChangedCallback(types, val);
/packages/services/Car/evs/sampleDriver/
H A DbufferCopy.h20 #include <android/hardware/automotive/evs/1.0/types.h>
H A DGlWrapper.h31 #include <android/hardware/automotive/evs/1.0/types.h>
H A DEvsV4lCamera.h20 #include <android/hardware/automotive/evs/1.0/types.h>
/packages/apps/Dialer/java/com/android/incallui/calllocation/impl/
H A DReverseGeocodeTask.java38 private static final String JSON_KEY_TYPES = "types";
81 JSONArray types = component.optJSONArray(JSON_KEY_TYPES);
82 if (types != null) {
83 for (int j = 0; !stripped && j < types.length(); j++) {
84 if (JSON_KEY_PREMISE.equals(types.getString(j))) {
/packages/apps/TV/jni/minijail/
H A Dminijail.cpp19 #include <sys/types.h>
/packages/apps/Test/connectivity/sl4n/
H A DAndroid.mk46 libbluetooth-types \
/packages/services/Car/libvehiclenetwork/libvehiclenetwork-audio-helper/include/
H A Dvehicle-network-audio-helper-for-c.h22 #include <sys/types.h>
H A DVehicleNetworkAudioHelper.h21 #include <sys/types.h>
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
H A DMockAccountTypeManager.java41 public MockAccountTypeManager(AccountType[] types, AccountWithDataSet[] accounts) { argument
42 this.mTypes = types;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DGestureStrokeDrawingPoints.java90 * @param types the point types array of gesture trail. This is valid only when
95 final ResizableIntArray types) {
104 types.fill(GestureTrailDrawingPoints.POINT_TYPE_SAMPLED, types.getLength(), length);
120 * @param types the point types array of gesture trail. This is valid only when
126 final ResizableIntArray yCoords, final ResizableIntArray types) {
164 types.addAt(d1, GestureTrailDrawingPoints.POINT_TYPE_INTERPOLATED);
172 types
93 appendPreviewStroke(final ResizableIntArray eventTimes, final ResizableIntArray xCoords, final ResizableIntArray yCoords, final ResizableIntArray types) argument
124 interpolateStrokeAndReturnStartIndexOfLastSegment(final int lastInterpolatedIndex, final ResizableIntArray eventTimes, final ResizableIntArray xCoords, final ResizableIntArray yCoords, final ResizableIntArray types) argument
[all...]
/packages/apps/Messaging/jni/
H A DGifTranscoder.h20 #include <sys/types.h>
/packages/apps/Nfc/nci/jni/extns/pn54x/inc/
H A DphNxpExtns.h21 #include <sys/types.h>
H A DphNxpExtns_Custom.h21 #include <sys/types.h>
/packages/services/Car/evs/manager/
H A DHalCamera.h20 #include <android/hardware/automotive/evs/1.0/types.h>
H A DVirtualCamera.h20 #include <android/hardware/automotive/evs/1.0/types.h>
/packages/apps/TV/jni/
H A DDvbManager.cpp260 const char *types; local
263 types = "DVB-S";
266 types = "DVB-C";
269 types = "DVB-T";
272 types = "ATSC";
275 types = "Unknown";
277 ALOGI("Using frontend \"%s\", type %s", info.name, types);
/packages/apps/Contacts/src/com/android/contacts/model/account/
H A DAccountTypeProvider.java77 * Returns all account types associated with the provided type
95 List<AccountType> types = mCache.get(accountType);
96 if (types == null) {
97 types = loadTypes(accountType);
98 mCache.put(accountType, types);
100 return types;
193 // Skip external account types that couldn't be initialized
211 // Skip external account types that couldn't be initialized.
/packages/apps/Contacts/tests/src/com/android/contacts/model/
H A DAccountTypeManagerTest.java75 private static Map<AccountTypeWithDataSet, AccountType> buildAccountTypes(AccountType... types) { argument
77 for (AccountType type : types) {
/packages/apps/DocumentsUI/tests/unit/com/android/documentsui/sorting/
H A DSortingCursorWrapperTest.java413 List<String> types = new ArrayList<>(ITEM_COUNT);
419 types.add(type);
427 final String lhs = types.get(i);
428 final String rhs = types.get(i + 1);
445 List<String> types = new ArrayList<>(ITEM_COUNT);
451 types.add(type);
459 final String lhs = types.get(i);
460 final String rhs = types.get(i + 1);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
H A DCompatUtils.java68 final Class<?> ... types) {
69 if (targetClass == null || types == null) {
73 return targetClass.getConstructor(types);
67 getConstructor(final Class<?> targetClass, final Class<?> ... types) argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactLookupKeyTest.java224 private void assertLookupKey(String lookupKey, int[] accountHashCodes, int[] types, argument
228 assertEquals(types.length, list.size());
233 assertEquals(types[i], segment.lookupType);
/packages/services/Mms/src/com/android/mms/service/
H A DApnSettings.java204 private static boolean isValidApnType(String types, String requestType) { argument
206 if (TextUtils.isEmpty(types)) {
209 for (String type : types.split(",")) {
/packages/services/Car/tools/emulator/
H A Dvhal_emulator_test.py295 def __init__(self, types, logLevel=20):
296 self._types = types
302 self._vhal = vhal_emulator.Vhal(types)

Completed in 715 milliseconds

12