PN_FALSE          342 core/number.c    return (PN_IS_INT(self) || PN_IS_DBL(self)) ? PN_TRUE : PN_FALSE;
PN_FALSE          348 core/number.c    return PN_IS_INT(self) ? PN_TRUE : PN_FALSE;
PN_FALSE          354 core/number.c    return PN_IS_DBL(self) ? PN_TRUE : PN_FALSE;
PN_FALSE          315 core/objmodel.c       return found == PN_FALSE ? -1 : found;
PN_FALSE          540 core/objmodel.c   return t == t1  ? PN_TRUE : PN_FALSE;
PN_FALSE          552 core/objmodel.c       ? (t == PN_TINTEGER ? PN_TRUE : PN_FALSE) // Integer is a subclass of Number
PN_FALSE          553 core/objmodel.c       : PN_FALSE;                               // other primitives have no parents
PN_FALSE          559 core/objmodel.c   return PN_FALSE;
PN_FALSE          597 core/objmodel.c   return potion_bind(P, self, method) ? PN_TRUE : PN_FALSE;
PN_FALSE          155 core/potion.h  #define PN_TEST(v)     ((PN)(v) != PN_FALSE && (PN)(v) != PN_NIL)
PN_FALSE          158 core/potion.h  #define PN_BOOL(v)      ((v) ? PN_TRUE : PN_FALSE)
PN_FALSE           19 core/primitive.c   return PN_FALSE;
PN_FALSE           40 core/primitive.c     return potion_send(PN_FALSE, PN_cmp, value);
PN_FALSE           58 core/primitive.c     return value == PN_FALSE ? -1 : 1; //false < any < true
PN_FALSE          196 core/syntax.y        | false { $$ = PN_FALSE; }
PN_FALSE          443 core/syntax.y    if (fmt[0] == '\0') return PN_FALSE; // empty signature, no args
PN_FALSE          663 core/table.c       } else if (cmp == PN_FALSE) { // sort by descending number
PN_FALSE          751 core/table.c       else if (cmp == PN_FALSE) {
PN_FALSE          778 core/table.c       return value == PN_FALSE ? -1 : 1;
PN_FALSE           78 core/vm-arm.c    ARM2(14, REG(op.a), PN_FALSE); /* li rA,FALSE */
PN_FALSE          315 core/vm-arm.c    ARM(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE          321 core/vm-arm.c    ARM(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE           77 core/vm-ppc.c    PPC2(14, REG(op.a), PN_FALSE); /* li rA,FALSE */
PN_FALSE          314 core/vm-ppc.c    PPC(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE          320 core/vm-ppc.c    PPC(11, 7 << 2, REG(op.a), 0, PN_FALSE); // cmpwi cr7,rA,0x0
PN_FALSE          167 core/vm-x86.c          TAG_LABEL(false_); X86_MOVQ(op.a, PN_FALSE); 	/* false: -A(%rbp) = FALSE */ \
PN_FALSE          185 core/vm-x86.c          X86_MOVQ(op.a, PN_FALSE); 			/* movl FALSE, -A(%rbp) */ \
PN_FALSE          863 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE); 	// cmp FALSE %rax
PN_FALSE          867 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_FALSE : PN_TRUE); 		// -A(%rbp) = TRUE
PN_FALSE          870 core/vm-x86.c    X86_MOVQ(op.a, test ? PN_TRUE : PN_FALSE); 		// -A(%rbp) = FALSE
PN_FALSE          889 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE); 	// cmp FALSE %rax
PN_FALSE          900 core/vm-x86.c    X86_PRE(); ASM(0x83); ASM(0xF8); ASM(PN_FALSE);	// cmp FALSE %rax
PN_FALSE          996 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_FALSE         1015 lib/aio.c      		 on == PN_ZERO ? PN_FALSE : PN_TRUE);
PN_FALSE         1345 lib/aio.c        return uv_is_readable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1352 lib/aio.c        return uv_is_writable(&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1364 lib/aio.c        return uv_is_closing((const uv_handle_t*)&handle->r) ? PN_TRUE : PN_FALSE;
PN_FALSE         1373 lib/aio.c        return uv_is_active((const uv_handle_t*)&handle->h) ? PN_TRUE : PN_FALSE;
PN_FALSE          232 lib/buffile.c    return r ? PN_TRUE : PN_FALSE;
PN_FALSE           29 test/api/potion-test.c   CuAssert(T, "false isn't a bool type", PN_TYPE(PN_FALSE) == PN_TBOOLEAN);
PN_FALSE           30 test/api/potion-test.c   CuAssert(T, "false is a ref", !PN_IS_PTR(PN_FALSE));