Lines Matching refs:True
11 return True
27 return True
58 return True
74 return True
90 return True
106 return True
122 return True
138 return True
167 return True
183 return True
199 return True
215 return True
231 return True
247 return True
263 return True
573 if basic_type == eBasicTypeChar: return (True,False)
574 if basic_type == eBasicTypeSignedChar: return (True,True)
575 if basic_type == eBasicTypeUnsignedChar: return (True,False)
576 if basic_type == eBasicTypeWChar: return (True,False)
577 if basic_type == eBasicTypeSignedWChar: return (True,True)
578 if basic_type == eBasicTypeUnsignedWChar: return (True,False)
579 if basic_type == eBasicTypeChar16: return (True,False)
580 if basic_type == eBasicTypeChar32: return (True,False)
581 if basic_type == eBasicTypeChar8: return (True,False)
582 if basic_type == eBasicTypeShort: return (True,True)
583 if basic_type == eBasicTypeUnsignedShort: return (True,False)
584 if basic_type == eBasicTypeInt: return (True,True)
585 if basic_type == eBasicTypeUnsignedInt: return (True,False)
586 if basic_type == eBasicTypeLong: return (True,True)
587 if basic_type == eBasicTypeUnsignedLong: return (True,False)
588 if basic_type == eBasicTypeLongLong: return (True,True)
589 if basic_type == eBasicTypeUnsignedLongLong: return (True,False)
590 if basic_type == eBasicTypeInt128: return (True,True)
591 if basic_type == eBasicTypeUnsignedInt128: return (True,False)
593 if basic_type == eBasicTypeHalf: return (True,True)
594 if basic_type == eBasicTypeFloat: return (True,True)
595 if basic_type == eBasicTypeDouble: return (True,True)
596 if basic_type == eBasicTypeLongDouble: return (True,True)
597 if basic_type == eBasicTypeFloatComplex: return (True,True)
598 if basic_type == eBasicTypeDoubleComplex: return (True,True)
599 if basic_type == eBasicTypeLongDoubleComplex: return (True,True)