Lines Matching refs:idcDef
3867 xmlSchemaFreeIDC(xmlSchemaIDCPtr idcDef) in xmlSchemaFreeIDC() argument
3871 if (idcDef == NULL) in xmlSchemaFreeIDC()
3873 if (idcDef->annot != NULL) in xmlSchemaFreeIDC()
3874 xmlSchemaFreeAnnot(idcDef->annot); in xmlSchemaFreeIDC()
3876 if (idcDef->selector != NULL) { in xmlSchemaFreeIDC()
3877 if (idcDef->selector->xpathComp != NULL) in xmlSchemaFreeIDC()
3878 xmlFreePattern((xmlPatternPtr) idcDef->selector->xpathComp); in xmlSchemaFreeIDC()
3879 xmlFree(idcDef->selector); in xmlSchemaFreeIDC()
3882 if (idcDef->fields != NULL) { in xmlSchemaFreeIDC()
3883 cur = idcDef->fields; in xmlSchemaFreeIDC()
3892 xmlFree(idcDef); in xmlSchemaFreeIDC()
4115 if (schema->idcDef != NULL) in xmlSchemaFree()
4116 xmlHashFree(schema->idcDef, NULL); in xmlSchemaFree()
4933 WXS_FIND_GLOBAL_ITEM(idcDef) in xmlSchemaGetIDC()
20741 WXS_GET_GLOBAL_HASH(bucket, idcDef) in xmlSchemaAddComponents()
21953 xmlSchemaAugmentIDC(xmlSchemaIDCPtr idcDef, in xmlSchemaAugmentIDC() argument
21966 aidc->def = idcDef; in xmlSchemaAugmentIDC()
21978 (idcDef->type == XML_SCHEMA_TYPE_IDC_KEYREF)) in xmlSchemaAugmentIDC()
21990 if (imported->schema->idcDef != NULL) { in xmlSchemaAugmentImportedIDC()
21991 xmlHashScan(imported->schema->idcDef , in xmlSchemaAugmentImportedIDC()
22005 xmlSchemaIDCNewBinding(xmlSchemaIDCPtr idcDef) in xmlSchemaIDCNewBinding() argument
22017 ret->definition = idcDef; in xmlSchemaIDCNewBinding()