Lines Matching refs:no

7         printf("isInternal: %s\n", ($class->isInternal()) ? 'yes' : 'no');
8 printf("isUserDefined: %s\n", ($class->isUserDefined()) ? 'yes' : 'no');
9 printf("isInstantiable: %s\n", ($class->isInstantiable()) ? 'yes' : 'no');
10 printf("isInterface: %s\n", ($class->isInterface()) ? 'yes' : 'no');
11 printf("isAbstract: %s\n", ($class->isAbstract()) ? 'yes' : 'no');
12 printf("isFinal: %s\n", ($class->isFinal()) ? 'yes' : 'no');
13 printf("isIteratable: %s\n", ($class->isIterateable()) ? 'yes' : 'no');
64 printf("isPublic: %s\n", ($prop->isPublic()) ? 'yes' : 'no');
65 printf("isPrivate: %s\n", ($prop->isPrivate()) ? 'yes' : 'no');
66 printf("isProtected: %s\n", ($prop->isProtected()) ? 'yes' : 'no');
67 printf("isStatic: %s\n", ($prop->isStatic()) ? 'yes' : 'no');
68 printf("isDefault: %s\n", ($prop->isDefault()) ? 'yes' : 'no');
77 printf("isFinal: %s\n", ($method->isFinal()) ? 'yes' : 'no');
78 printf("isAbstract: %s\n", ($method->isAbstract()) ? 'yes' : 'no');
79 printf("isPublic: %s\n", ($method->isPublic()) ? 'yes' : 'no');
80 printf("isPrivate: %s\n", ($method->isPrivate()) ? 'yes' : 'no');
81 printf("isProtected: %s\n", ($method->isProtected()) ? 'yes' : 'no');
82 printf("isStatic: %s\n", ($method->isStatic()) ? 'yes' : 'no');
83 printf("isConstructor: %s\n", ($method->isConstructor()) ? 'yes' : 'no');
84 printf("isDestructor: %s\n", ($method->isDestructor()) ? 'yes' : 'no');
85 printf("isInternal: %s\n", ($method->isInternal()) ? 'yes' : 'no');
86 printf("isUserDefined: %s\n", ($method->isUserDefined()) ? 'yes' : 'no');
87 printf("returnsReference: %s\n", ($method->returnsReference()) ? 'yes' : 'no');
113 printf("isArray: %s\n", ($param->isArray()) ? 'yes': 'no');
114 printf("allowsNull: %s\n", ($param->allowsNull()) ? 'yes' : 'no');
115 printf("isPassedByReference: %s\n", ($param->isPassedByReference()) ? 'yes' : 'no');
116 printf("isOptional: %s\n", ($param->isOptional()) ? 'yes' : 'no');
117 printf("isDefaultValueAvailable: %s\n", ($param->isDefaultValueAvailable()) ? 'yes' : 'no');
118 // printf("getDefaultValue: %s\n", ($param->getDefaultValue()) ? 'yes' : 'no');