Home
last modified time | relevance | path

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

12345678910>>...20

/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/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/
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/base/core/java/android/hardware/hdmi/
DHdmiControlManager.java264 int[] types = null; in HdmiControlManager() local
267 types = mService.getSupportedTypes(); in HdmiControlManager()
272 mHasTvDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_TV); in HdmiControlManager()
273 mHasPlaybackDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_PLAYBACK); in HdmiControlManager()
276 private static boolean hasDeviceType(int[] types, int type) { in hasDeviceType() argument
277 if (types == null) { in hasDeviceType()
280 for (int t : types) { in hasDeviceType()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DApnSetting.java48 public final String[] types; field in ApnSetting
101 String user, String password, int authType, String[] types, in ApnSetting() argument
117 this.types = new String[types.length]; in ApnSetting()
118 for (int i = 0; i < types.length; i++) { in ApnSetting()
119 this.types[i] = types[i].toLowerCase(Locale.ROOT); in ApnSetting()
286 for (int i = 0; i < types.length; i++) { in toString()
287 sb.append(types[i]); in toString()
288 if (i < types.length - 1) { in toString()
317 for (String t : types) { in canHandleType()
/frameworks/base/core/java/android/net/
DNetworkCapabilities.java634 int[] types = getTransportTypes(); in toString() local
635 String transports = (types.length > 0 ? " Transports: " : ""); in toString()
636 for (int i = 0; i < types.length;) { in toString()
637 switch (types[i]) { in toString()
644 if (++i < types.length) transports += "|"; in toString()
647 types = getCapabilities(); in toString()
648 String capabilities = (types.length > 0 ? " Capabilities: " : ""); in toString()
649 for (int i = 0; i < types.length; ) { in toString()
650 switch (types[i]) { in toString()
670 if (++i < types.length) capabilities += "&"; in toString()
/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.java121 public void setRouteTypes(int types) { in setRouteTypes() argument
122 if (mRouteTypes != types) { in setRouteTypes()
127 mRouteTypes = types; in setRouteTypes()
129 if (mAttachedToWindow && types != 0) { in setRouteTypes()
130 mRouter.addCallback(types, mCallback, in setRouteTypes()
/frameworks/support/v4/java/android/support/v4/view/accessibility/
DAccessibilityEventCompat.java32 void setContentChangeTypes(AccessibilityEvent event, int types); in setContentChangeTypes() argument
49 public void setContentChangeTypes(AccessibilityEvent event, int types) { in setContentChangeTypes() argument
85 public void setContentChangeTypes(AccessibilityEvent event, int types) { in setContentChangeTypes() argument
86 AccessibilityEventCompatKitKat.setContentChangeTypes(event, types); in setContentChangeTypes()
/frameworks/base/tools/aidl/
DAST.cpp75 Field::GatherTypes(set<Type*>* types) const in GatherTypes()
77 types->insert(this->variable->type); in GatherTypes()
155 Variable::GatherTypes(set<Type*>* types) const in GatherTypes()
157 types->insert(this->type); in GatherTypes()
711 Method::GatherTypes(set<Type*>* types) const in GatherTypes()
716 types->insert(this->returnType); in GatherTypes()
721 this->parameters[i]->GatherTypes(types); in GatherTypes()
726 types->insert(this->exceptions[i]); in GatherTypes()
793 Class::GatherTypes(set<Type*>* types) const in GatherTypes()
797 types->insert(this->type); in GatherTypes()
[all …]
DAST.h38 virtual void GatherTypes(set<Type*>* types) const = 0;
78 virtual void GatherTypes(set<Type*>* types) const;
107 virtual void GatherTypes(set<Type*>* types) const;
331 virtual void GatherTypes(set<Type*>* types) const;
353 virtual void GatherTypes(set<Type*>* types) const;
/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/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
DApnSettingTest.java.broken55 assertEquals(a1.types.length, a2.types.length);
57 for (i = 0; i < a1.types.length; i++) {
58 assertEquals(a1.types[i], a2.types[i]);
140 String[] types = {"default", "*"};
144 types, "IPV4V6", "IP", true, 14, 0, 0, false, 0, 0, 0, 0, "", "");
/frameworks/base/media/java/android/media/
DMediaRouter.java697 static String typesToString(int types) { in typesToString() argument
699 if ((types & ROUTE_TYPE_LIVE_AUDIO) != 0) { in typesToString()
702 if ((types & ROUTE_TYPE_LIVE_VIDEO) != 0) { in typesToString()
705 if ((types & ROUTE_TYPE_REMOTE_DISPLAY) != 0) { in typesToString()
708 if ((types & ROUTE_TYPE_USER) != 0) { in typesToString()
787 public boolean isRouteAvailable(int types, int flags) { in isRouteAvailable() argument
791 if (route.matchesTypes(types)) { in isRouteAvailable()
815 public void addCallback(int types, Callback cb) { in addCallback() argument
816 addCallback(types, cb, 0); in addCallback()
835 public void addCallback(int types, Callback cb, int flags) { in addCallback() argument
[all …]
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
DDeviceDescriptor.h73 audio_devices_t types() const { return mDeviceTypes; } in types() function
75 void loadDevicesFromType(audio_devices_t types);
79 DeviceVector getDevicesFromType(audio_devices_t types) const;
/frameworks/support/v7/mediarouter/jellybean-mr2/android/support/v7/media/
DMediaRouterJellybeanMr2.java24 public static void addCallback(Object routerObj, int types, Object callbackObj, int flags) { in addCallback() argument
25 ((android.media.MediaRouter)routerObj).addCallback(types, in addCallback()
/frameworks/support/v4/jellybean-mr2/android/support/v4/media/routing/
DMediaRouterJellybeanMr2.java24 public static void addCallback(Object routerObj, int types, Object callbackObj, int flags) { in addCallback() argument
25 ((android.media.MediaRouter)routerObj).addCallback(types, in addCallback()
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
DDeviceDescriptor.cpp132 void DeviceVector::loadDevicesFromType(audio_devices_t types) in loadDevicesFromType() argument
136 uint32_t role_bit = AUDIO_DEVICE_BIT_IN & types; in loadDevicesFromType()
137 types &= ~role_bit; in loadDevicesFromType()
139 while (types) { in loadDevicesFromType()
140 uint32_t i = 31 - __builtin_clz(types); in loadDevicesFromType()
142 types &= ~type; in loadDevicesFromType()
/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/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/support/v4/jellybean/android/support/v4/media/routing/
DMediaRouterJellybean.java71 public static void selectRoute(Object routerObj, int types, Object routeObj) { in selectRoute() argument
72 ((android.media.MediaRouter)routerObj).selectRoute(types, in selectRoute()
76 public static void addCallback(Object routerObj, int types, Object callbackObj) { in addCallback() argument
77 ((android.media.MediaRouter)routerObj).addCallback(types, in addCallback()
293 public void selectRoute(Object routerObj, int types, Object routeObj) { in selectRoute() argument
307 mSelectRouteIntMethod.invoke(router, types, route); in selectRoute()
324 router.selectRoute(types, route); in selectRoute()
/frameworks/av/services/audiopolicy/enginedefault/src/
DEngine.cpp298 uint32_t availableOutputDevicesType = availableOutputDevices.types(); in getDeviceForStrategy()
363 primaryOutput->supportedDevices() & availableOutputDevices.types(); in getDeviceForStrategy()
365 if (((availableInputDevices.types() & in getDeviceForStrategy()
492 availableOutputDevicesType = availableOutputDevices.types() & ~devices; in getDeviceForStrategy()
504 device2 = availableOutputDevices.types() & AUDIO_DEVICE_OUT_REMOTE_SUBMIX; in getDeviceForStrategy()
597 audio_devices_t availableDeviceTypes = availableInputDevices.types() & ~AUDIO_DEVICE_BIT_IN; in getDeviceForInputSource()
629 (availableOutputDevices.types() & AUDIO_DEVICE_OUT_TELEPHONY_TX) == 0) { in getDeviceForInputSource()

12345678910>>...20