Searched defs:type (Results 226 - 250 of 457) sorted by relevance

1234567891011>>

/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c56 static int findEffect(const effect_uuid_t *type,
631 int findEffect(const effect_uuid_t *type, argument
647 if (type != NULL && memcmp(&d->type, type, sizeof(effect_uuid_t)) == 0) {
680 uuidToString(&desc->type, s, 256);
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp44 AudioEffect::AudioEffect(const effect_uuid_t *type, argument
54 mStatus = set(type, uuid, priority, cbf, user, sessionId, io);
67 effect_uuid_t type; local
72 ALOGV("Constructor string\n - type: %s\n - uuid: %s", typeStr, uuidStr);
75 if (stringToGuid(typeStr, &type) == NO_ERROR) {
76 pType = &type;
89 status_t AudioEffect::set(const effect_uuid_t *type, argument
101 ALOGV("set %p mUserData: %p uuid: %p timeLow %08x", this, user, type, type ? type
[all...]
/frameworks/av/media/libstagefright/
H A DNuMediaExtractor.cpp108 // at the container mime type.
192 ALOGV("track of type '%s' does not publish bitrate", mime);
247 uint32_t type; local
250 if (meta->findData(kKeyPssh, &type, &pssh, &psshsize)) {
H A DStagefrightMetadataRetriever.cpp373 uint32_t type; local
375 if (fileMeta->findData(kKeyAlbumArt, &type, &data, &dataSize)
478 uint32_t type; local
480 if (meta->findData(kKeyAlbumArt, &type, &data, &dataSize)
592 // rewrite its mime type.
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/
H A DSoftMPEG4Encoder.cpp770 OMX_U32 type = *(OMX_U32*)data; local
772 if (type != kMetadataBufferTypeGrallocSource) {
773 ALOGE("Data passed in with metadata mode does not have type "
774 "kMetadataBufferTypeGrallocSource (%d), has type %ld instead",
775 kMetadataBufferTypeGrallocSource, type);
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java206 // If there are no relevant accounts and only one relevant account type go directly to
225 setResultAndFinish(account.name, account.type);
285 // Called when the choose account type activity (for adding an account) returns.
321 + "type, pretending the request was canceled");
341 accountType = account.type;
362 protected void runAddAccountForAuthenticator(String type) { argument
364 Log.v(TAG, "runAddAccountForAuthenticator: " + type);
372 AccountManager.get(this).addAccount(type, authTokenType, requiredFeatures,
405 setResultAndFinish(account.name, account.type);
488 && !mSetOfRelevantAccountTypes.contains(account.type)) {
[all...]
/frameworks/base/core/java/android/app/
H A DMediaRouteButton.java443 public void onRouteSelected(MediaRouter router, int type, RouteInfo info) { argument
448 public void onRouteUnselected(MediaRouter router, int type, RouteInfo info) { argument
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java580 * Returns a service by UUID, instance and type.
584 int instanceId, int type) {
587 svc.getType() == type &&
583 getService(BluetoothDevice device, UUID uuid, int instanceId, int type) argument
H A DBluetoothHeadset.java104 * command type which can be one of {@link #AT_CMD_TYPE_READ},
139 * intents that contains the AT command type of the vendor-specific command.
145 * AT command type READ used with
147 * For example, AT+VGM?. There are no arguments for this command type.
152 * AT command type TEST used with
154 * For example, AT+VGM=?. There are no arguments for this command type.
159 * AT command type SET used with
166 * AT command type BASIC used with
174 * AT command type ACTION used with
804 int type) {
803 phoneStateChanged(int numActive, int numHeld, int callState, String number, int type) argument
843 clccResponse(int index, int direction, int status, int mode, boolean mpty, String number, int type) argument
[all...]
H A DBluetoothSocket.java49 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
139 * @param type type of socket
149 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
151 if (type == BluetoothSocket.TYPE_RFCOMM && uuid == null && fd == -1) {
159 mType = type;
207 * @param type type of socket
216 private BluetoothSocket(int type, in argument
[all...]
/frameworks/base/core/java/android/content/
H A DBroadcastReceiver.java250 int type, boolean ordered, boolean sticky, IBinder token, int userId) {
254 mType = type;
249 PendingResult(int resultCode, String resultData, Bundle resultExtras, int type, boolean ordered, boolean sticky, IBinder token, int userId) argument
/frameworks/base/core/java/android/net/
H A DTrafficStats.java623 private static native long nativeGetTotalStat(int type); argument
624 private static native long nativeGetIfaceStat(String iface, int type); argument
625 private static native long nativeGetUidStat(int uid, int type); argument
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java39 * typed data, such as MIME-type media, a URI, or a custom
53 * <li><em>type</em>: detailed typing for the payload</li>
60 * NDEF Records with correctly set tnf, type, id and payload fields, please
95 * Indicates the type field contains a well-known RTD type name.<p>
98 * The RTD type name format is specified in NFCForum-TS-RTD_1.0.
108 * Indicates the type field contains a media-type BNF
110 * Use this with MIME type names such as {@literal "image/jpeg"}, or
118 * Indicates the type fiel
455 createExternal(String domain, String type, byte[] data) argument
515 NdefRecord(short tnf, byte[] type, byte[] id, byte[] payload) argument
865 validateTnf(short tnf, byte[] type, byte[] id, byte[] payload) argument
[all...]
/frameworks/base/core/java/android/util/
H A DTypedValue.java47 /** Identifies the start of plain integer values. Any type value
155 /** The type held by this value, as defined by the constants here.
157 public int type; field in class:TypedValue
162 /** Basic data in the value, interpreted according to {@link #type} */
184 * whose type is {@link #TYPE_FLOAT}. */
342 * whose type is {@link #TYPE_DIMENSION}.
384 * type is {@link #TYPE_FRACTION}.
401 * Regardless of the actual type of the value, try to convert it to a
402 * string value. For example, a color type will be converted to a
406 * null or the type i
434 coerceToString(int type, int data) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DJWebCoreJavaBridge.java316 public native void setNetworkType(String type, String subtype); argument
/frameworks/base/core/java/android/widget/
H A DExpandableListConnector.java274 return PositionMetadata.obtain(pos.groupPos, pos.type,
302 if (pos.type == ExpandableListPosition.GROUP) {
304 return PositionMetadata.obtain(midExpGm.flPos, pos.type,
306 } else if (pos.type == ExpandableListPosition.CHILD) {
309 + 1, pos.type, pos.groupPos, pos.childPos,
321 if (pos.type != ExpandableListPosition.GROUP) {
347 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos,
361 return PositionMetadata.obtain(flPos, pos.type, pos.groupPos,
379 if (pos.type == ExpandableListPosition.CHILD) {
404 if (posMetadata.position.type
994 obtain(int flatListPos, int type, int groupPos, int childPos, GroupMetadata groupMetadata, int groupInsertIndex) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_database_CursorWindow.cpp55 static void throwUnknownTypeException(JNIEnv * env, jint type) { argument
57 msg.appendFormat("UNKNOWN type %d", type);
155 LOG_WINDOW("returning column type affinity for %d,%d from %p", row, column, window);
178 int32_t type = window->getFieldSlotType(fieldSlot); local
179 if (type == CursorWindow::FIELD_TYPE_BLOB || type == CursorWindow::FIELD_TYPE_STRING) {
190 } else if (type == CursorWindow::FIELD_TYPE_INTEGER) {
192 } else if (type == CursorWindow::FIELD_TYPE_FLOAT) {
194 } else if (type
213 int32_t type = window->getFieldSlotType(fieldSlot); local
305 int32_t type = window->getFieldSlotType(fieldSlot); local
344 int32_t type = window->getFieldSlotType(fieldSlot); local
375 int32_t type = window->getFieldSlotType(fieldSlot); local
[all...]
H A Dandroid_opengl_GLES10Ext.cpp45 GL_API void GL_APIENTRY glColorPointerBounds(GLint size, GLenum type, GLsizei stride,
47 GL_API void GL_APIENTRY glNormalPointerBounds(GLenum type, GLsizei stride,
49 GL_API void GL_APIENTRY glTexCoordPointerBounds(GLint size, GLenum type,
51 GL_API void GL_APIENTRY glVertexPointerBounds(GLint size, GLenum type,
53 GL_API void GL_APIENTRY glPointSizePointerOESBounds(GLenum type,
55 GL_API void GL_APIENTRY glMatrixIndexPointerOESBounds(GLint size, GLenum type,
57 GL_API void GL_APIENTRY glWeightPointerOESBounds(GLint size, GLenum type,
61 static void glVertexAttribPointerBounds(GLuint indx, GLint size, GLenum type, argument
63 glVertexAttribPointer(indx, size, type, normalized, stride, pointer);
/frameworks/base/include/androidfw/
H A DInputTransport.h51 uint32_t type; member in struct:android::InputMessage::Header
/frameworks/base/libs/hwui/
H A DLayerRenderer.cpp399 GLenum type; local
407 type = GL_UNSIGNED_BYTE;
411 type = GL_UNSIGNED_SHORT_5_6_5;
415 type = GL_UNSIGNED_SHORT_4_4_4_4;
420 type = GL_UNSIGNED_BYTE;
450 0, format, type, NULL);
482 type, bitmap->getPixels());
H A DPathCache.cpp44 type(kShapeNone),
54 PathDescription::PathDescription(ShapeType type, SkPaint* paint): argument
55 type(type),
66 uint32_t hash = JenkinsHashMix(0, type);
359 if (key.type == kShapePath &&
H A DSkiaShader.cpp72 SkiaShader::SkiaShader(Type type, SkShader* key, SkShader::TileMode tileX, argument
74 mType(type), mKey(key), mTileX(tileX), mTileY(tileY), mBlend(blend) {
313 SkiaSweepGradientShader::SkiaSweepGradientShader(Type type, float x, float y, uint32_t* colors, argument
316 SkiaShader(type, key, tileMode, tileMode, matrix, blend),
406 if (mFirst->type() == kBitmap) {
/frameworks/base/media/java/android/media/
H A DRingtoneManager.java44 * {@link #TYPE_RINGTONE} refers to the type of sounds that are suitable for the
141 * the current sound for the given default sound type. If you are showing a
142 * ringtone picker for some other type of sound, you are free to provide any
149 * Given to the ringtone picker as an int. Specifies which ringtone type(s) should be
258 * Sets which type(s) of ringtones will be listed by this.
260 * @param type The type(s), one or more of {@link #TYPE_RINGTONE},
265 public void setType(int type) { argument
272 mType = type;
273 setFilterColumnsList(type);
514 setFilterColumnsList(int type) argument
635 getActualDefaultRingtoneUri(Context context, int type) argument
652 setActualDefaultRingtoneUri(Context context, int type, Uri ringtoneUri) argument
659 getSettingForType(int type) argument
713 getDefaultUri(int type) argument
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.cpp299 jint type,
317 type,
294 Java_android_filterfw_core_ShaderProgram_setShaderAttributeVertexFrame( JNIEnv* env, jobject thiz, jstring attr_name, jobject vertex_frame, jint type, jint component_count, jint stride, jint offset, jboolean normalize) argument
/frameworks/base/tools/aidl/
H A DAST.h69 Type* type; member in struct:Variable
74 Variable(Type* type, const string& name);
75 Variable(Type* type, const string& name, int dimension);
184 Type* type; member in struct:NewExpression
187 NewExpression(Type* type);
188 NewExpression(Type* type, int argc, ...);
198 Type* type; member in struct:NewArrayExpression
201 NewArrayExpression(Type* type, Expression* size);
220 Type* type; member in struct:Cast
224 Cast(Type* type, Expressio
345 Type* type; member in struct:Class
[all...]

Completed in 512 milliseconds

1234567891011>>