代码搜索:XPath
找到约 1,192 项符合「XPath」的源代码
代码结果 1,192
www.eeworm.com/read/205898/5014140
pm comment.pm
# $Id: Comment.pm 4532 2004-05-11 05:15:40Z ezra $
package XML::XPath::Node::Comment;
use strict;
use vars qw/@ISA/;
@ISA = ('XML::XPath::Node');
package XML::XPath::Node::CommentImpl;
use vars q
www.eeworm.com/read/205898/5014143
pm text.pm
# $Id: Text.pm 4532 2004-05-11 05:15:40Z ezra $
package XML::XPath::Node::Text;
use strict;
use vars qw/@ISA/;
@ISA = ('XML::XPath::Node');
package XML::XPath::Node::TextImpl;
use vars qw/@ISA/;
www.eeworm.com/read/273069/4213356
java transformationutil.java
package it.itc.ectrl.normkit.common;
import org.apache.xpath.domapi.XPathEvaluatorImpl;
import org.w3c.dom.xpath.XPathEvaluator;
import org.w3c.dom.xpath.XPathNSResolver;
import org.w3c.dom.xpat
www.eeworm.com/read/205898/5014144
pm pi.pm
# $Id: PI.pm 4532 2004-05-11 05:15:40Z ezra $
package XML::XPath::Node::PI;
use strict;
use vars qw/@ISA/;
@ISA = ('XML::XPath::Node');
package XML::XPath::Node::PIImpl;
use vars qw/@ISA/;
@ISA =
www.eeworm.com/read/205898/5014145
pm root.pm
# $Id: Root.pm 4532 2004-05-11 05:15:40Z ezra $
package XML::XPath::Root;
use strict;
use XML::XPath::XMLParser;
use XML::XPath::NodeSet;
sub new {
my $class = shift;
my $self; # actually don't ne
www.eeworm.com/read/473357/6851500
cvsignore .cvsignore
.memdump
Makefile.in
Makefile
xpath1
parse1
parse2
tree1
tree2
testWriter
reader1
reader2
reader3
io1
www.eeworm.com/read/462226/1546898
js full-validator.js
(function(ns){
Request.XML = new Class({
Extends: Request,
success: function(text, xml){
if(Browser.Features.xpath) {
xml.selectNodes = function(xpath){
var nodes = [], node;
www.eeworm.com/read/441651/1769014
js full-validator.js
(function(ns){
Request.XML = new Class({
Extends: Request,
success: function(text, xml){
if(Browser.Features.xpath) {
xml.selectNodes = function(xpath){
var nodes = [], node;
www.eeworm.com/read/111036/6160220
xtp filter.xtp
XPath filters can match nodes matching a constraint expression, for example
only matching sections with titles. In the following example, sections
with titles are forma
www.eeworm.com/read/242732/4537587
c testxpath.c
/*
* testXPath.c : a small tester program for XPath.
*
* See Copyright for the status of this software.
*
* daniel@veillard.com
*/
#include "libxml.h"
#if defined(LIBXML_XPATH_ENABLED)