コード例 #1
0
 public static unsafe bool IsOfflineOnly(int p0)
 {
     if (id_isOfflineOnly_I == IntPtr.Zero)
     {
         id_isOfflineOnly_I = JNIEnv.GetStaticMethodID(class_ref, "isOfflineOnly", "(I)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         return(JNIEnv.CallStaticBooleanMethod(class_ref, id_isOfflineOnly_I, __args));
     } finally {
     }
 }
 public static unsafe bool IsValidBeaconModeID(int modeID)
 {
     if (id_isValidBeaconModeID_I == IntPtr.Zero)
     {
         id_isValidBeaconModeID_I = JNIEnv.GetStaticMethodID(class_ref, "isValidBeaconModeID", "(I)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(modeID);
         return(JNIEnv.CallStaticBooleanMethod(class_ref, id_isValidBeaconModeID_I, __args));
     } finally {
     }
 }
コード例 #3
0
 public static unsafe bool ShouldWriteToDiskCache(int p0)
 {
     if (id_shouldWriteToDiskCache_I == IntPtr.Zero)
     {
         id_shouldWriteToDiskCache_I = JNIEnv.GetStaticMethodID(class_ref, "shouldWriteToDiskCache", "(I)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         return(JNIEnv.CallStaticBooleanMethod(class_ref, id_shouldWriteToDiskCache_I, __args));
     } finally {
     }
 }
コード例 #4
0
        public static bool IsSufficienDataForUpload(global::System.Collections.Generic.IList <global::Osmdroid.Contributor.Util.RecordedGeoPoint> p0)
        {
            if (id_isSufficienDataForUpload_Ljava_util_ArrayList_ == IntPtr.Zero)
            {
                id_isSufficienDataForUpload_Ljava_util_ArrayList_ = JNIEnv.GetStaticMethodID(class_ref, "isSufficienDataForUpload", "(Ljava/util/ArrayList;)Z");
            }
            IntPtr native_p0 = global::Android.Runtime.JavaList <global::Osmdroid.Contributor.Util.RecordedGeoPoint> .ToLocalJniHandle(p0);

            bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isSufficienDataForUpload_Ljava_util_ArrayList_, new JValue(native_p0));

            JNIEnv.DeleteLocalRef(native_p0);
            return(__ret);
        }
 public static unsafe bool UnFlattenNeuralNetworkNetwork(global::Org.Neuroph.Core.NeuralNetwork p0)
 {
     if (id_unFlattenNeuralNetworkNetwork_Lorg_neuroph_core_NeuralNetwork_ == IntPtr.Zero)
     {
         id_unFlattenNeuralNetworkNetwork_Lorg_neuroph_core_NeuralNetwork_ = JNIEnv.GetStaticMethodID(class_ref, "unFlattenNeuralNetworkNetwork", "(Lorg/neuroph/core/NeuralNetwork;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_unFlattenNeuralNetworkNetwork_Lorg_neuroph_core_NeuralNetwork_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #6
0
 public static unsafe bool IsValidDimensions(int p0, int p1)
 {
     if (id_isValidDimensions_II == IntPtr.Zero)
     {
         id_isValidDimensions_II = JNIEnv.GetStaticMethodID(class_ref, "isValidDimensions", "(II)Z");
     }
     try {
         JValue *__args = stackalloc JValue [2];
         __args [0] = new JValue(p0);
         __args [1] = new JValue(p1);
         return(JNIEnv.CallStaticBooleanMethod(class_ref, id_isValidDimensions_II, __args));
     } finally {
     }
 }
コード例 #7
0
 public static unsafe bool IsInScrollingContainer(global::Android.Views.IViewParent p0)
 {
     if (id_isInScrollingContainer_Landroid_view_ViewParent_ == IntPtr.Zero)
     {
         id_isInScrollingContainer_Landroid_view_ViewParent_ = JNIEnv.GetStaticMethodID(class_ref, "isInScrollingContainer", "(Landroid/view/ViewParent;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isInScrollingContainer_Landroid_view_ViewParent_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #8
0
 public static unsafe bool ShouldShowRequestForStoragePermission(global::Android.App.Activity p0)
 {
     if (id_shouldShowRequestForStoragePermission_Landroid_app_Activity_ == IntPtr.Zero)
     {
         id_shouldShowRequestForStoragePermission_Landroid_app_Activity_ = JNIEnv.GetStaticMethodID(class_ref, "shouldShowRequestForStoragePermission", "(Landroid/app/Activity;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_shouldShowRequestForStoragePermission_Landroid_app_Activity_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #9
0
 public static unsafe bool CheckSelfPermissionForAudioRecording(global::Android.App.Activity p0)
 {
     if (id_checkSelfPermissionForAudioRecording_Landroid_app_Activity_ == IntPtr.Zero)
     {
         id_checkSelfPermissionForAudioRecording_Landroid_app_Activity_ = JNIEnv.GetStaticMethodID(class_ref, "checkSelfPermissionForAudioRecording", "(Landroid/app/Activity;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_checkSelfPermissionForAudioRecording_Landroid_app_Activity_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #10
0
 public static unsafe bool CheckPermissionForCameraAndMicrophone(global::Android.Content.Context p0)
 {
     if (id_checkPermissionForCameraAndMicrophone_Landroid_content_Context_ == IntPtr.Zero)
     {
         id_checkPermissionForCameraAndMicrophone_Landroid_content_Context_ = JNIEnv.GetStaticMethodID(class_ref, "checkPermissionForCameraAndMicrophone", "(Landroid/content/Context;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_checkPermissionForCameraAndMicrophone_Landroid_content_Context_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool MoreRBSPData(global::Org.Jcodec.Common.IO.BitReader p0)
 {
     if (id_moreRBSPData_Lorg_jcodec_common_io_BitReader_ == IntPtr.Zero)
     {
         id_moreRBSPData_Lorg_jcodec_common_io_BitReader_ = JNIEnv.GetStaticMethodID(class_ref, "moreRBSPData", "(Lorg/jcodec/common/io/BitReader;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_moreRBSPData_Lorg_jcodec_common_io_BitReader_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool IsValid(global::Com.Liveperson.Infra.InitLivePersonProperties p0)
 {
     if (id_isValid_Lcom_liveperson_infra_InitLivePersonProperties_ == IntPtr.Zero)
     {
         id_isValid_Lcom_liveperson_infra_InitLivePersonProperties_ = JNIEnv.GetStaticMethodID(class_ref, "isValid", "(Lcom/liveperson/infra/InitLivePersonProperties;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isValid_Lcom_liveperson_infra_InitLivePersonProperties_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #13
0
 public static unsafe bool InvokeĄ(global::Java.IO.ByteArrayInputStream p0)
 {
     if (id_Ą_Ljava_io_ByteArrayInputStream_ == IntPtr.Zero)
     {
         id_Ą_Ljava_io_ByteArrayInputStream_ = JNIEnv.GetStaticMethodID(class_ref, "Ą", "(Ljava/io/ByteArrayInputStream;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_Ą_Ljava_io_ByteArrayInputStream_, __args);
         return(__ret);
     } finally {
     }
 }
        public static bool Equals(string p0, string p1)
        {
            if (id_equals_Ljava_lang_String_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_equals_Ljava_lang_String_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "equals", "(Ljava/lang/String;Ljava/lang/String;)Z");
            }
            IntPtr native_p0 = JNIEnv.NewString(p0);
            IntPtr native_p1 = JNIEnv.NewString(p1);
            bool   __ret     = JNIEnv.CallStaticBooleanMethod(class_ref, id_equals_Ljava_lang_String_Ljava_lang_String_, new JValue(native_p0), new JValue(native_p1));

            JNIEnv.DeleteLocalRef(native_p0);
            JNIEnv.DeleteLocalRef(native_p1);
            return(__ret);
        }
コード例 #15
0
 public static unsafe bool CreateBoolean(global::Android.OS.Parcel parcel)
 {
     if (id_createBoolean_Landroid_os_Parcel_ == IntPtr.Zero)
     {
         id_createBoolean_Landroid_os_Parcel_ = JNIEnv.GetStaticMethodID(class_ref, "createBoolean", "(Landroid/os/Parcel;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(parcel);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_createBoolean_Landroid_os_Parcel_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool CheckThreadAccess(global::Android.OS.Handler p0)
 {
     if (id_checkThreadAccess_Landroid_os_Handler_ == IntPtr.Zero)
     {
         id_checkThreadAccess_Landroid_os_Handler_ = JNIEnv.GetStaticMethodID(class_ref, "checkThreadAccess", "(Landroid/os/Handler;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_checkThreadAccess_Landroid_os_Handler_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool IsWifiConnected(global::Android.Net.NetworkInfo p0)
 {
     if (id_isWifiConnected_Landroid_net_NetworkInfo_ == IntPtr.Zero)
     {
         id_isWifiConnected_Landroid_net_NetworkInfo_ = JNIEnv.GetStaticMethodID(class_ref, "isWifiConnected", "(Landroid/net/NetworkInfo;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isWifiConnected_Landroid_net_NetworkInfo_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #18
0
 public static unsafe bool IsAudioRecordingPermissionGranted(global::Android.Content.Context p0)
 {
     if (id_isAudioRecordingPermissionGranted_Landroid_content_Context_ == IntPtr.Zero)
     {
         id_isAudioRecordingPermissionGranted_Landroid_content_Context_ = JNIEnv.GetStaticMethodID(class_ref, "isAudioRecordingPermissionGranted", "(Landroid/content/Context;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isAudioRecordingPermissionGranted_Landroid_content_Context_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #19
0
 public static unsafe bool IsHardwareAccelerated(global::Android.Views.View p0)
 {
     if (id_isHardwareAccelerated_Landroid_view_View_ == IntPtr.Zero)
     {
         id_isHardwareAccelerated_Landroid_view_View_ = JNIEnv.GetStaticMethodID(class_ref, "isHardwareAccelerated", "(Landroid/view/View;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isHardwareAccelerated_Landroid_view_View_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #20
0
 public static unsafe bool IsPrintLog(global::Com.Taobao.Accs.Utl.ALog.Level p0)
 {
     if (id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_ == IntPtr.Zero)
     {
         id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_ = JNIEnv.GetStaticMethodID(class_ref, "isPrintLog", "(Lcom/taobao/accs/utl/ALog$Level;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isPrintLog_Lcom_taobao_accs_utl_ALog_Level_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #21
0
 public static unsafe bool IsYesterday(global::Java.Lang.Long p0)
 {
     if (id_isYesterday_Ljava_lang_Long_ == IntPtr.Zero)
     {
         id_isYesterday_Ljava_lang_Long_ = JNIEnv.GetStaticMethodID(class_ref, "isYesterday", "(Ljava/lang/Long;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isYesterday_Ljava_lang_Long_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool IsInternetAvailable(global::Android.Content.Context p0)
 {
     if (id_isInternetAvailable_Landroid_content_Context_ == IntPtr.Zero)
     {
         id_isInternetAvailable_Landroid_content_Context_ = JNIEnv.GetStaticMethodID(class_ref, "isInternetAvailable", "(Landroid/content/Context;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isInternetAvailable_Landroid_content_Context_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #23
0
 public static unsafe bool IsUpToDate(long p0, int p1)
 {
     if (id_isUpToDate_JI == IntPtr.Zero)
     {
         id_isUpToDate_JI = JNIEnv.GetStaticMethodID(class_ref, "isUpToDate", "(JI)Z");
     }
     try {
         JValue *__args = stackalloc JValue [2];
         __args [0] = new JValue(p0);
         __args [1] = new JValue(p1);
         return(JNIEnv.CallStaticBooleanMethod(class_ref, id_isUpToDate_JI, __args));
     } finally {
     }
 }
コード例 #24
0
 public static unsafe bool CheckNotNull(global::Java.Lang.Object p0)
 {
     if (id_checkNotNull_Ljava_lang_Object_ == IntPtr.Zero)
     {
         id_checkNotNull_Ljava_lang_Object_ = JNIEnv.GetStaticMethodID(class_ref, "checkNotNull", "(Ljava/lang/Object;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_checkNotNull_Ljava_lang_Object_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #25
0
 public static unsafe bool IsMobiComPushNotification(global::Android.OS.Bundle p0)
 {
     if (id_isMobiComPushNotification_Landroid_os_Bundle_ == IntPtr.Zero)
     {
         id_isMobiComPushNotification_Landroid_os_Bundle_ = JNIEnv.GetStaticMethodID(class_ref, "isMobiComPushNotification", "(Landroid/os/Bundle;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isMobiComPushNotification_Landroid_os_Bundle_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #26
0
 public static unsafe bool 鷭(global::Android.Bluetooth.BluetoothDevice p0)
 {
     if (id_鷭_Landroid_bluetooth_BluetoothDevice_ == IntPtr.Zero)
     {
         id_鷭_Landroid_bluetooth_BluetoothDevice_ = JNIEnv.GetStaticMethodID(class_ref, "鷭", "(Landroid/bluetooth/BluetoothDevice;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_鷭_Landroid_bluetooth_BluetoothDevice_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #27
0
 public static unsafe bool IsXPaySDK(global::Java.Lang.Reflect.Field p0)
 {
     if (id_isXPaySDK_Ljava_lang_reflect_Field_ == IntPtr.Zero)
     {
         id_isXPaySDK_Ljava_lang_reflect_Field_ = JNIEnv.GetStaticMethodID(class_ref, "isXPaySDK", "(Ljava/lang/reflect/Field;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isXPaySDK_Ljava_lang_reflect_Field_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #28
0
 public static unsafe bool IsMediaDocument(global::Android.Net.Uri p0)
 {
     if (id_isMediaDocument_Landroid_net_Uri_ == IntPtr.Zero)
     {
         id_isMediaDocument_Landroid_net_Uri_ = JNIEnv.GetStaticMethodID(class_ref, "isMediaDocument", "(Landroid/net/Uri;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_isMediaDocument_Landroid_net_Uri_, __args);
         return(__ret);
     } finally {
     }
 }
 public static unsafe bool InitEngine(global::Android.Content.Context p0, global::Android.OS.Bundle p1)
 {
     if (id_InitEngine_Landroid_content_Context_Landroid_os_Bundle_ == IntPtr.Zero)
     {
         id_InitEngine_Landroid_content_Context_Landroid_os_Bundle_ = JNIEnv.GetStaticMethodID(class_ref, "InitEngine", "(Landroid/content/Context;Landroid/os/Bundle;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [2];
         __args [0] = new JValue(p0);
         __args [1] = new JValue(p1);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_InitEngine_Landroid_content_Context_Landroid_os_Bundle_, __args);
         return(__ret);
     } finally {
     }
 }
コード例 #30
0
 public static unsafe bool OpenBaiduMapTransitRoute(global::Com.Baidu.Mapapi.Utils.Route.RouteParaOption p0, global::Android.Content.Context p1)
 {
     if (id_openBaiduMapTransitRoute_Lcom_baidu_mapapi_utils_route_RouteParaOption_Landroid_content_Context_ == IntPtr.Zero)
     {
         id_openBaiduMapTransitRoute_Lcom_baidu_mapapi_utils_route_RouteParaOption_Landroid_content_Context_ = JNIEnv.GetStaticMethodID(class_ref, "openBaiduMapTransitRoute", "(Lcom/baidu/mapapi/utils/route/RouteParaOption;Landroid/content/Context;)Z");
     }
     try {
         JValue *__args = stackalloc JValue [2];
         __args [0] = new JValue(p0);
         __args [1] = new JValue(p1);
         bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_openBaiduMapTransitRoute_Lcom_baidu_mapapi_utils_route_RouteParaOption_Landroid_content_Context_, __args);
         return(__ret);
     } finally {
     }
 }