PN_IS_STR         108 core/ast.c         if (PN_IS_STR(t->a[i])) {
PN_IS_STR         931 core/compile.c       if (PN_IS_STR(v)) { // assign string default to a local
PN_IS_STR         952 core/compile.c 	if (PN_IS_STR(v)) {
PN_IS_STR        1177 core/compile.c     if (PN_IS_STR(val)) { \
PN_IS_STR        1259 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         164 core/load.c      if (!file && PN_IS_STR(self))
PN_IS_STR         194 core/load.c      if (!file && PN_IS_STR(self))
PN_IS_STR          96 core/objmodel.c 	if (PN_IS_STR(v)) count++; // names
PN_IS_STR          98 core/objmodel.c 	if (PN_IS_NUM(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         120 core/objmodel.c 	if (PN_IS_STR(v)) count++; // count only names
PN_IS_STR         145 core/objmodel.c 	if (PN_IS_STR(v)) count++;
PN_IS_STR         146 core/objmodel.c 	if (PN_IS_NUM(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         178 core/objmodel.c 	if (PN_IS_STR(v)) count++;
PN_IS_STR         179 core/objmodel.c 	if (PN_IS_NUM(v) && v == PN_NUM(':') && PN_IS_STR((PN)t->set[i+1])) count--;
PN_IS_STR         184 core/potion.h  #define PN_CHECK_STR(obj)  if (!PN_IS_STR(obj)) return potion_type_error_want(P, obj, "String")
PN_IS_STR         417 core/string.c    if (PN_IS_STR(str)) {
PN_IS_STR         258 core/vm.c            if (PN_IS_STR(v) && !(i>0 && PN_IS_NUM(t->set[i-1]) && t->set[i-1] == PN_NUM(':'))) {
PN_IS_STR         498 lib/aio.c        const char *node_c = PN_IS_STR(node) ? PN_STR_PTR(node) : NULL;
PN_IS_STR         499 lib/aio.c        const char *service_c = PN_IS_STR(service) ? PN_STR_PTR(service) : NULL;
PN_IS_STR         660 syn/syntax-p5.y     else if (i < PN_TUPLE_LEN(sig) && PN_IS_STR(PN_TUPLE_AT(sig, i+1)))
PN_IS_STR         465 syn/syntax.y       if (PN_IS_STR(v) && !(PN_IS_NUM(prev) && prev == PN_NUM(':')))
PN_IS_STR          55 test/api/gc-test.c   CuAssert(T, "s1", PN_IS_STR(s1));
PN_IS_STR          66 test/api/p2-test.c   CuAssert(T, "string isn't a string", PN_IS_STR(PN_string));
PN_IS_STR          65 test/api/potion-test.c   CuAssert(T, "string isn't a string", PN_IS_STR(PN_string));