Home
last modified time | relevance | path

Searched refs:getMethod (Results 1 – 6 of 6) sorted by relevance

/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
DRemoteControlClientCompat.java73 sRCCEditMetadataMethod = sRemoteControlClientClass.getMethod("editMetadata",
75 sRCCSetPlayStateMethod = sRemoteControlClientClass.getMethod("setPlaybackState",
77 sRCCSetTransportControlFlags = sRemoteControlClientClass.getMethod(
158 mPutStringMethod = metadataEditorClass.getMethod("putString", in MetadataEditorCompat()
160 mPutBitmapMethod = metadataEditorClass.getMethod("putBitmap", in MetadataEditorCompat()
162 mPutLongMethod = metadataEditorClass.getMethod("putLong", in MetadataEditorCompat()
164 mClearMethod = metadataEditorClass.getMethod("clear", new Class[]{}); in MetadataEditorCompat()
165 mApplyMethod = metadataEditorClass.getMethod("apply", new Class[]{}); in MetadataEditorCompat()
DRemoteControlHelper.java42 sRegisterRemoteControlClientMethod = AudioManager.class.getMethod(
44 sUnregisterRemoteControlClientMethod = AudioManager.class.getMethod(
DMediaButtonHelper.java26 sMethodRegisterMediaButtonEventReceiver = AudioManager.class.getMethod( in initializeStaticCompatMethods()
29 sMethodUnregisterMediaButtonEventReceiver = AudioManager.class.getMethod( in initializeStaticCompatMethods()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DForegroundService.java121 mStartForeground = getClass().getMethod("startForeground", in onCreate()
123 mStopForeground = getClass().getMethod("stopForeground", in onCreate()
131 mSetForeground = getClass().getMethod("setForeground", in onCreate()
/development/tools/apkcheck/src/com/android/apkcheck/
DClassInfo.java169 public MethodInfo getMethod(String nameAndDescr) { in getMethod() method in ClassInfo
DApkCheck.java336 MethodInfo pubMethodInfo = pubClassInfo.getMethod(nameAndDescr); in checkClass()