PN_IS_STR         118 core/ast.c         if (PN_IS_STR(t->a[i])) {
PN_IS_STR         960 core/compile.c 	if (PN_IS_STR(v)) {
PN_IS_STR        1187 core/compile.c     if (PN_IS_STR(val)) { \
PN_IS_STR        1272 core/compile.c     DBG_c("Source dump%s(%s)\n", cb, PN_IS_STR(options) ? PN_STR_PTR(options) : "");
PN_IS_STR          47 core/lick.c      if (PN_IS_STR(text)) return text;
PN_IS_STR         156 core/load.c      if (!file && PN_IS_STR(self))
PN_IS_STR          91 core/objmodel.c 	if (PN_IS_STR(v)) count++; // names
PN_IS_STR          93 core/objmodel.c 	if (PN_IS_INT(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         115 core/objmodel.c 	if (PN_IS_STR(v)) count++; // count only names
PN_IS_STR         140 core/objmodel.c 	if (PN_IS_STR(v)) count++;
PN_IS_STR         141 core/objmodel.c 	if (PN_IS_INT(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         173 core/objmodel.c 	if (PN_IS_STR(v)) count++;
PN_IS_STR         174 core/objmodel.c 	if (PN_IS_INT(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         175 core/potion.h  #define PN_CHECK_STR(obj)  if (!PN_IS_STR(obj)) return potion_type_error_want(P, ""#obj, (PN)obj, "String")
PN_IS_STR         176 core/potion.h  #define PN_CHECK_STRB(obj) if (!PN_IS_STR(obj) || (PN_TYPE(obj) != PN_TBYTES)) return potion_type_error_want(P, ""#obj, (PN)obj, "String or Bytes")
PN_IS_STR         480 core/string.c    if (PN_IS_STR(str)) {
PN_IS_STR         486 core/syntax.y      if (PN_IS_STR(v) && !(PN_IS_INT(prev) && prev == PN_NUM(':')))
PN_IS_STR         276 core/vm.c            if (PN_IS_STR(v) && !(i>0 && PN_IS_INT(t->set[i-1]) && t->set[i-1] == PN_NUM(':'))) {
PN_IS_STR         548 lib/aio.c        const char *node_c = PN_IS_STR(node) ? PN_STR_PTR(node) : NULL;
PN_IS_STR         549 lib/aio.c        const char *service_c = PN_IS_STR(service) ? PN_STR_PTR(service) : NULL;
PN_IS_STR          55 test/api/gc-test.c   CuAssert(T, "s1", PN_IS_STR(s1));
PN_IS_STR          66 test/api/potion-test.c   CuAssert(T, "string isn't a string", PN_IS_STR(PN_string));