Searched refs:types (Results 51 - 75 of 437) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/utils/
H A DTypeReference.java29 * Super type token; allows capturing generic types at runtime by forcing them to be reified.
41 * dynamic types must equal to the static types.</p>
184 private static final Class<?> getRawType(Type[] types) { argument
185 if (types == null) {
189 for (Type type : types) {
244 // Note that this comparison could inaccurately return true when comparing types
397 private static void toString(Type[] types, StringBuilder out) { argument
398 if (types == null) {
400 } else if (types
[all...]
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiControlManager.java34 * can host more than one logical CEC devices. If multiple types are configured they
265 int[] types = null;
268 types = mService.getSupportedTypes();
273 mHasTvDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_TV);
274 mHasPlaybackDevice = hasDeviceType(types, HdmiDeviceInfo.DEVICE_PLAYBACK);
277 private static boolean hasDeviceType(int[] types, int type) { argument
278 if (types == null) {
281 for (int t : types) {
/frameworks/base/core/java/android/net/
H A DNetworkCapabilities.java811 int[] types = getTransportTypes();
812 String transports = (types.length > 0) ? " Transports: " + transportNamesOf(types) : "";
814 types = getCapabilities();
815 String capabilities = (types.length > 0 ? " Capabilities: " : "");
816 for (int i = 0; i < types.length; ) {
817 switch (types[i]) {
837 if (++i < types.length) capabilities += "&";
856 public static String transportNamesOf(int[] types) { argument
858 for (int i = 0; i < types
[all...]
/frameworks/av/include/media/
H A DIAudioTrack.h21 #include <sys/types.h>
H A DIRemoteDisplayClient.h21 #include <sys/types.h>
/frameworks/av/include/media/stagefright/
H A DMediaSource.h21 #include <sys/types.h>
/frameworks/av/media/libstagefright/foundation/
H A DAAtomizer.cpp17 #include <sys/types.h>
/frameworks/av/media/mtp/
H A DMtpEventPacket.cpp20 #include <sys/types.h>
H A DMtpRequestPacket.cpp20 #include <sys/types.h>
/frameworks/base/libs/hwui/thread/
H A DSignal.h21 #include <sys/types.h>
/frameworks/native/include/batteryservice/
H A DBatteryService.h21 #include <sys/types.h>
/frameworks/native/include/binder/
H A DMemoryDealer.h22 #include <sys/types.h>
/frameworks/native/include/gui/
H A DIConsumerListener.h21 #include <sys/types.h>
H A DIGraphicBufferAlloc.h21 #include <sys/types.h>
H A DISensorEventConnection.h21 #include <sys/types.h>
H A DISensorServer.h21 #include <sys/types.h>
/frameworks/native/libs/input/
H A DIInputFlinger.cpp18 #include <sys/types.h>
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DPowerHAL.cpp18 #include <sys/types.h>
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DGLExtensions.h21 #include <sys/types.h>
/frameworks/base/tools/aapt2/compile/
H A DIdAssigner.cpp42 for (auto& type : package->types) {
97 for (auto& type : package->types) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DApnSetting.java59 public final String[] types; field in class:ApnSetting
116 * Metered APN types which would be accounted for in data usage. This is a map of subId ->
122 * Metered Roaming APN types which would be accounted for in data usage. This is a map of
130 String user, String password, int authType, String[] types,
146 this.types = new String[types.length];
147 for (int i = 0; i < types.length; i++) {
148 this.types[i] = types[i].toLowerCase(Locale.ROOT);
168 apn.mmsPort, apn.user, apn.password, apn.authType, apn.types, ap
127 ApnSetting(int id, String numeric, String carrier, String apn, String proxy, String port, String mmsc, String mmsProxy, String mmsPort, String user, String password, int authType, String[] types, String protocol, String roamingProtocol, boolean carrierEnabled, int bearer, int bearerBitmask, int profileId, boolean modemCognitive, int maxConns, int waitTime, int maxConnsTime, int mtu, String mvnoType, String mvnoMatchData) argument
[all...]
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DDeviceDescriptor.h77 audio_devices_t types() const { return mDeviceTypes; } function in class:android::DeviceVector
80 DeviceVector getDevicesFromType(audio_devices_t types) const;
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java88 String[] types = {
106 types[node.getNodeType()],
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DRecommendationExtender.java133 * Sets the content types associated with the notification content. The first tag entry will be
137 * @param types Array of predefined type tags (see the <code>CONTENT_TYPE_*</code> constants)
140 public RecommendationExtender setContentTypes(String[] types) { argument
141 mTypes = types;
146 * Returns an array containing the content types that describe the content associated with the
/frameworks/wilhelm/src/android/
H A DBufferQueueSource.cpp23 #include <sys/types.h>
25 #include <sys/types.h>

Completed in 1779 milliseconds

1234567891011>>