Searched refs:type (Results 276 - 300 of 749) sorted by relevance

<<11121314151617181920>>

/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter2.java54 * the methods to be overridden here. The methods have the same return type.
55 * The argument type list is the same except the "this" reference is passed first
84 /** The original method descriptor (return type + argument types.) */
149 * All the parameters must be passed and then the eventual return type returned.
218 outerType.getDescriptor()); // type of the field
243 // we pushed on the call stack. The return type remains unchanged.
363 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
365 mOrgWriter.visitTryCatchBlock(start, end, handler, type);
384 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
386 mOrgWriter.visitFrame(type, nLoca
448 visitTypeInsn(int opcode, String type) argument
[all...]
H A DStubMethodAdapter.java28 * a stub depending on the return type. Original annotations are passed along unchanged.
37 /** The method return type. Can be null. */
153 /* Pops the stack, depending on the return type.
278 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { argument
280 mParentVisitor.visitTryCatchBlock(start, end, handler, type);
299 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
301 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
363 public void visitTypeInsn(int opcode, String type) { argument
365 mParentVisitor.visitTypeInsn(opcode, type);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DDataConnectionTracker.java104 /* Currently requested APN type (TODO: This should probably be a parameter not a member) */
490 public boolean isApnTypeActive(String type) { argument
492 if (PhoneConstants.APN_TYPE_DUN.equals(type)) {
498 return mActiveApn != null && mActiveApn.canHandleType(type);
580 protected abstract boolean isApnTypeAvailable(String type); argument
739 protected int apnTypeToId(String type) { argument
740 if (TextUtils.equals(type, PhoneConstants.APN_TYPE_DEFAULT)) {
742 } else if (TextUtils.equals(type, PhoneConstants.APN_TYPE_MMS)) {
744 } else if (TextUtils.equals(type, PhoneConstants.APN_TYPE_SUPL)) {
746 } else if (TextUtils.equals(type, PhoneConstant
881 enableApnType(String type) argument
919 disableApnType(String type) argument
[all...]
/frameworks/rs/driver/
H A DrsdAllocation.cpp121 for (uint32_t lod = 0; lod < alloc->mHal.state.type->getLODCount(); lod++) {
131 alloc->mHal.state.type->getLODDimX(lod),
132 alloc->mHal.state.type->getLODDimY(lod),
136 alloc->mHal.state.type->getLODDimX(lod),
137 alloc->mHal.state.type->getLODDimY(lod),
212 rsAssert(!alloc->mHal.state.type->getDimY());
213 rsAssert(!alloc->mHal.state.type->getDimZ());
226 RSD_CALL_GL(glBufferData, drv->glTarget, alloc->mHal.state.type->getSizeBytes(),
233 const Type *type, uint8_t *ptr) {
237 drv->lod[0].dimX = type
232 AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, const Type *type, uint8_t *ptr) argument
[all...]
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL11.java197 int type,
216 int type,
429 int type,
467 int type,
474 int type,
545 int type,
195 glColorPointer( int size, int type, int stride, int offset ) argument
213 glDrawElements( int mode, int count, int type, int offset ) argument
428 glNormalPointer( int type, int stride, int offset ) argument
466 glPointSizePointerOES( int type, int stride, java.nio.Buffer pointer ) argument
472 glTexCoordPointer( int size, int type, int stride, int offset ) argument
543 glVertexPointer( int size, int type, int stride, int offset ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S33 .type \name, %function
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_util.h141 #define ALLOCATE(ptr, count, type) \
143 (ptr) = H264SwDecMalloc((count) * sizeof(type)); \
/frameworks/av/media/libstagefright/include/
H A DSampleTable.h39 // type can be 'stco' or 'co64'.
41 uint32_t type, off64_t data_offset, size_t data_size);
45 // type can be 'stsz' or 'stz2'.
47 uint32_t type, off64_t data_offset, size_t data_size);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedText3GPPSource.cpp99 uint32_t type; local
103 kKeyTextFormatData, &type, &data, &size)) {
/frameworks/base/core/java/android/accounts/
H A DChooseTypeAndAccountActivity.java179 // If there are no relevant accounts and only one relevant account type go directly to
193 setResultAndFinish(account.name, account.type);
252 // Called when the choose account type activity (for adding an account) returns.
288 + "type, pretending the request was canceled");
307 accountType = account.type;
328 protected void runAddAccountForAuthenticator(String type) { argument
330 Log.v(TAG, "runAddAccountForAuthenticator: " + type);
338 AccountManager.get(this).addAccount(type, authTokenType, requiredFeatures,
370 setResultAndFinish(account.name, account.type);
450 && !mSetOfRelevantAccountTypes.contains(account.type)) {
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java402 * @param type The kind of file system object being restored. This will be either
411 File destination, int type, long mode, long mtime)
413 FullBackup.restoreFile(data, size, type, mode, mtime, destination);
422 int type, String domain, String path, long mode, long mtime)
426 if (DEBUG) Log.d(TAG, "onRestoreFile() size=" + size + " type=" + type
450 onRestoreFile(data, size, outFile, type, mode, mtime);
456 FullBackup.restoreFile(data, size, type, mode, mtime, null);
572 int type, String domain, String path, long mode, long mtime,
576 BackupAgent.this.onRestoreFile(data, size, type, domai
410 onRestoreFile(ParcelFileDescriptor data, long size, File destination, int type, long mode, long mtime) argument
421 onRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime) argument
571 doRestoreFile(ParcelFileDescriptor data, long size, int type, String domain, String path, long mode, long mtime, int token, IBackupManager callbackBinder) argument
[all...]
H A DFullBackup.java70 * If the {@code type} parameter indicates that the result should be a directory,
81 * @param type Must be either {@link BackupAgent#TYPE_FILE} for ordinary file data
95 long size, int type, long mode, long mtime, File outFile) throws IOException {
96 if (type == BackupAgent.TYPE_DIRECTORY) {
94 restoreFile(ParcelFileDescriptor data, long size, int type, long mode, long mtime, File outFile) argument
/frameworks/base/core/java/android/view/animation/
H A DRotateAnimation.java60 mPivotXType = d.type;
65 mPivotYType = d.type;
/frameworks/base/core/jni/
H A Dandroid_nio_utils.cpp90 const char type[]) {
91 jfieldID f = env->GetFieldID(c, name, type);
89 getFieldID(JNIEnv* env, jclass c, const char name[], const char type[]) argument
/frameworks/base/include/androidfw/
H A DInputDevice.h139 InputDeviceConfigurationFileType type);
151 const String8& name, InputDeviceConfigurationFileType type);
/frameworks/base/libs/hwui/
H A DSkiaColorFilter.cpp26 SkiaColorFilter::SkiaColorFilter(SkColorFilter *skFilter, Type type, bool blend): argument
27 mType(type), mBlend(blend), mSkFilter(skFilter) {
/frameworks/base/tools/preload/
H A DProc.java91 Operation.Type type) {
93 this, loadedClass, time, operationCount++, type);
90 startOperation(int threadId, LoadedClass loadedClass, long time, Operation.Type type) argument
/frameworks/compile/mclinker/include/mcld/MC/
H A DSymbolCategory.h112 Type type; member in class:mcld::SymbolCategory::Category
122 : type(pType),
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86RelocationFactory.cpp37 unsigned int type; member in struct:ApplyFunctionTriple
63 Relocation::Type type = pRelocation.type(); local
65 if (type >= sizeof (ApplyFunctions) / sizeof (ApplyFunctions[0]) ) {
66 fatal(diag::unknown_relocation) << (int)type <<
72 return ApplyFunctions[type].func(pRelocation, pLDInfo, *this);
208 // Get an relocation entry in .rel.dyn and set its type to pType,
287 helper_DynRel(pReloc, pReloc.type(), pParent);
331 helper_DynRel(pReloc, pReloc.type(), pParent);
/frameworks/compile/mclinker/
H A Dmcld-device-build.mk16 -Werror=return-type \
/frameworks/native/libs/gui/
H A DSensorManager.cpp115 Sensor const* SensorManager::getDefaultSensor(int type) argument
119 // For now we just return the first sensor of that type we find.
123 if (mSensorList[i]->getType() == type)
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardProperty.java154 public Collection<String> getParameters(String type) { argument
155 return mParameterMap.get(type);
/frameworks/base/media/java/android/media/
H A DMediaCodecInfo.java195 * Defined in the OpenMAX IL specs, depending on the type of media
202 * Defined in the OpenMAX IL specs, depending on the type of media
210 String type) {
211 return MediaCodecList.getCodecCapabilities(mIndex, type);
209 getCapabilitiesForType( String type) argument
/frameworks/base/native/android/
H A Dsensor.cpp57 ASensor const* ASensorManager_getDefaultSensor(ASensorManager* manager, int type) argument
59 return static_cast<SensorManager*>(manager)->getDefaultSensor(type);
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java543 // C function GLuint glCreateShader ( GLenum type )
546 int type
673 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, GLint offset )
678 int type,
682 // C function void glDrawElements ( GLenum mode, GLsizei count, GLenum type, const GLvoid *indices )
687 int type,
804 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
814 int[] type,
820 // C function void glGetActiveAttrib ( GLuint program, GLuint index, GLsizei bufsize, GLsizei *length, GLint *size, GLenum *type, char *name )
828 java.nio.IntBuffer type,
675 glDrawElements( int mode, int count, int type, int offset ) argument
684 glDrawElements( int mode, int count, int type, java.nio.Buffer indices ) argument
806 glGetActiveAttrib( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
822 glGetActiveAttrib( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
834 glGetActiveAttrib( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
853 glGetActiveUniform( int program, int index, int bufsize, int[] length, int lengthOffset, int[] size, int sizeOffset, int[] type, int typeOffset, byte[] name, int nameOffset ) argument
869 glGetActiveUniform( int program, int index, int bufsize, java.nio.IntBuffer length, java.nio.IntBuffer size, java.nio.IntBuffer type, byte name ) argument
880 glGetActiveUniform( int program, int index, int[] size, int sizeOffset, int[] type, int typeOffset ) argument
1357 glReadPixels( int x, int y, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1489 glTexImage2D( int target, int level, int internalformat, int width, int height, int border, int format, int type, java.nio.Buffer pixels ) argument
1553 glTexSubImage2D( int target, int level, int xoffset, int yoffset, int width, int height, int format, int type, java.nio.Buffer pixels ) argument
1934 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, int offset ) argument
1945 glVertexAttribPointerBounds( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr, int remaining ) argument
1955 glVertexAttribPointer( int indx, int size, int type, boolean normalized, int stride, java.nio.Buffer ptr ) argument
[all...]

Completed in 6562 milliseconds

<<11121314151617181920>>