Searched refs:type (Results 326 - 350 of 1111) sorted by relevance

<<11121314151617181920>>

/frameworks/native/opengl/tools/glgen/stubs/jsr239/
H A DGLCHeader.cpp48 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
50 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
52 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
54 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
56 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
58 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
60 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp159 // already got type - for example, bitcode or external OIR (object
161 if ((*input)->type() == Input::Script ||
162 (*input)->type() == Input::Archive ||
163 (*input)->type() == Input::External)
166 if (Input::Object == (*input)->type()) {
171 if (Input::DynObj == (*input)->type()) {
293 if ((*input)->type() == Input::Object && (*input)->hasMemArea()) {
420 if (ResolveInfo::Section == pInfo.type() || NULL == pInfo.outSymbol())
488 assert((*it).second.symbol().type() == Operand::SYMBOL);
490 ResolveInfo::Type type local
[all...]
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_fixup.cpp59 unsigned getBytesPerTexel(const GLenum format, const GLenum type) { argument
63 Data is read from data as a sequence of unsigned bytes or shorts, depending on type.
64 When type is GL_UNSIGNED_BYTE, each of the bytes is interpreted as one color component.
65 When type is one of GL_UNSIGNED_SHORT_5_6_5, GL_UNSIGNED_SHORT_4_4_4_4, or
78 switch (type) {
86 ALOGE("GetBytesPerPixel: unknown type %x", type);
145 // and then set the data type to be enum
198 GLenum type = arg_type.intvalue(0); local
201 int bytesPerTexel = getBytesPerTexel(format, type);
403 GLenum type; local
513 vertexAttribSize(GLenum type, GLsizei numComponents) argument
536 trace_glVertexAttribPointerData(GLTraceContext *context, GLuint indx, GLint size, GLenum type, GLboolean normalized, GLsizei stride, const GLvoid* ptr, GLuint minIndex, GLuint maxIndex, nsecs_t startTime) argument
611 findMinAndMaxIndices(GLvoid *indices, GLsizei count, GLenum type, GLuint *minIndex, GLuint *maxIndex) argument
648 GLenum type = glGetVertexAttrib(context, index, GL_VERTEX_ATTRIB_ARRAY_TYPE); local
685 GLenum type = glmsg->args(2).intvalue(0); local
727 GLenum type = glmsg->args(2).intvalue(0); local
[all...]
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java183 public static String getPhoneTypeString(Integer type) { argument
184 return sKnownPhoneTypesMap_ItoS.get(type);
188 * Returns Interger when the given types can be parsed as known type. Returns String object
196 int type = -1;
213 if (typeStringUpperCase.startsWith("X-") && type < 0) {
225 // 1. If a type isn't specified yet, we'll choose the new type candidate.
226 // 2. If the current type is default one (OTHER) or custom one, we'll
240 || type < 0
241 || type
[all...]
/frameworks/base/media/jni/
H A Dandroid_mtp_MtpDatabase.cpp162 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
163 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
384 int type = dataTypes[0]; local
403 switch (type) {
448 ALOGE("unsupported type in getObjectPropertyValue\n");
472 static bool readLongValue(int type, MtpDataPacket& packet, jlong& longValue) { argument
473 switch (type) {
523 ALOGE("unsupported type in readLongValue");
532 int type; local
534 if (!getObjectPropertyInfo(property, type))
569 int type; local
635 int type; local
696 int type = dataTypes[i]; local
909 int type; member in struct:PropertyTableEntry
947 getObjectPropertyInfo(MtpObjectProperty property, int& type) argument
959 getDevicePropertyInfo(MtpDeviceProperty property, int& type) argument
[all...]
/frameworks/base/core/java/android/net/dhcp/
H A DDhcpPacket.java74 * The code type used to identify an Ethernet MAC address in the
136 // the actual type values
218 * Allows the concrete class to fill in packet-type-specific details,
415 protected void addTlv(ByteBuffer buf, byte type, byte value) { argument
416 buf.put(type);
424 protected void addTlv(ByteBuffer buf, byte type, byte[] payload) { argument
426 buf.put(type);
435 protected void addTlv(ByteBuffer buf, byte type, InetAddress addr) { argument
437 addTlv(buf, type, addr.getAddress());
444 protected void addTlv(ByteBuffer buf, byte type, Lis argument
458 addTlv(ByteBuffer buf, byte type, Integer value) argument
469 addTlv(ByteBuffer buf, byte type, String str) argument
[all...]
/frameworks/av/services/audioflinger/
H A DEffects.cpp391 (memcmp(&mDescriptor.type, SL_IID_VISUALIZATION, sizeof(effect_uuid_t)) == 0)) {
964 mDescriptor.type.timeLow, mDescriptor.type.timeMid,
965 mDescriptor.type.timeHiAndVersion,
966 mDescriptor.type.clockSeq, mDescriptor.type.node[0], mDescriptor.type.node[1],
967 mDescriptor.type.node[2],
968 mDescriptor.type.node[3],mDescriptor.type
1386 getEffectFromType_l( const effect_uuid_t *type) argument
1587 uint32_t type = effect->desc().flags & EFFECT_FLAG_TYPE_MASK; local
1754 setEffectSuspended_l( const effect_uuid_t *type, bool suspend) argument
1886 getEffectIfEnabled( const effect_uuid_t *type) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java161 public void glColorPointer(int size, int type, int stride, Buffer pointer) { argument
163 mgl.glColorPointer(size, type, stride, pointer);
261 public void glDrawElements(int mode, int count, int type, Buffer indices) { argument
263 mgl.glDrawElements(mode, count, type, indices);
601 public void glNormalPointer(int type, int stride, Buffer pointer) { argument
603 mgl.glNormalPointer(type, stride, pointer);
664 int type, Buffer pixels) {
666 mgl.glReadPixels(x, y, width, height, format, type, pixels);
736 public void glTexCoordPointer(int size, int type, argument
739 mgl.glTexCoordPointer(size, type, strid
663 glReadPixels(int x, int y, int width, int height, int format, int type, Buffer pixels) argument
779 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
812 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
833 glVertexPointer(int size, int type, int stride, Buffer pointer) argument
985 glColorPointer(int size, int type, int stride, int offset) argument
1003 glDrawElements(int mode, int count, int type, int offset) argument
1232 glNormalPointer(int type, int stride, int offset) argument
1274 glPointSizePointerOES(int type, int stride, Buffer pointer) argument
1280 glTexCoordPointer(int size, int type, int stride, int offset) argument
1335 glVertexPointer(int size, int type, int stride, int offset) argument
1353 glMatrixIndexPointerOES(int size, int type, int stride, Buffer pointer) argument
1360 glMatrixIndexPointerOES(int size, int type, int stride, int offset) argument
1367 glWeightPointerOES(int size, int type, int stride, Buffer pointer) argument
1374 glWeightPointerOES(int size, int type, int stride, int offset) argument
[all...]
H A DGLLogWrapper.java242 private void argPointer(int size, int type, int stride, Buffer pointer) { argument
244 arg("type", getPointerTypeName(type));
607 private String getIndexType(int type) { argument
608 switch (type) {
614 return getHex(type);
913 private String getPointerTypeName(int type) { argument
914 switch (type) {
926 return getHex(type);
1026 private char[] toCharIndices(int count, int type, Buffe argument
1328 glColorPointer(int size, int type, int stride, Buffer pointer) argument
1529 glDrawElements(int mode, int count, int type, Buffer indices) argument
2146 glNormalPointer(int type, int stride, Buffer pointer) argument
2251 glReadPixels(int x, int y, int width, int height, int format, int type, Buffer pixels) argument
2385 glTexCoordPointer(int size, int type, int stride, Buffer pointer) argument
2463 glTexImage2D(int target, int level, int internalformat, int width, int height, int border, int format, int type, Buffer pixels) argument
2527 glTexSubImage2D(int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, Buffer pixels) argument
2566 glVertexPointer(int size, int type, int stride, Buffer pointer) argument
3238 glPointSizePointerOES(int type, int stride, Buffer pointer) argument
3334 glColorPointer(int size, int type, int stride, int offset) argument
3345 glDrawElements(int mode, int count, int type, int offset) argument
3365 glNormalPointer(int type, int stride, int offset) argument
3374 glTexCoordPointer(int size, int type, int stride, int offset) argument
3384 glVertexPointer(int size, int type, int stride, int offset) argument
3409 glMatrixIndexPointerOES(int size, int type, int stride, Buffer pointer) argument
3418 glMatrixIndexPointerOES(int size, int type, int stride, int offset) argument
3430 glWeightPointerOES(int size, int type, int stride, Buffer pointer) argument
3439 glWeightPointerOES(int size, int type, int stride, int offset) argument
3908 PointerInfo(int size, int type, int stride, Buffer pointer) argument
3915 sizeof(int type) argument
[all...]
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DAsmGeneratorTest.java130 // methods deleted from their return type.
200 // methods deleted from their return type.
278 // methods deleted from their return type.
383 public void visitTypeInsn(int opcode, String type) {
384 assertTrue(!getBase(type).equals(JAVA_CLASS_NAME));
385 super.visitTypeInsn(opcode, type);
399 private boolean testType(Type type) { argument
400 int sort = type.getSort();
402 assertTrue(!getBase(type.getInternalName()).equals(JAVA_CLASS_NAME));
404 assertTrue(!getBase(type
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffEntryImpl.h38 TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, const T* data);
64 TiffEntryImpl<T>::TiffEntryImpl(uint16_t tag, TagType type, uint32_t count, Endianness end, argument
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
67 count = (type == RATIONAL || type == SRATIONAL) ? count * 2 : count;
/frameworks/base/cmds/idmap/
H A Dscan.cpp129 ResXMLParser::event_code_t type; local
131 type = parser.next();
132 if (type == ResXMLParser::START_TAG) {
139 } while (type != ResXMLParser::BAD_DOCUMENT && type != ResXMLParser::END_DOCUMENT);
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraMetadata.java62 * type to the key.
114 * {@code type}.
128 Class<?> type, Class<TKey> keyClass,
132 if (VERBOSE) Log.v(TAG, "getKeysStatic for " + type);
135 if (type.equals(TotalCaptureResult.class)) {
136 type = CaptureResult.class;
145 Field[] fields = type.getDeclaredFields();
196 throw new IllegalArgumentException("key type must be that of a metadata key");
1270 * <p>This request is for a still capture-type
127 getKeysStatic( Class<?> type, Class<TKey> keyClass, CameraMetadata<TKey> instance, int[] filterTags) argument
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java453 int type;
454 while ((type = parser.next()) != XmlPullParser.START_TAG &&
455 type != XmlPullParser.END_DOCUMENT) {
459 if (type != XmlPullParser.START_TAG) {
783 int type;
785 while (((type = parser.next()) != XmlPullParser.END_TAG ||
786 parser.getDepth() > depth) && type != XmlPullParser.END_DOCUMENT) {
788 if (type != XmlPullParser.START_TAG) {
823 int type;
826 while (((type
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DZenLog.java128 private static String typeToString(int type) { argument
129 switch (type) {
169 private static void append(int type, String msg) { argument
172 TYPES[sNext] = type;
179 if (DEBUG) Slog.d(TAG, typeToString(type) + ": " + msg);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageSignatures.java92 int type;
93 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
94 && (type != XmlPullParser.END_TAG
96 if (type == XmlPullParser.END_TAG
97 || type == XmlPullParser.TEXT) {
/frameworks/base/media/java/android/media/tv/
H A DTvInputManager.java239 * This is called when a track for a given type is selected.
242 * @param type The type of the selected track. The type can be
246 * track for a given type should be unselected.
248 public void onTrackSelected(Session session, int type, String trackId) { argument
324 * @param eventType The type of the event.
381 void postTrackSelected(final int type, final String trackId) { argument
385 mSessionCallback.onTrackSelected(mSession, type, trackId);
629 public void onTrackSelected(int type, Strin
1369 selectTrack(int type, String trackId) argument
1418 getTracks(int type) argument
1447 getSelectedTrack(int type) argument
1487 updateTrackSelection(int type, String trackId) argument
[all...]
H A DTvInputHardwareInfo.java103 b.append(", type=").append(mType);
155 public Builder type(int type) { argument
156 mType = type;
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86Relocator.cpp159 unsigned int type; member in struct:X86_32ApplyFunctionTriple
197 // Scan relocation type to determine if the GOT/PLT/Dynamic Relocation
231 if (ResolveInfo::ThreadLocal == pSym.type())
263 (ResolveInfo::Type)pSym.type(),
281 (ResolveInfo::Type)alias->type(),
306 Relocation::Type type = pRelocation.type(); local
308 if (type >= sizeof (X86_32ApplyFunctions) / sizeof (X86_32ApplyFunctions[0]) ) {
313 return X86_32ApplyFunctions[type].func(pRelocation, *this);
329 switch (pReloc.type()) {
1276 unsigned int type; member in struct:X86_64ApplyFunctionTriple
1297 Relocation::Type type = pRelocation.type(); local
[all...]
/frameworks/av/include/media/stagefright/foundation/
H A DAMessage.h114 const char *getEntryNameAt(size_t index, Type *type) const;
153 const Item *findItem(const char *name, Type type) const;
156 const char *name, const sp<RefBase> &obj, Type type);
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionServiceInfo.java78 int type;
79 while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
80 && type != XmlPullParser.START_TAG) {
/frameworks/base/include/androidfw/
H A DCursorWindow.h46 * FieldSlot per column, which has the size, offset, and type of the data for that field.
65 /* Opaque type that describes a field slot. */
68 int32_t type; member in struct:android::CursorWindow::FieldSlot
117 return fieldSlot->type;
188 const void* value, size_t size, int32_t type);
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java48 * framework if no instance of the same effect type exists in the specified audio session.
66 // effect type UUIDs are taken from hardware/libhardware/include/hardware/audio_effect.h
128 * Null effect UUID. Used when the UUID for effect type of
201 * <li>type: UUID identifying the effect type. May be one of:
221 * @param type UUID identifying the effect type. May be one of:
233 public Descriptor(String type, String uuid, String connectMode, argument
235 this.type = UUID.fromString(type);
252 public UUID type; field in class:AudioEffect.Descriptor
390 AudioEffect(UUID type, UUID uuid, int priority, int audioSession) argument
484 isEffectTypeAvailable(UUID type) argument
1219 native_setup(Object audioeffect_this, String type, String uuid, int priority, int audioSession, int[] id, Object[] desc) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifParser.java340 return mImageEvent.type;
420 * tag will have already been read except for tags of undefined type. For
421 * tags of undefined type, call one of the read methods to get the value.
541 // Some invalid image file contains invalid data type. Ignore those tags
543 Log.w(TAG, String.format("Tag %04x: Invalid data type %d", tagId, dataFormat));
647 short type = tag.getDataType();
648 if (type == ExifTag.TYPE_ASCII || type == ExifTag.TYPE_UNDEFINED ||
649 type == ExifTag.TYPE_UNSIGNED_BYTE) {
814 * reading values of type {
877 int type; field in class:ExifParser.ImageEvent
879 ImageEvent(int type) argument
884 ImageEvent(int type, int stripIndex) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrameImage2D.java116 private static Bitmap convertToFrameType(Bitmap bitmap, FrameType type) { argument
119 switch(type.getElementId()) {
124 throw new RuntimeException("Could not convert bitmap to frame-type " +
130 throw new IllegalArgumentException("Unsupported frame type '" + type + "' for " +

Completed in 341 milliseconds

<<11121314151617181920>>