Home
last modified time | relevance | path

Searched refs:PointerLoc (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp4039 SourceLocation PointerLoc, in fixItNullability() argument
4041 assert(PointerLoc.isValid()); in fixItNullability()
4042 if (PointerLoc.isMacroID()) in fixItNullability()
4045 SourceLocation FixItLoc = S.getLocForEndOfToken(PointerLoc); in fixItNullability()
4046 if (!FixItLoc.isValid() || FixItLoc == PointerLoc) in fixItNullability()
4075 SourceLocation PointerLoc, in emitNullabilityConsistencyWarning() argument
4077 assert(PointerLoc.isValid()); in emitNullabilityConsistencyWarning()
4080 S.Diag(PointerLoc, diag::warn_nullability_missing_array); in emitNullabilityConsistencyWarning()
4082 S.Diag(PointerLoc, diag::warn_nullability_missing) in emitNullabilityConsistencyWarning()
4086 auto FixItLoc = PointerEndLoc.isValid() ? PointerEndLoc : PointerLoc; in emitNullabilityConsistencyWarning()
[all …]
H A DSemaDeclCXX.cpp10978 SourceLocation PointerLoc = Chunk.getSourceRange().getBegin(); in diagnoseInvalidDeclaratorChunks() local
10979 S.Diag(PointerLoc, diag::err_invalid_ctor_dtor_decl) in diagnoseInvalidDeclaratorChunks()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h240 SourceLocation PointerLoc; member