• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Analysis/

Lines Matching defs:CC

267     auto *CC = C.getAllocator().Allocate<T>();
268 return new (CC) T(Args...);
313 static bool classof(const ConstructionContext *CC) {
314 return CC->getKind() >= VARIABLE_BEGIN &&
315 CC->getKind() <= VARIABLE_END;
331 static bool classof(const ConstructionContext *CC) {
332 return CC->getKind() == SimpleVariableKind;
360 static bool classof(const ConstructionContext *CC) {
361 return CC->getKind() == CXX17ElidedCopyVariableKind;
380 static bool classof(const ConstructionContext *CC) {
381 return CC->getKind() >= INITIALIZER_BEGIN &&
382 CC->getKind() <= INITIALIZER_END;
398 static bool classof(const ConstructionContext *CC) {
399 return CC->getKind() == SimpleConstructorInitializerKind;
430 static bool classof(const ConstructionContext *CC) {
431 return CC->getKind() == CXX17ElidedCopyConstructorInitializerKind;
451 static bool classof(const ConstructionContext *CC) {
452 return CC->getKind() == NewAllocatedObjectKind;
491 static bool classof(const ConstructionContext *CC) {
492 return CC->getKind() >= TEMPORARY_BEGIN && CC->getKind() <= TEMPORARY_END;
510 static bool classof(const ConstructionContext *CC) {
511 return CC->getKind() == SimpleTemporaryObjectKind;
551 static bool classof(const ConstructionContext *CC) {
552 return CC->getKind() == ElidedTemporaryObjectKind;
570 static bool classof(const ConstructionContext *CC) {
571 return CC->getKind() >= RETURNED_VALUE_BEGIN &&
572 CC->getKind() <= RETURNED_VALUE_END;
590 static bool classof(const ConstructionContext *CC) {
591 return CC->getKind() == SimpleReturnedValueKind;
620 static bool classof(const ConstructionContext *CC) {
621 return CC->getKind() == CXX17ElidedCopyReturnedValueKind;
653 static bool classof(const ConstructionContext *CC) {
654 return CC->getKind() == ArgumentKind;