代码搜索:XPath
找到约 1,192 项符合「XPath」的源代码
代码结果 1,192
www.eeworm.com/read/364251/7075869
h xpath.h
/*
* Summary: XML Path Language implementation
* Description: API for the XML Path Language implementation
*
* XML Path Language implementation
* XPath is a language for addressing parts of an XM
www.eeworm.com/read/364251/7075923
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
*f
* Reference: W3C
www.eeworm.com/read/364251/7075992
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/458101/7309602
gif xpath.gif
www.eeworm.com/read/458101/7312850
gif xpath.gif
www.eeworm.com/read/447298/7554661
h xpath.h
/*
* Summary: XML Path Language implementation
* Description: API for the XML Path Language implementation
*
* XML Path Language implementation
* XPath is a language for addressing parts of
www.eeworm.com/read/299022/7898337
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/299022/7898401
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/143968/12826447