Lines Matching refs:dictionaryvar
44645 Dwg_Object_DICTIONARYVAR *restrict dictionaryvar = obj->tio.object->tio.DICTIONARYVAR; in test_DICTIONARYVAR() local
44647 if (!obj_obj || !dictionaryvar) in test_DICTIONARYVAR()
44654 if (dwg_dynapi_entity_value (dictionaryvar, "DICTIONARYVAR", "parent", &parent, NULL) in test_DICTIONARYVAR()
44655 && !memcmp (&parent, &dictionaryvar->parent, sizeof (struct _dwg_object_object*))) in test_DICTIONARYVAR()
44662 if (dwg_dynapi_entity_value (dictionaryvar, "DICTIONARYVAR", "schema", &schema, NULL) in test_DICTIONARYVAR()
44663 && schema == dictionaryvar->schema) in test_DICTIONARYVAR()
44666 fail ("DICTIONARYVAR.schema [RC] %u != %u", dictionaryvar->schema, schema); in test_DICTIONARYVAR()
44668 if (dwg_dynapi_entity_set_value (dictionaryvar, "DICTIONARYVAR", "schema", &schema, 0) in test_DICTIONARYVAR()
44669 && schema == dictionaryvar->schema) in test_DICTIONARYVAR()
44672 fail ("DICTIONARYVAR.schema [RC] set+1 %u != %u", dictionaryvar->schema, schema); in test_DICTIONARYVAR()
44673 dictionaryvar->schema--; in test_DICTIONARYVAR()
44677 if (dwg_dynapi_entity_value (dictionaryvar, "DICTIONARYVAR", "strvalue", &strvalue, NULL) in test_DICTIONARYVAR()
44679 ? strEQ ((char *)strvalue, (char *)dictionaryvar->strvalue) in test_DICTIONARYVAR()
44680 : !dictionaryvar->strvalue) in test_DICTIONARYVAR()
44683 fail ("DICTIONARYVAR.strvalue [T] '%s' <> '%s'", strvalue, dictionaryvar->strvalue); in test_DICTIONARYVAR()