Searched refs:type (Results 1 - 25 of 750) sorted by relevance

1234567891011>>

/frameworks/base/drm/java/android/drm/
H A DDrmInfoEvent.java28 // Please add newly defined type constants to the end of the list,
57 // Add more type constants here...
60 // We may want to add a user-defined type constant, such as
68 * @param type Type of the event. Must be any of the event types defined above,
72 public DrmInfoEvent(int uniqueId, int type, String message) { argument
73 super(uniqueId, type, message);
74 checkTypeValidity(type);
81 * @param type Type of the event. Must be any of the event types defined above,
87 public DrmInfoEvent(int uniqueId, int type, String message, argument
89 super(uniqueId, type, messag
98 checkTypeValidity(int type) argument
[all...]
H A DDrmErrorEvent.java28 // Please add newly defined type constants to the end of the list,
67 // Add more type constants here...
70 // We may want to add a user-defined type constant, such as
79 * @param type Type of the event. Must be any of the event types defined above.
82 public DrmErrorEvent(int uniqueId, int type, String message) { argument
83 super(uniqueId, type, message);
84 checkTypeValidity(type);
91 * @param type Type of the event. Must be any of the event types defined above.
96 public DrmErrorEvent(int uniqueId, int type, String message, argument
98 super(uniqueId, type, messag
102 checkTypeValidity(int type) argument
[all...]
H A DDrmEvent.java27 // Please do not add type constants in this class. More event type constants
58 * @param type Type of information.
62 protected DrmEvent(int uniqueId, int type, String message, argument
65 mType = type;
80 * @param type Type of information.
83 protected DrmEvent(int uniqueId, int type, String message) { argument
85 mType = type;
102 * Retrieves the type of information that is associated with this object.
104 * @return The type o
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DTonesAutoTest.java37 int type;
42 for (type = ToneGenerator.TONE_DTMF_0; type <= ToneGenerator.TONE_DTMF_D; type++) {
43 if (toneGen.startTone(type)) {
61 int type;
66 for (type = ToneGenerator.TONE_SUP_DIAL;
67 type <= ToneGenerator.TONE_SUP_RINGTONE; type++) {
68 if (toneGen.startTone(type)) {
[all...]
/frameworks/base/voip/jni/rtp/
H A DAudioCodec.cpp41 AudioCodecType *type = gAudioCodecTypes; local
42 while (type->name != NULL) {
43 if (strcasecmp(codecName, type->name) == 0) {
44 AudioCodec *codec = type->create();
45 codec->name = type->name;
48 ++type;
/frameworks/base/voip/java/android/net/rtp/
H A DAudioStream.java116 * @throws IllegalArgumentException if its type is used by DTMF.
123 if (codec.type == mDtmfType) {
124 throw new IllegalArgumentException("The type is used by DTMF");
130 * Returns the RTP payload type for dual-tone multi-frequency (DTMF) digits,
140 * Sets the RTP payload type for dual-tone multi-frequency (DTMF) digits.
143 * RTP payload type for DTMF is assigned dynamically, so it must be in the
145 * the previous assigned type. This method cannot be called when the stream
148 * @param type The RTP payload type to be used or {@code -1} to disable it.
149 * @throws IllegalArgumentException if the type i
153 setDtmfType(int type) argument
[all...]
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/java/android/content/pm/
H A DRegisteredServicesCacheListener.java26 * @param type the type of registered service
29 void onServiceChanged(V type, int userId, boolean removed); argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsSubaddress.java21 public int type; field in class:CdmaSmsSubaddress
/frameworks/base/core/java/android/accounts/
H A DAccount.java24 * Value type that represents an Account in the {@link AccountManager}. This object is
30 public final String type; field in class:Account
36 return name.equals(other.name) && type.equals(other.type);
42 result = 31 * result + type.hashCode();
46 public Account(String name, String type) { argument
50 if (TextUtils.isEmpty(type)) {
51 throw new IllegalArgumentException("the type must not be empty: " + type);
54 this.type
[all...]
H A DAuthenticatorDescription.java23 * A {@link Parcelable} value type that contains information about an account authenticator.
27 final public String type; field in class:AuthenticatorDescription
51 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
53 if (type == null) throw new IllegalArgumentException("type cannot be null");
55 this.type = type;
64 public AuthenticatorDescription(String type, String packageName, int labelId, int iconId, argument
66 this(type, packageName, labelId, iconId, smallIconId, prefId, false);
71 * to identify the authenticator by its type
74 newKey(String type) argument
79 AuthenticatorDescription(String type) argument
[all...]
/frameworks/base/core/java/android/ddm/
H A DDdmHandleNativeHeap.java30 public static final int CHUNK_NHGT = type("NHGT");
61 Log.i("ddm-nativeheap", "Handling " + name(request.type) + " chunk");
62 int type = request.type;
64 if (type == CHUNK_NHGT) {
68 + ChunkHandler.name(type));
83 return new Chunk(ChunkHandler.type("NHGT"), data, 0, data.length);
/frameworks/base/core/java/android/app/
H A DIAlarmManager.aidl27 void set(int type, long triggerAtTime, in PendingIntent operation);
28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
/frameworks/compile/linkloader/lib/
H A DELFSymbol.cpp21 ELFSymbolHelperMixin::getTypeStr(uint8_t type) { argument
22 switch (type) {
45 ELFSymbolHelperMixin::getBindingAttributeStr(uint8_t type) { argument
46 switch (type) {
64 ELFSymbolHelperMixin::getVisibilityStr(uint8_t type) { argument
65 switch (type) {
/frameworks/base/media/mca/filterfw/java/android/filterfw/format/
H A DObjectFormat.java68 + "native object-based frame of type " + clazz + "! Perhaps it is missing a "
76 private static Class getBoxedClass(Class type) { argument
77 // Check if type is primitive
78 if (type.isPrimitive()) {
80 if (type == boolean.class) {
82 } else if (type == byte.class) {
84 } else if (type == char.class) {
86 } else if (type == short.class) {
88 } else if (type == int.class) {
90 } else if (type
[all...]
/frameworks/native/opengl/tools/glgen/stubs/gles11/
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 )
25 java.nio.IntBuffer type,
29 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
36 int[] type,
40 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
46 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
19 glGetActiveAttrib( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
31 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 )
25 java.nio.IntBuffer type,
28 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
35 int[] type,
39 // C function void glGetActiveUniform ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
45 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
19 glGetActiveUniform( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
30 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/native/opengl/libs/GLES_CM/
H A Dgl.cpp42 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
44 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
46 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
48 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
50 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
52 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
54 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
58 void glColorPointerBounds(GLint size, GLenum type, GLsizei stride, argument
60 glColorPointer(size, type, stride, ptr);
62 void glNormalPointerBounds(GLenum type, GLsize argument
66 glTexCoordPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
70 glVertexPointerBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
75 glPointSizePointerOESBounds(GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
80 glMatrixIndexPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
85 glWeightPointerOESBounds(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer, GLsizei count) argument
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dcal_dc_scaler.cpp23 [input_variable_name] = [description of the input to module, its type
27 [local_store_name] = [description of the local store, its type
29 [local_buffer_name] = [description of the local buffer, its type
31 [local_ptr_name] = [description of the local pointer, its type
35 [global_store_name] = [description of the global store, its type
37 [global_buffer_name] = [description of the global buffer, its type
39 [global_ptr_name] = [description of the global pointer, its type
44 by module, its type definition, and length
49 variable_bfr_ptr points to, its type definition, and length
55 [local_store_name] = [describe new contents, its type
150 cal_dc_scaler( int QP, int type) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DExpandableListPosition.java35 * This data type represents a child position
40 * This data type represents a group position
62 * What type of position this ExpandableListPosition represents
64 public int type; field in class:ExpandableListPosition
70 type = 0;
77 if (type == CHILD) return ExpandableListView.getPackedPositionForChild(groupPos, childPos);
98 elp.type = CHILD;
101 elp.type = GROUP;
106 static ExpandableListPosition obtain(int type, int groupPos, int childPos, int flatListPos) { argument
108 elp.type
[all...]
/frameworks/base/core/java/android/content/res/
H A DTypedArray.java92 final int type = data[index+AssetManager.STYLE_TYPE];
93 if (type == TypedValue.TYPE_NULL) {
95 } else if (type == TypedValue.TYPE_STRING) {
104 Log.w(Resources.TAG, "getString of bad type: 0x"
105 + Integer.toHexString(type));
120 final int type = data[index+AssetManager.STYLE_TYPE];
121 if (type == TypedValue.TYPE_NULL) {
123 } else if (type == TypedValue.TYPE_STRING) {
133 Log.w(Resources.TAG, "getString of bad type: 0x"
134 + Integer.toHexString(type));
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkConfig.java35 public int type; field in class:NetworkConfig
61 * [Connection name],[ConnectivityManager connection type],
62 * [associated radio-type],[priority],[dependencyMet]
67 type = Integer.parseInt(fragments[1]);
78 return (type == radio);
/frameworks/av/libvideoeditor/vss/stagefrightshells/inc/
H A DVideoEditorUtils.h70 * SAFE_MALLOC(p, type, count, comment)
75 #define SAFE_MALLOC(p, type, count, comment) \
77 (p) = (type*)M4OSA_32bitAlignedMalloc(sizeof(type)*(count), 0xFF,(M4OSA_Char*)comment);\
79 memset((void *)(p), 0,sizeof(type)*(count)); \
/frameworks/base/media/java/android/media/videoeditor/
H A DEffectColor.java61 * The effect type
71 * An object of this type cannot be instantiated by using the default
87 * @param type type of the effect. type is one of: TYPE_COLOR,
89 * @param color If type is TYPE_COLOR, color is the RGB color as 888.
90 * If type is TYPE_GRADIENT, color is the RGB color at the
94 long durationMs, int type, int color) {
96 switch (type) {
119 throw new IllegalArgumentException("Invalid type
93 EffectColor(MediaItem mediaItem, String effectId, long startTimeMs, long durationMs, int type, int color) argument
[all...]

Completed in 1439 milliseconds

1234567891011>>