示例#1
0
            static IntPtr n_Process_Lorg_w3c_dom_Node_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
            {
                global::Com.Mopub.Mobileads.Util.XmlUtils.INodeProcessor __this = global::Java.Lang.Object.GetObject <global::Com.Mopub.Mobileads.Util.XmlUtils.INodeProcessor> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
                global::Org.W3c.Dom.INode p0 = (global::Org.W3c.Dom.INode)global::Java.Lang.Object.GetObject <global::Org.W3c.Dom.INode> (native_p0, JniHandleOwnership.DoNotTransfer);
                IntPtr __ret = JNIEnv.ToLocalJniHandle(__this.Process(p0));

                return(__ret);
            }
示例#2
0
            public unsafe global::Java.Lang.Object Process(global::Org.W3c.Dom.INode p0)
            {
                if (id_process_Lorg_w3c_dom_Node_ == IntPtr.Zero)
                {
                    id_process_Lorg_w3c_dom_Node_ = JNIEnv.GetMethodID(class_ref, "process", "(Lorg/w3c/dom/Node;)Ljava/lang/Object;");
                }
                JValue *__args = stackalloc JValue [1];

                __args [0] = new JValue(p0);
                global::Java.Lang.Object __ret = (Java.Lang.Object)global::Java.Lang.Object.GetObject <global::Java.Lang.Object> (JNIEnv.CallObjectMethod(((global::Java.Lang.Object) this).Handle, id_process_Lorg_w3c_dom_Node_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            }
示例#3
0
 public static unsafe string GetNodeValue(global::Org.W3c.Dom.INode p0)
 {
     if (id_getNodeValue_Lorg_w3c_dom_Node_ == IntPtr.Zero)
     {
         id_getNodeValue_Lorg_w3c_dom_Node_ = JNIEnv.GetStaticMethodID(class_ref, "getNodeValue", "(Lorg/w3c/dom/Node;)Ljava/lang/String;");
     }
     try {
         JValue *__args = stackalloc JValue [1];
         __args [0] = new JValue(p0);
         string __ret = JNIEnv.GetString(JNIEnv.CallStaticObjectMethod(class_ref, id_getNodeValue_Lorg_w3c_dom_Node_, __args), JniHandleOwnership.TransferLocalRef);
         return(__ret);
     } finally {
     }
 }
示例#4
0
        public static unsafe global::Org.W3c.Dom.INode GetFirstMatchingChildNode(global::Org.W3c.Dom.INode p0, string p1)
        {
            if (id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "getFirstMatchingChildNode", "(Lorg/w3c/dom/Node;Ljava/lang/String;)Lorg/w3c/dom/Node;");
            }
            IntPtr native_p1 = JNIEnv.NewString(p1);

            try {
                JValue *__args = stackalloc JValue [2];
                __args [0] = new JValue(p0);
                __args [1] = new JValue(native_p1);
                global::Org.W3c.Dom.INode __ret = global::Java.Lang.Object.GetObject <global::Org.W3c.Dom.INode> (JNIEnv.CallStaticObjectMethod(class_ref, id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p1);
            }
        }
示例#5
0
        public static unsafe bool NodeMatchesAttributeFilter(global::Org.W3c.Dom.INode p0, string p1, global::System.Collections.Generic.IList <string> p2)
        {
            if (id_nodeMatchesAttributeFilter_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_util_List_ == IntPtr.Zero)
            {
                id_nodeMatchesAttributeFilter_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_util_List_ = JNIEnv.GetStaticMethodID(class_ref, "nodeMatchesAttributeFilter", "(Lorg/w3c/dom/Node;Ljava/lang/String;Ljava/util/List;)Z");
            }
            IntPtr native_p1 = JNIEnv.NewString(p1);
            IntPtr native_p2 = global::Android.Runtime.JavaList <string> .ToLocalJniHandle(p2);

            try {
                JValue *__args = stackalloc JValue [3];
                __args [0] = new JValue(p0);
                __args [1] = new JValue(native_p1);
                __args [2] = new JValue(native_p2);
                bool __ret = JNIEnv.CallStaticBooleanMethod(class_ref, id_nodeMatchesAttributeFilter_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_util_List_, __args);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p1);
                JNIEnv.DeleteLocalRef(native_p2);
            }
        }
示例#6
0
        public static unsafe global::Org.W3c.Dom.INode GetFirstMatchingChildNode(global::Org.W3c.Dom.INode p0, string p1, string p2, global::System.Collections.Generic.IList <string> p3)
        {
            if (id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_lang_String_Ljava_util_List_ == IntPtr.Zero)
            {
                id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_lang_String_Ljava_util_List_ = JNIEnv.GetStaticMethodID(class_ref, "getFirstMatchingChildNode", "(Lorg/w3c/dom/Node;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;)Lorg/w3c/dom/Node;");
            }
            IntPtr native_p1 = JNIEnv.NewString(p1);
            IntPtr native_p2 = JNIEnv.NewString(p2);
            IntPtr native_p3 = global::Android.Runtime.JavaList <string> .ToLocalJniHandle(p3);

            try {
                JValue *__args = stackalloc JValue [4];
                __args [0] = new JValue(p0);
                __args [1] = new JValue(native_p1);
                __args [2] = new JValue(native_p2);
                __args [3] = new JValue(native_p3);
                global::Org.W3c.Dom.INode __ret = global::Java.Lang.Object.GetObject <global::Org.W3c.Dom.INode> (JNIEnv.CallStaticObjectMethod(class_ref, id_getFirstMatchingChildNode_Lorg_w3c_dom_Node_Ljava_lang_String_Ljava_lang_String_Ljava_util_List_, __args), JniHandleOwnership.TransferLocalRef);
                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p1);
                JNIEnv.DeleteLocalRef(native_p2);
                JNIEnv.DeleteLocalRef(native_p3);
            }
        }
示例#7
0
 public virtual void SetNode(global::Org.W3c.Dom.INode node)                         /* MethodBuilder.Create */
 {
 }
示例#8
0
 public DOMSource(global::Org.W3c.Dom.INode node, string systemID)                         /* MethodBuilder.Create */
 {
 }
示例#9
0
 public DOMSource(global::Org.W3c.Dom.INode n)                         /* MethodBuilder.Create */
 {
 }
示例#10
0
 public virtual void SetNextSibling(global::Org.W3c.Dom.INode nextSibling)                         /* MethodBuilder.Create */
 {
 }
示例#11
0
 public DOMResult(global::Org.W3c.Dom.INode node, global::Org.W3c.Dom.INode nextSibling, string systemId)                         /* MethodBuilder.Create */
 {
 }
示例#12
0
 public DOMResult(global::Org.W3c.Dom.INode node)                         /* MethodBuilder.Create */
 {
 }
示例#13
0
        public static unsafe global::System.Collections.Generic.IList <global::Org.W3c.Dom.INode> GetMatchingChildNodes(global::Org.W3c.Dom.INode p0, string p1)
        {
            if (id_getMatchingChildNodes_Lorg_w3c_dom_Node_Ljava_lang_String_ == IntPtr.Zero)
            {
                id_getMatchingChildNodes_Lorg_w3c_dom_Node_Ljava_lang_String_ = JNIEnv.GetStaticMethodID(class_ref, "getMatchingChildNodes", "(Lorg/w3c/dom/Node;Ljava/lang/String;)Ljava/util/List;");
            }
            IntPtr native_p1 = JNIEnv.NewString(p1);

            try {
                JValue *__args = stackalloc JValue [2];
                __args [0] = new JValue(p0);
                __args [1] = new JValue(native_p1);
                global::System.Collections.Generic.IList <global::Org.W3c.Dom.INode> __ret = global::Android.Runtime.JavaList <global::Org.W3c.Dom.INode> .FromJniHandle(JNIEnv.CallStaticObjectMethod(class_ref, id_getMatchingChildNodes_Lorg_w3c_dom_Node_Ljava_lang_String_, __args), JniHandleOwnership.TransferLocalRef);

                return(__ret);
            } finally {
                JNIEnv.DeleteLocalRef(native_p1);
            }
        }