Searched defs:type (Results 1 - 25 of 434) sorted by relevance

1234567891011>>

/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/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) {
H A DELFSectionHeader.cpp38 char const *ELFSectionHeaderHelperMixin::getSectionTypeStr(uint32_t type) { argument
39 switch (type) {
45 // General section header type
52 // ARM-specific section header type
H A DELFHeader.cpp64 char const *ELFHeaderHelperMixin::getObjectTypeStr(uint16_t type) { argument
65 switch (type) {
66 default: return "No file type";
/frameworks/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon36
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPort.java29 Class type(); method in interface:GenerateProgramPort
/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/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/opt/telephony/src/java/com/android/internal/telephony/cdma/sms/
H A DCdmaSmsSubaddress.java21 public int type; field in class:CdmaSmsSubaddress
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardPhoneNumberTranslationCallback.java34 public String onValueReceived(String rawValue, int type, String label, boolean isPrimary); argument
/frameworks/av/drm/common/
H A DIDrmServiceListener.cpp49 int type = data.readInt32(); local
52 status_t status = notify(DrmInfoEvent(uniqueId, type, message));
/frameworks/base/cmds/backup/
H A Dbackup.cpp68 int type; local
70 while (reader.ReadNextHeader(&done, &type) == 0) {
74 switch (type) {
89 printf("Unknown chunk type: 0x%08x\n", type);
/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 DIAccountAuthenticatorCache.java37 * @param type the authenticator type to return
39 * matches the account type or null if none is present
42 AuthenticatorDescription type, int userId);
41 getServiceInfo( AuthenticatorDescription type, int userId) argument
/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/base/core/java/android/webkit/
H A DCertTool.java71 static void addCertificate(Context context, String type, byte[] value) { argument
72 Credentials.getInstance().install(context, type, value);
/frameworks/base/core/java/com/android/internal/view/
H A DRootViewSurfaceTaker.java9 void setSurfaceType(int type); argument
/frameworks/base/drm/java/android/drm/
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 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...]
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTextureBase.java44 TextureBase(int type) { argument
46 mData.type = type;
/frameworks/base/tools/aidl/
H A Daidl_language_y.y94 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name.\n",
99 fprintf(stderr, "%s:%d syntax error in parcelable declaration. Expected type name, saw \"%s\".\n",
115 fprintf(stderr, "%s:%d syntax error in flattenable declaration. Expected type name.\n",
120 fprintf(stderr, "%s:%d syntax error in flattenable declaration. Expected type name, saw \"%s\".\n",
176 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
181 fprintf(stderr, "%s:%d: syntax error in interface declaration. Expected type name, saw \"%s\"\n",
210 type IDENTIFIER '(' arg_list ')' ';' {
214 method->type = $1.type;
222 method->comments_token = &method->type
275 type: label
[all...]
/frameworks/base/voip/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/compile/slang/
H A Dslang_rs_export_element.h44 RSExportPrimitiveType::DataType type; member in struct:slang::RSExportElement::__anon1293
H A Dslang_rs_metadata_spec.h32 // All ->type or ->base_type in RS*Type now becomes an index to RSType array.
46 const union RSType *type; member in struct:RSVar
/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

Completed in 674 milliseconds

1234567891011>>