Searched defs:type (Results 26 - 50 of 457) sorted by relevance

1234567891011>>

/frameworks/native/opengl/tools/glgen/stubs/gles11/
H A DglDrawElementsInstanced.cpp1 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
4 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) {
18 (GLenum)type,
27 /* void glDrawElementsInstanced ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices, GLsizei instanceCount ) */
30 (JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) {
34 (GLenum)type,
3 android_glDrawElementsInstanced__IIILjava_nio_Buffer_2I(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jobject indices_buf, jint instanceCount) argument
29 android_glDrawElementsInstanced__IIIII(JNIEnv *_env, jobject _this, jint mode, jint count, jint type, jint indicesOffset, jint instanceCount) 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 )
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
H A DglGetTransformFeedbackVarying.java1 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
11 int[] type,
17 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
25 java.nio.IntBuffer type,
29 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
36 int[] type,
40 // C function void glGetTransformFeedbackVarying ( GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLint *size, GLenum *type, GLchar *name )
46 java.nio.IntBuffer type
3 glGetTransformFeedbackVarying( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
19 glGetTransformFeedbackVarying( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
31 glGetTransformFeedbackVarying( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
/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...]
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...]
/frameworks/rs/driver/linkloader/lib/
H A DELFHeader.cpp64 char const *ELFHeaderHelperMixin::getObjectTypeStr(uint16_t type) { argument
65 switch (type) {
66 default: return "No file type";
/frameworks/rs/
H A Dspec.h15 int type; member in struct:__anon1623
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h40 downmix_type_t type; member in struct:__anon338
/frameworks/base/core/java/android/content/pm/
H A DPathPermission.java31 public PathPermission(String pattern, int type, String readPermission, argument
33 super(pattern, type);
/frameworks/base/core/java/android/text/
H A DSpanSet.java39 SpanSet(Class<? extends E> type) { argument
40 classType = type;
/frameworks/base/core/java/android/util/
H A DProperty.java26 * @param <V> The type that this property represents.
38 * optional public <code>setName()</code> method which takes a value of the same type
41 * optional public <code>setName()</code> method which takes a value of the same type
59 * A constructor that takes an identifying name and {@link #getType() type} for the property.
61 public Property(Class<V> type, String name) { argument
63 mType = type;
101 * Returns the type for this property.
/frameworks/base/drm/java/android/drm/
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/libs/hwui/
H A DResourceCache.h46 ResourceReference(ResourceType type) { argument
47 refCount = 0; recycled = false; destroyed = false; resourceType = type;
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java36 // list of data type codes (third field in quadruplet)
38 // list of long int property values (fourth field in quadruplet, when value is integer type)
40 // list of long int property values (fourth field in quadruplet, when value is string type)
53 public void append(int handle, int property, int type, long value) { argument
60 mDataTypes[index] = type;
/frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
H A DSharedStorageAgent.java66 int type, String domain, String relpath, long mode, long mtime)
93 FullBackup.restoreFile(data, size, type, -1, mtime, outFile);
65 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String relpath, long mode, long mtime) argument
/frameworks/base/services/java/com/android/server/accounts/
H A DIAccountAuthenticatorCache.java38 * @param type the authenticator type to return
40 * matches the account type or null if none is present
43 AuthenticatorDescription type, int userId);
42 getServiceInfo( AuthenticatorDescription type, int userId) argument
/frameworks/base/services/jni/
H A Dcom_android_server_AlarmManagerService.cpp68 static void android_server_AlarmManagerService_set(JNIEnv* env, jobject obj, jint fd, jint type, jlong seconds, jlong nanoseconds) argument
74 int result = ioctl(fd, ANDROID_ALARM_SET(type), &ts);
/frameworks/base/tools/aidl/
H A Dgenerate_java.cpp16 VariableFactory::Get(Type* type) argument
21 Variable* v = new Variable(type, name);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DDynamicIdMap.java44 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
47 * @param type the type of the resource
51 public Integer getId(ResourceType type, String name) { argument
52 return getId(Pair.of(type, name));
56 * Returns a dynamic integer for the given resource type/name, creating it if it doesn't
59 * @param resource the type/name of the resource
/frameworks/base/tools/preload/
H A DOperation.java45 final Type type; field in class:Operation
58 int index, Type type) {
63 this.type = type;
98 switch (type) {
125 sb.append(type.toString());
57 Operation(Proc process, LoadedClass loadedClass, long startTimeNanos, int index, Type type) argument
/frameworks/compile/mclinker/include/mcld/Fragment/
H A DRelocation.h61 /// @param pType [in] the type of the relocation entry
70 /// type - relocation type
71 Type type() const function in class:mcld::Relocation
87 /// symbol info - binding, type
113 /// m_Type - the type of the relocation entries
/frameworks/native/include/gui/
H A DDisplayEventReceiver.h50 uint32_t type; member in struct:android::DisplayEventReceiver::Event::Header
/frameworks/rs/driver/
H A DrsdVertexArray.h38 uint32_t type; member in class:RsdVertexArray::Attrib
46 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, uint32_t offset, const char *name);
/frameworks/wilhelm/src/android/
H A Dandroid_sles_conversions.h24 static inline SLuint32 android_to_sles_streamType(int type) { argument
25 return (SLuint32) type;
38 static inline int sles_to_android_streamType(SLuint32 type) { argument
39 return (int)type;

Completed in 701 milliseconds

1234567891011>>