Searched defs:type (Results 1 - 25 of 436) 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/base/media/mca/filterfw/native/core/
H A Dvalue.h30 int type; member in struct:__anon1109
/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/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/media/java/android/media/
H A DMediaCodecList.java47 getCodecCapabilities(int index, String type); argument
H A DMediaSyncEvent.java38 * A synchronization of this type requires a source audio session ID to be set via
46 * Creates a synchronization event of the sepcified type.
48 * <p>The type specifies which kind of event is monitored.
51 * @param eventType the synchronization event type.
59 + "is not a valid MediaSyncEvent type."));
95 * Gets the synchronization event type.
97 * @return the synchronization event type.
113 private static boolean isValidType(int type) { argument
114 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/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...]

Completed in 608 milliseconds

1234567891011>>