Searched defs:type (Results 1 - 25 of 508) 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:__anon1160
/frameworks/rs/cpu_ref/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
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DGenerateProgramPort.java29 Class type(); method in interface:GenerateProgramPort
/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDrawElementsInstanced.java1 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
6 int type,
11 // C function void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount )
16 int type,
3 glDrawElementsInstanced( int mode, int count, int type, java.nio.Buffer indices, int instanceCount ) argument
13 glDrawElementsInstanced( int mode, int count, int type, int indicesOffset, int instanceCount ) argument
/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/net/voip/src/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/support/v4/froyo/android/support/v4/content/
H A DContextCompatFroyo.java28 public static File getExternalFilesDir(Context context, String type) { argument
29 return context.getExternalFilesDir(type);
/frameworks/support/v4/kitkat/android/support/v4/content/
H A DContextCompatKitKat.java28 public static File[] getExternalFilesDirs(Context context, String type) { argument
29 return context.getExternalFilesDirs(type);
/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...]
/frameworks/base/core/java/android/net/
H A DNetworkConfig.java36 public int type; field in class:NetworkConfig
62 * [Connection name],[ConnectivityManager connection type],
63 * [associated radio-type],[priority],[dependencyMet]
68 type = Integer.parseInt(fragments[1]);
79 return (type == radio);
/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.java48 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/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameValue.java44 static void assertObjectBased(FrameType type) { argument
45 if (type.getElementId() != FrameType.ELEMENT_OBJECT) {
H A DGraphOutputTarget.java21 public void setType(FrameType type) { argument
22 mType = type;
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTextureBase.java44 TextureBase(int type) { argument
46 mData.type = type;

Completed in 937 milliseconds

1234567891011>>