Searched refs:type (Results 51 - 75 of 2536) sorted by relevance

1234567891011>>

/frameworks/base/services/usb/java/com/android/server/usb/descriptors/
H A DUsbASFormat.java43 public UsbASFormat(int length, byte type, byte subtype, byte formatType, int mSubclass) { argument
44 super(length, type, subtype, mSubclass);
65 * Allocates the audio-class format subtype associated with the format type read from the
69 ByteStream stream, int length, byte type,
78 return new Usb20ASFormatI(length, type, subtype, formatType, subclass);
80 return new Usb10ASFormatI(length, type, subtype, formatType, subclass);
85 return new Usb20ASFormatII(length, type, subtype, formatType, subclass);
87 return new Usb10ASFormatII(length, type, subtype, formatType, subclass);
92 return new Usb20ASFormatIII(length, type, subtype, formatType, subclass);
95 //TODO - implement this type
68 allocDescriptor(UsbDescriptorParser parser, ByteStream stream, int length, byte type, byte subtype, int subclass) argument
[all...]
/frameworks/base/tests/OneMedia/src/com/android/onemedia/playback/
H A DPlaybackError.java21 public int type; field in class:PlaybackError
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dcopy_cv_reference.h10 // Copies const, void, and reference qualifiers from type T to type U, such that
11 // the new type U' carries the same cv-reference qualifiers as T, with the same
12 // underlying type as U.
16 using R = typename std::remove_reference<T>::type;
19 typename std::add_const<U>::type, U>::type;
22 typename std::add_volatile<U1>::type, U1>::type;
25 typename std::add_lvalue_reference<U2>::type,
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDebugMessageCallback.java4 void onMessage(int source, int type, int id, int severity, String message); argument
H A DglDebugMessageCallbackKHR.java4 void onMessage(int source, int type, int id, int severity, String message); argument
H A DglGetActiveAttrib.java1 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
11 int[] type,
17 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
26 java.nio.IntBuffer type,
30 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
37 int[] type,
41 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
47 java.nio.IntBuffer type
3 glGetActiveAttrib( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
20 glGetActiveAttrib( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
32 glGetActiveAttrib( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
H A DglGetActiveUniform.java1 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
11 int[] type,
17 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
26 java.nio.IntBuffer type,
29 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
36 int[] type,
40 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
46 java.nio.IntBuffer type
3 glGetActiveUniform( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
20 glGetActiveUniform( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
31 glGetActiveUniform( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dsingle_source_ref_count.rs32 rs_type type = rsCreateType(element, dimX, dimY, dimZ);
33 if (!rsIsObject(type)) {
34 rsDebug("type is null.", type.p);
38 retValue = rsCreateAllocation(type);
55 rs_type type = rsCreateType(element, dimX, dimY, dimZ);
56 if (!rsIsObject(type)) {
57 rsDebug("type is null.", type.p);
61 return rsCreateAllocation(type);
[all...]
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DAlarmManagerCompat.java70 * execute even when the system is in low-power idle modes. This type of alarm must <b>only</b>
86 * <p>Unlike other alarms, the system is free to reschedule this type of alarm to happen
95 * @param type One of {@link AlarmManager#ELAPSED_REALTIME},
99 * off, using the appropriate clock (depending on the alarm type).
115 public static void setAndAllowWhileIdle(@NonNull AlarmManager alarmManager, int type, argument
118 alarmManager.setAndAllowWhileIdle(type, triggerAtMillis, operation);
120 alarmManager.set(type, triggerAtMillis, operation);
139 * @param type One of {@link AlarmManager#ELAPSED_REALTIME},
143 * off, using the appropriate clock (depending on the alarm type).
160 public static void setExact(@NonNull AlarmManager alarmManager, int type, lon argument
220 setExactAndAllowWhileIdle(@onNull AlarmManager alarmManager, int type, long triggerAtMillis, @NonNull PendingIntent operation) argument
[all...]
/frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/bytecode/
H A DCoreRemapper.kt19 import com.android.tools.build.jetifier.core.type.JavaType
25 fun rewriteType(type: JavaType): JavaType
H A DCoreRemapperImpl.kt19 import com.android.tools.build.jetifier.core.type.JavaType
20 import com.android.tools.build.jetifier.core.type.TypesMap
47 override fun rewriteType(type: JavaType): JavaType {
48 val result = context.typeRewriter.rewriteType(type)
50 changesDone = changesDone || result != type
54 context.reportNoMappingFoundFailure(TAG, type)
55 return type
59 val type = JavaType.fromDotVersion(value)
60 if (!context.config.isEligibleForRewrite(type)) {
64 val mappedType = context.config.typesMap.mapType(type)
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DFacetProviderAdapter.java20 * query {@link FacetProvider} for a given type within Adapter. Note that
27 * Queries {@link FacetProvider} for a given type within Adapter.
28 * @param type type of the item.
29 * @return Facet provider for the type.
31 public FacetProvider getFacetProvider(int type); argument
/frameworks/support/navigation/safe-args-generator/src/main/kotlin/androidx/navigation/safe/args/generator/
H A DNavParserErrors.kt26 fun invalidDefaultValue(value: String, type: NavType) = "Failed to parse defaultValue " +
27 "'$value' as $type"
32 fun unknownType(type: String?) = "Unknown type '$type'"
/frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
H A DQueryParameter.kt20 import javax.lang.model.type.TypeMirror
30 val type: TypeMirror,
H A DShortcutQueryParameter.kt19 import javax.lang.model.type.TypeMirror
24 data class ShortcutQueryParameter(val name: String, val type: TypeMirror,
/frameworks/ml/nn/runtime/test/generated/vts_models/
H A Dmobilenet_quantized.model.cpp6 .type = OperandType::INT32,
15 .type = OperandType::INT32,
24 .type = OperandType::INT32,
33 .type = OperandType::INT32,
42 .type = OperandType::INT32,
51 .type = OperandType::INT32,
60 .type = OperandType::INT32,
69 .type = OperandType::INT32,
78 .type = OperandType::INT32,
87 .type
[all...]
H A Dmobilenet_224_gender_basic_fixed.model.cpp6 .type = OperandType::INT32,
15 .type = OperandType::INT32,
24 .type = OperandType::INT32,
33 .type = OperandType::INT32,
42 .type = OperandType::INT32,
51 .type = OperandType::INT32,
60 .type = OperandType::INT32,
69 .type = OperandType::INT32,
78 .type = OperandType::INT32,
87 .type
[all...]
H A Dmobilenet_224_gender_basic_fixed_relaxed.model.cpp6 .type = OperandType::INT32,
15 .type = OperandType::INT32,
24 .type = OperandType::INT32,
33 .type = OperandType::INT32,
42 .type = OperandType::INT32,
51 .type = OperandType::INT32,
60 .type = OperandType::INT32,
69 .type = OperandType::INT32,
78 .type = OperandType::INT32,
87 .type
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffEntry.cpp31 * Specialize for each valid type, including sub-IFDs.
37 const sp<TiffIfd>* TiffEntry::forceValidType<sp<TiffIfd> >(TagType type, const sp<TiffIfd>* value) { argument
38 if (type == LONG) {
41 ALOGE("%s: Value of type 'ifd' is not valid for tag with TIFF type %d.",
42 __FUNCTION__, type);
47 const uint8_t* TiffEntry::forceValidType<uint8_t>(TagType type, const uint8_t* value) { argument
48 if (type == BYTE || type == ASCII || type
57 forceValidType(TagType type, const int8_t* value) argument
67 forceValidType(TagType type, const uint16_t* value) argument
77 forceValidType(TagType type, const int16_t* value) argument
87 forceValidType(TagType type, const uint32_t* value) argument
97 forceValidType(TagType type, const int32_t* value) argument
107 forceValidType(TagType type, const double* value) argument
117 forceValidType(TagType type, const float* value) argument
136 TagType type = getType(); local
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccount.java34 * Value type that represents an Account in the {@link AccountManager}. This object is
45 public final String type; field in class:Account
52 return name.equals(other.name) && type.equals(other.type);
58 result = 31 * result + type.hashCode();
62 public Account(String name, String type) { argument
63 this(name, type, null);
70 this(other.name, other.type, accessId);
76 public Account(String name, String type, String accessId) { argument
80 if (TextUtils.isEmpty(type)) {
[all...]
/frameworks/base/libs/hwui/
H A DGpuMemoryTracker.cpp92 for (int type = 0; type < NUM_TYPES; type++) {
93 const TypeStats& stats = gObjectStats[type];
94 stream << TYPE_NAMES[type];
101 int GpuMemoryTracker::getInstanceCount(GpuObjectType type) { argument
102 return gObjectStats[static_cast<int>(type)].count;
105 int GpuMemoryTracker::getTotalSize(GpuObjectType type) { argument
106 return gObjectStats[static_cast<int>(type)].totalSize;
112 for (int type
[all...]
/frameworks/base/tools/aapt2/link/
H A DPrivateAttributeMover_test.cpp44 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
45 ASSERT_NE(type, nullptr);
46 ASSERT_EQ(type->entries.size(), 2u);
47 EXPECT_NE(type->FindEntry("publicA"), nullptr);
48 EXPECT_NE(type->FindEntry("publicB"), nullptr);
50 type = package->FindType(ResourceType::kAttrPrivate);
51 ASSERT_NE(type, nullptr);
52 ASSERT_EQ(type->entries.size(), 2u);
53 EXPECT_NE(type->FindEntry("privateA"), nullptr);
54 EXPECT_NE(type
71 ResourceTableType* type = package->FindType(ResourceType::kAttr); local
[all...]
/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioCodec.java39 * The RTP payload type of the encoding.
41 public final int type; field in class:AudioCodec
84 private AudioCodec(int type, String rtpmap, String fmtp) { argument
85 this.type = type;
100 * @param type The payload type of the encoding defined in RTP/AVP.
107 public static AudioCodec getCodec(int type, String rtpmap, String fmtp) { argument
108 if (type < 0 || type > 12
[all...]
/frameworks/base/core/proto/android/os/
H A Dincident.proto59 // message type can be handled case by case, e.g. GZippedFileProto.
70 (section).type = SECTION_COMMAND,
76 (section).type = SECTION_FILE,
81 (section).type = SECTION_LOG,
86 (section).type = SECTION_LOG,
91 (section).type = SECTION_LOG,
96 (section).type = SECTION_LOG,
101 (section).type = SECTION_LOG,
106 (section).type = SECTION_LOG,
111 (section).type
[all...]

Completed in 9416 milliseconds

1234567891011>>