代码搜索:XPath

找到约 1,192 项符合「XPath」的源代码

代码结果 1,192
www.eeworm.com/read/140161/13103454

c xpath.c

#include "afx.h" int last_char( char *str ) { int len; assert( str != NULL ); len = strlen(str); if ( len > 0 ) return str[len-1]; return 0; } char *add2path( char *path, char *
www.eeworm.com/read/135973/13881510

cpp xpath.cpp

#include "StdAfx.h" #include "XPath.h" #include "XLine.h" #include XPath::XPath() { lines = 0; distance = 0; count = 0; } XPath::XPath (XLine& vLine, CString vStation1, CSt
www.eeworm.com/read/135973/13881541

h xpath.h

#pragma once #include "XPassage.h" class XLine; class XPath { public: XPath(); XPath(XLine& vLine, CString vStation1, CString vStation2); XPath(XLine& vLine1, XLine& vLine2, CString vStat
www.eeworm.com/read/148359/5715393

h xpath.h

/* * xpath.c: interface for XML Path Language implementation * * Reference: W3C Working Draft 5 July 1999 * http://www.w3.org/Style/XSL/Group/1999/07/xpath-19990705.html * * See COPYR
www.eeworm.com/read/148359/5715562

py xpath.py

#!/usr/bin/python -u # # this test exercise the XPath basic engine, parser, etc, and # allows to detect memory leaks # import sys import libxml2 # Memory debug specific libxml2.debugMemory(1) doc =
www.eeworm.com/read/146087/5739986

syntax xpath.syntax

//////////////////////////////////////////////////////// // XPath 1.0 (November 1999), from W3C site. // The full XPath syntax will be built by // xpathSyntax.resolveFrom(xmlSyntax). ///////////////
www.eeworm.com/read/138548/5815451

pm xpath.pm

# $Id: XPath.pm 4535 2004-05-11 05:27:38Z ezra $ package XML::XPath; use strict; use vars qw($VERSION $AUTOLOAD $revision); $VERSION = '1.13'; $XML::XPath::Namespaces = 1; $XML::XPath::Debug = 0;
www.eeworm.com/read/133860/5899117

java xpath.java

/*-- $Id: XPath.java,v 1.15 2004/02/06 09:28:32 jhunter Exp $ Copyright (C) 2000-2004 Jason Hunter & Brett McLaughlin. All rights reserved. Redistribution and use in source and binary fo
www.eeworm.com/read/112192/6148008

h xpath.h

/* * xpath.c: interface for XML Path Language implementation * * Reference: W3C Working Draft 5 July 1999 * http://www.w3.org/Style/XSL/Group/1999/07/xpath-19990705.html * * See COPYR
www.eeworm.com/read/112192/6148013

c xpath.c

/* * xpath.c: XML Path Language implementation * XPath is a language for addressing parts of an XML document, * designed to be used by both XSLT and XPointer. * * Reference: W3C