OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nodeNr
(Results
1 - 20
of
20
) sorted by null
/external/libxml2/include/libxml/
xpath.h
80
int
nodeNr
; /* number of nodes in the set */
408
#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->
nodeNr
: 0)
421
((index) >= 0) && ((index) < (ns)->
nodeNr
)) ? \
433
(((ns) == NULL) || ((ns)->
nodeNr
== 0) || ((ns)->nodeTab == NULL))
xpathInternals.h
232
{ while ((ns)->
nodeNr
> 0) (ns)->nodeTab[(ns)->
nodeNr
--] = NULL; }
valid.h
89
int
nodeNr
; /* Depth of the parsing stack */
parser.h
203
int
nodeNr
; /* Depth of the parsing stack */
[
all
...]
/external/libxml2/
xpath.c
937
fprintf(output, "Set contains %d nodes:\n", cur->
nodeNr
);
938
for (i = 0;i < cur->
nodeNr
;i++) {
955
if ((cur == NULL) || (cur->
nodeNr
== 0) || (cur->nodeTab[0] == NULL)) {
[
all
...]
xpointer.c
558
if (end->nodesetval->
nodeNr
<= 0)
585
ret->user2 = end->nodesetval->nodeTab[end->nodesetval->
nodeNr
- 1];
838
for (i = 0;i < set->
nodeNr
;i++)
929
if ((indx <= 0) || (oldset == NULL) || (oldset->
nodeNr
!= 1)) {
1177
if ((loc != NULL) && (loc->
nodeNr
> 0))
[
all
...]
valid.c
450
if (ctxt->
nodeNr
>= ctxt->nodeMax) {
461
ctxt->nodeTab[ctxt->
nodeNr
] = value;
463
return (ctxt->
nodeNr
++);
470
if (ctxt->
nodeNr
<= 0)
472
ctxt->
nodeNr
--;
473
if (ctxt->
nodeNr
> 0)
474
ctxt->node = ctxt->nodeTab[ctxt->
nodeNr
- 1];
477
ret = ctxt->nodeTab[ctxt->
nodeNr
];
478
ctxt->nodeTab[ctxt->
nodeNr
] = NULL;
[
all
...]
parserInternals.c
[
all
...]
debugXML.c
[
all
...]
xinclude.c
1129
for (i = 0;i < set->
nodeNr
;i++) {
[
all
...]
schematron.c
[
all
...]
parser.c
[
all
...]
HTMLparser.c
[
all
...]
xmlreader.c
559
reader->base, reader->cur, reader->ctxt->
nodeNr
);
[
all
...]
/external/webkit/Source/WebCore/xml/
XSLTUnicodeSort.cpp
102
if ((list == NULL) || (list->
nodeNr
<= 1))
149
len = list->
nodeNr
;
/external/libxslt/libxslt/
functions.c
264
for (i = 0; i < obj->nodesetval->
nodeNr
; i++) {
306
(obj2->nodesetval->
nodeNr
> 0) &&
388
for (i = 0; i < obj2->nodesetval->
nodeNr
; i++) {
675
if ((nodelist == NULL) || (nodelist->
nodeNr
<= 0)) {
681
for (i = 1;i < nodelist->
nodeNr
;i++) {
xsltutils.c
928
len = list->
nodeNr
;
983
if ((list == NULL) || (list->
nodeNr
<= 1))
986
len = list->
nodeNr
;
1111
if ((list == NULL) || (list->
nodeNr
<= 1))
1158
len = list->
nodeNr
;
[
all
...]
transform.c
[
all
...]
pattern.c
593
(list->nodesetval->
nodeNr
<= 0)) {
600
for (j = 0;j < list->nodesetval->
nodeNr
;j++) {
823
for (indx = 0;indx < list->
nodeNr
;indx++)
826
if (indx >= list->
nodeNr
)
[
all
...]
variables.c
261
if ((obj->nodesetval == NULL) || (obj->nodesetval->
nodeNr
== 0))
264
for (i = 0; i < obj->nodesetval->
nodeNr
; i++) {
[
all
...]
Completed in 793 milliseconds