Fix for bug 85548 (Move Transformiix to PRInt32/PRUint32), mostly search and replace. r=Pike, sr=jst.

git-svn-id: svn://10.0.0.236/trunk@97947 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
peterv%netscape.com
2001-06-26 14:10:28 +00:00
parent 842d1b30c9
commit 9171e652d7
46 changed files with 414 additions and 407 deletions

View File

@@ -24,14 +24,14 @@
* Marina Mechtcheriakova, mmarina@mindspring.com
* -- changed some behavoir to be more compliant with spec
*
* $Id: NodeSetFunctionCall.cpp,v 1.6 2001-04-12 07:13:08 axel%pike.org Exp $
* $Id: NodeSetFunctionCall.cpp,v 1.7 2001-06-26 14:09:10 peterv%netscape.com Exp $
*/
/**
* NodeSetFunctionCall
* A representation of the XPath NodeSet funtions
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.6 $ $Date: 2001-04-12 07:13:08 $
* @version $Revision: 1.7 $ $Date: 2001-06-26 14:09:10 $
**/
#include "FunctionLib.h"
@@ -87,7 +87,7 @@ NodeSetFunctionCall::NodeSetFunctionCall(short type) : FunctionCall() {
ExprResult* NodeSetFunctionCall::evaluate(Node* context, ContextState* cs) {
NodeSet* nodeSet = (NodeSet*)cs->getNodeSetStack()->peek();
ListIterator* iter = params.iterator();
Int32 argc = params.getLength();
PRInt32 argc = params.getLength();
ExprResult* result = 0;
Expr* param = 0;
switch ( type ) {
@@ -129,7 +129,7 @@ ExprResult* NodeSetFunctionCall::evaluate(Node* context, ContextState* cs) {
exprResult->stringValue(lIDList);
};
lIDList.trim();
Int32 start=0,end;
PRInt32 start=0,end;
MBool hasSpace = MB_FALSE, isSpace;
UNICODE_CHAR cc;
String thisID;