Lines Matching refs:cur

112     xmlNode * cur = root->children;  in createSettingsStructure()  local
113 while (cur != NULL) in createSettingsStructure()
115 if (xmlStrcmp(cur->name, (xmlChar*) "enabled") == 0) in createSettingsStructure()
120 cur = cur->next; in createSettingsStructure()
284 xmlNode * cur = xmlDocGetRootElement(docUser); in load() local
285 if (cur == NULL || cur->children == NULL) in load()
289 cur = cur->children; in load()
290 while (cur != NULL) in load()
292 if (xmlStrcmp(cur->name, (xmlChar*) "enabled") == 0) in load()
296 cur, (xmlChar*) "nil", (xmlChar*) NS_SCHEMA_INSTANCE); in load()
302 docUser, cur->children, 1)); in load()
309 else if (xmlStrcmp(cur->name, (xmlChar*) "userClassPath") == 0) in load()
312 cur, (xmlChar*) "nil", (xmlChar*) NS_SCHEMA_INSTANCE); in load()
318 docUser, cur->children, 1)); in load()
322 else if (xmlStrcmp(cur->name, (xmlChar*) "javaInfo") == 0) in load()
325 cur, (xmlChar*) "nil", (xmlChar*) NS_SCHEMA_INSTANCE); in load()
333 m_javaInfo->loadFromNode(docUser, cur); in load()
336 else if (xmlStrcmp(cur->name, (xmlChar*) "vmParameters") == 0) in load()
339 cur, (xmlChar*) "nil", (xmlChar*) NS_SCHEMA_INSTANCE); in load()
348 xmlNode * pOpt = cur->children; in load()
362 else if (xmlStrcmp(cur->name, (xmlChar*) "jreLocations") == 0) in load()
365 cur, (xmlChar*) "nil", (xmlChar*) NS_SCHEMA_INSTANCE); in load()
374 xmlNode * pLoc = cur->children; in load()
388 cur = cur->next; in load()
534 xmlNode* cur = vmParameters->children; in write() local
535 while (cur != NULL) in write()
537 xmlNode* lastNode = cur; in write()
538 cur = cur->next; in write()
575 xmlNode* cur = jreLocationsNode->children; in write() local
576 while (cur != NULL) in write()
578 xmlNode* lastNode = cur; in write()
579 cur = cur->next; in write()
931 xmlNode * cur = pJavaInfo->children; in loadFromNode() local
933 while (cur != NULL) in loadFromNode()
935 if (xmlStrcmp(cur->name, (xmlChar*) "vendor") == 0) in loadFromNode()
939 pDoc, cur->children, 1); in loadFromNode()
944 else if (xmlStrcmp(cur->name, (xmlChar*) "location") == 0) in loadFromNode()
948 pDoc, cur->children, 1); in loadFromNode()
951 else if (xmlStrcmp(cur->name, (xmlChar*) "version") == 0) in loadFromNode()
955 pDoc, cur->children, 1); in loadFromNode()
958 else if (xmlStrcmp(cur->name, (xmlChar*) "features")== 0) in loadFromNode()
962 pDoc, cur->children, 1); in loadFromNode()
966 else if (xmlStrcmp(cur->name, (xmlChar*) "requirements") == 0) in loadFromNode()
970 pDoc, cur->children, 1); in loadFromNode()
984 else if (xmlStrcmp(cur->name, (xmlChar*) "vendorData") == 0) in loadFromNode()
988 pDoc, cur->children, 1); in loadFromNode()
996 cur = cur->next; in loadFromNode()
1044 xmlNode* cur = pJavaInfoNode->children; in writeToNode() local
1045 while (cur != NULL) in writeToNode()
1047 xmlNode* lastNode = cur; in writeToNode()
1048 cur = cur->next; in writeToNode()