Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
8401caae
Commit
8401caae
authored
Nov 02, 2010
by
Adam Martinson
Committed by
Alexandre Julliard
Nov 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Use libxml2 macros for XSLPattern method return values.
parent
6462283f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
23 deletions
+9
-23
queryresult.c
dlls/msxml3/queryresult.c
+9
-23
No files found.
dlls/msxml3/queryresult.c
View file @
8401caae
...
...
@@ -377,24 +377,10 @@ static dispex_static_data_t queryresult_dispex = {
queryresult_iface_tids
};
void
XSLPattern_invalid
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
{
xmlXPathObjectPtr
obj
;
for
(;
nargs
>
0
;
--
nargs
)
{
obj
=
valuePop
(
pctx
);
xmlXPathFreeObject
(
obj
);
}
obj
=
xmlMalloc
(
sizeof
(
xmlXPathObject
));
obj
->
type
=
XPATH_UNDEFINED
;
valuePush
(
pctx
,
obj
);
}
#define XSLPATTERN_CHECK_ARGS(n) \
if (nargs != n) { \
FIXME("XSLPattern syntax error: Expected %i arguments, got %i\n", n, nargs); \
XSLPattern_invalid(pctx, nargs
); \
xmlXPathSetArityError(pctx
); \
return; \
}
...
...
@@ -404,7 +390,7 @@ void XSLPattern_index(xmlXPathParserContextPtr pctx, int nargs)
XSLPATTERN_CHECK_ARGS
(
0
);
xmlXPathPositionFunction
(
pctx
,
0
);
valuePush
(
pctx
,
xmlXPathNewFloat
(
xmlXPathPopNumber
(
pctx
)
-
1
.
0
)
);
xmlXPathReturnNumber
(
pctx
,
xmlXPathPopNumber
(
pctx
)
-
1
.
0
);
}
void
XSLPattern_end
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
...
...
@@ -416,7 +402,7 @@ void XSLPattern_end(xmlXPathParserContextPtr pctx, int nargs)
pos
=
xmlXPathPopNumber
(
pctx
);
xmlXPathLastFunction
(
pctx
,
0
);
last
=
xmlXPathPopNumber
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
pos
==
last
)
);
xmlXPathReturnBoolean
(
pctx
,
pos
==
last
);
}
void
XSLPattern_OP_IEq
(
xmlXPathParserContextPtr
pctx
,
int
nargs
)
...
...
@@ -426,7 +412,7 @@ void XSLPattern_OP_IEq(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
==
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
==
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
@@ -438,7 +424,7 @@ void XSLPattern_OP_INEq(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
!=
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
!=
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
@@ -450,7 +436,7 @@ void XSLPattern_OP_ILt(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
<
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
<
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
@@ -462,7 +448,7 @@ void XSLPattern_OP_ILEq(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
<=
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
<=
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
@@ -474,7 +460,7 @@ void XSLPattern_OP_IGt(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
>
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
>
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
@@ -486,7 +472,7 @@ void XSLPattern_OP_IGEq(xmlXPathParserContextPtr pctx, int nargs)
arg2
=
xmlXPathPopString
(
pctx
);
arg1
=
xmlXPathPopString
(
pctx
);
valuePush
(
pctx
,
xmlXPathNewBoolean
(
xmlStrcasecmp
(
arg1
,
arg2
)
>=
0
)
);
xmlXPathReturnBoolean
(
pctx
,
xmlStrcasecmp
(
arg1
,
arg2
)
>=
0
);
xmlFree
(
arg1
);
xmlFree
(
arg2
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment