Home
last modified time | relevance | path

Searched refs:types (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/frameworks/compile/slang/tests/F_fs_types/
Dstderr.txt.expect1 fs_types.fs:4:8: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'd'
2 fs_types.fs:13:10: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'myS'
3 fs_types.fs:15:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'd'
4 fs_types.fs:16:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'e'
5 fs_types.fs:17:15: error: Builtin types > 32 bits in size are forbidden in Filterscript
6 fs_types.fs:18:7: error: Builtin types > 32 bits in size are forbidden in Filterscript
7 fs_types.fs:21:12: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'l'
8 fs_types.fs:22:10: error: Builtin types > 32 bits in size are forbidden in Filterscript: 'm'
9 fs_types.fs:23:13: error: Builtin types > 32 bits in size are forbidden in Filterscript
10 fs_types.fs:24:7: error: Builtin types > 32 bits in size are forbidden in Filterscript
[all …]
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DSaveUi.java119 final ArraySet<String> types = new ArraySet<>(3); in SaveUi() local
123 types.add(context.getString(R.string.autofill_save_type_password)); in SaveUi()
126 types.add(context.getString(R.string.autofill_save_type_address)); in SaveUi()
129 types.add(context.getString(R.string.autofill_save_type_credit_card)); in SaveUi()
132 types.add(context.getString(R.string.autofill_save_type_username)); in SaveUi()
135 types.add(context.getString(R.string.autofill_save_type_email_address)); in SaveUi()
138 switch (types.size()) { in SaveUi()
141 types.valueAt(0), providerLabel), 0); in SaveUi()
145 types.valueAt(0), types.valueAt(1), providerLabel), 0); in SaveUi()
149 types.valueAt(0), types.valueAt(1), types.valueAt(2), providerLabel), 0); in SaveUi()
/frameworks/base/core/java/android/hardware/camera2/utils/
DTypeReference.java184 private static final Class<?> getRawType(Type[] types) { in getRawType() argument
185 if (types == null) { in getRawType()
189 for (Type type : types) { in getRawType()
397 private static void toString(Type[] types, StringBuilder out) { in toString() argument
398 if (types == null) { in toString()
400 } else if (types.length == 0) { in toString()
406 for (int i = 0; i < types.length; ++i) { in toString()
407 toString(types[i], out); in toString()
408 if (i != types.length - 1) { in toString()
/frameworks/native/opengl/tools/glgen/stubs/gles11/
DglGetDebugMessageLog.java8 int[] types, in glGetDebugMessageLog() argument
24 java.nio.IntBuffer types, in glGetDebugMessageLog() argument
36 int[] types, in glGetDebugMessageLog() argument
48 java.nio.IntBuffer types, in glGetDebugMessageLog() argument
DglGetDebugMessageLogKHR.java8 int[] types, in glGetDebugMessageLogKHR() argument
24 java.nio.IntBuffer types, in glGetDebugMessageLogKHR() argument
36 int[] types, in glGetDebugMessageLogKHR() argument
48 java.nio.IntBuffer types, in glGetDebugMessageLogKHR() argument
/frameworks/hardware/interfaces/displayservice/1.0/
DAndroid.mk25 $(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal
32 android.frameworks.displayservice@1.0::types.Status
34 $(GEN): $(LOCAL_PATH)/types.hal
47 $(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal
48 $(GEN): $(LOCAL_PATH)/types.hal
123 $(GEN): PRIVATE_DEPS := $(LOCAL_PATH)/types.hal
130 android.frameworks.displayservice@1.0::types.Status
132 $(GEN): $(LOCAL_PATH)/types.hal
145 $(GEN): PRIVATE_DEPS += $(LOCAL_PATH)/types.hal
146 $(GEN): $(LOCAL_PATH)/types.hal
DAndroid.bp6 "types.hal",
21 "android/frameworks/displayservice/1.0/types.cpp",
36 "android/frameworks/displayservice/1.0/types.h",
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DApnSetting.java58 public final String[] types; field in ApnSetting
118 String user, String password, int authType, String[] types, in ApnSetting() argument
135 this.types = new String[types.length]; in ApnSetting()
137 for (int i = 0; i < types.length; i++) { in ApnSetting()
138 this.types[i] = types[i].toLowerCase(); in ApnSetting()
139 apnBitmap |= getApnBitmask(this.types[i]); in ApnSetting()
160 apn.mmsPort, apn.user, apn.password, apn.authType, apn.types, apn.protocol, in ApnSetting()
315 for (int i = 0; i < types.length; i++) { in toString()
316 sb.append(types[i]); in toString()
317 if (i < types.length - 1) { in toString()
[all …]
/frameworks/base/core/java/android/hardware/hdmi/
DHdmiControlManager.java270 int[] types = null; in HdmiControlManager() local
273 types = mService.getSupportedTypes(); in HdmiControlManager()
278 mHasTvDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_TV); in HdmiControlManager()
279 mHasPlaybackDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_PLAYBACK); in HdmiControlManager()
282 private static boolean hasDeviceType(int[] types, int type) { in hasDeviceType() argument
283 if (types == null) { in hasDeviceType()
286 for (int t : types) { in hasDeviceType()
/frameworks/base/core/java/android/net/
DNetworkCapabilities.java841 int[] types = getTransportTypes(); in toString() local
842 String transports = (types.length > 0) ? " Transports: " + transportNamesOf(types) : ""; in toString()
844 types = getCapabilities(); in toString()
845 String capabilities = (types.length > 0 ? " Capabilities: " : ""); in toString()
846 for (int i = 0; i < types.length; ) { in toString()
847 switch (types[i]) { in toString()
868 if (++i < types.length) capabilities += "&"; in toString()
887 public static String transportNamesOf(int[] types) { in transportNamesOf() argument
888 if (types == null || types.length == 0) { in transportNamesOf()
892 for (int t : types) { in transportNamesOf()
/frameworks/base/core/java/com/android/internal/app/
DMediaRouteChooserDialogFragment.java55 public void setRouteTypes(int types) { in setRouteTypes() argument
56 if (types != getRouteTypes()) { in setRouteTypes()
61 args.putInt(ARGUMENT_ROUTE_TYPES, types); in setRouteTypes()
66 dialog.setRouteTypes(types); in setRouteTypes()
DMediaRouteChooserDialog.java84 public void setRouteTypes(int types) { in setRouteTypes() argument
85 if (mRouteTypes != types) { in setRouteTypes()
86 mRouteTypes = types; in setRouteTypes()
90 mRouter.addCallback(types, mCallback, in setRouteTypes()
/frameworks/base/core/java/android/app/
DMediaRouteActionProvider.java75 public void setRouteTypes(int types) { in setRouteTypes() argument
76 if (mRouteTypes != types) { in setRouteTypes()
87 mRouteTypes = types; in setRouteTypes()
88 if (types != 0) { in setRouteTypes()
89 mRouter.addCallback(types, mCallback, in setRouteTypes()
DMediaRouteButton.java115 public void setRouteTypes(int types) { in setRouteTypes() argument
116 if (mRouteTypes != types) { in setRouteTypes()
121 mRouteTypes = types; in setRouteTypes()
123 if (mAttachedToWindow && types != 0) { in setRouteTypes()
124 mRouter.addCallback(types, mCallback, in setRouteTypes()
/frameworks/base/tests/net/java/com/android/server/connectivity/
DNetworkNotificationManagerTest.java92 List<NotificationType> types = Arrays.asList(NotificationType.values()); in testNotificationsShownAndCleared() local
93 List<Integer> ids = new ArrayList<>(types.size()); in testNotificationsShownAndCleared()
94 for (int i = 0; i < types.size(); i++) { in testNotificationsShownAndCleared()
98 Collections.shuffle(types); in testNotificationsShownAndCleared()
101 mManager.showNotification(ids.get(i), types.get(i), mWifiNai, mCellNai, null, false); in testNotificationsShownAndCleared()
112 final int eventId = types.get(i).eventId; in testNotificationsShownAndCleared()
/frameworks/compile/slang/tests/F_union/
Dstderr.txt.expect2 union.rs:9:14: error: unions containing RS object types are not allowed
3 union.rs:16:11: error: unions containing RS object types are not allowed
/frameworks/compile/slang/tests/F_refcount_15/
Dstderr.txt.expect1 refcount_15.rs:5:15: error: arrays/structures containing RS object types cannot be exported in targ…
2 refcount_15.rs:9:3: error: arrays/structures containing RS object types cannot be exported in targe…
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DIOProfile.h64 return mSupportedDevices.types() & device; in supportDevice()
66 return mSupportedDevices.types() & (device & ~AUDIO_DEVICE_BIT_IN); in supportDevice()
86 audio_devices_t getSupportedDevicesType() const { return mSupportedDevices.types(); } in getSupportedDevicesType()
/frameworks/base/media/java/android/media/
DMediaRouter.java715 static String typesToString(int types) { in typesToString() argument
717 if ((types & ROUTE_TYPE_LIVE_AUDIO) != 0) { in typesToString()
720 if ((types & ROUTE_TYPE_LIVE_VIDEO) != 0) { in typesToString()
723 if ((types & ROUTE_TYPE_REMOTE_DISPLAY) != 0) { in typesToString()
726 if ((types & ROUTE_TYPE_USER) != 0) { in typesToString()
805 public boolean isRouteAvailable(int types, int flags) { in isRouteAvailable() argument
809 if (route.matchesTypes(types)) { in isRouteAvailable()
833 public void addCallback(int types, Callback cb) { in addCallback() argument
834 addCallback(types, cb, 0); in addCallback()
853 public void addCallback(int types, Callback cb, int flags) { in addCallback() argument
[all …]
/frameworks/native/include/ui/
DHdrCapabilities.h31 HdrCapabilities(const std::vector<int32_t /*android_hdr_t*/>& types, in HdrCapabilities() argument
33 : mSupportedHdrTypes(types), in HdrCapabilities()
/frameworks/support/v7/mediarouter/jellybean-mr2/android/support/v7/media/
DMediaRouterJellybeanMr2.java27 public static void addCallback(Object routerObj, int types, Object callbackObj, int flags) { in addCallback() argument
28 ((android.media.MediaRouter)routerObj).addCallback(types, in addCallback()
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/binding/
DFakeExpandableAdapter.java56 final int repeatCount, List<ResourceReference> types, int depth) { in createItems() argument
66 int typeIndex = types.indexOf(viewRef); in createItems()
68 typeIndex = types.size(); in createItems()
69 types.add(viewRef); in createItems()
/frameworks/support/compat/java/android/support/v4/view/accessibility/
DAccessibilityEventCompat.java30 public void setContentChangeTypes(AccessibilityEvent event, int types) { in setContentChangeTypes() argument
79 public void setContentChangeTypes(AccessibilityEvent event, int types) { in setContentChangeTypes() argument
80 event.setContentChangeTypes(types); in setContentChangeTypes()
/frameworks/base/media/jni/
Dandroid_media_MediaCodecList.cpp128 Vector<AString> types; in android_media_MediaCodecList_getSupportedTypes() local
129 info->getSupportedMimes(&types); in android_media_MediaCodecList_getSupportedTypes()
134 jobjectArray array = env->NewObjectArray(types.size(), clazz, NULL); in android_media_MediaCodecList_getSupportedTypes()
136 for (size_t i = 0; i < types.size(); ++i) { in android_media_MediaCodecList_getSupportedTypes()
137 jstring obj = env->NewStringUTF(types.itemAt(i).c_str()); in android_media_MediaCodecList_getSupportedTypes()
/frameworks/hardware/interfaces/sensorservice/1.0/
DAndroid.bp6 "types.hal",
22 "android/frameworks/sensorservice/1.0/types.cpp",
38 "android/frameworks/sensorservice/1.0/types.h",

12345678910>>...12