HomeSort by relevance Sort by last modified time
    Searched defs:nb_namespaces (Results 1 - 2 of 2) sorted by null

  /external/libxml2/
pattern.c 183 int nb_namespaces; /* the number of namespaces */ member in struct:_xmlPatParserContext
309 cur->nb_namespaces = i;
311 cur->nb_namespaces = 0;
958 for (i = 0;i < ctxt->nb_namespaces;i++) {
964 if (i >= ctxt->nb_namespaces) {
1079 for (i = 0;i < ctxt->nb_namespaces;i++) {
1085 if (i >= ctxt->nb_namespaces) {
1146 for (i = 0;i < ctxt->nb_namespaces;i++) {
1152 if (i >= ctxt->nb_namespaces) {
    [all...]
  /external/webkit/Source/WebCore/dom/
XMLDocumentParserLibxml2.cpp 88 void appendStartElementNSCallback(const xmlChar* xmlLocalName, const xmlChar* xmlPrefix, const xmlChar* xmlURI, int nb_namespaces,
96 callback->nb_namespaces = nb_namespaces;
97 callback->namespaces = static_cast<xmlChar**>(xmlMalloc(sizeof(xmlChar*) * nb_namespaces * 2));
98 for (int i = 0; i < nb_namespaces * 2 ; i++)
208 for (int i = 0; i < nb_namespaces * 2; i++)
220 nb_namespaces, const_cast<const xmlChar**>(namespaces),
227 int nb_namespaces; member in struct:WebCore::PendingCallbacks::PendingStartElementNSCallback
706 static inline void handleElementNamespaces(Element* newElement, const xmlChar** libxmlNamespaces, int nb_namespaces, ExceptionCode& ec, FragmentScriptingPermission scriptingPermission)
709 for (int i = 0; i < nb_namespaces; i++)
    [all...]

Completed in 71 milliseconds