Home
last modified time | relevance | path

Searched refs:AllowOnePastEnd (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp13074 bool AllowOnePastEnd, bool IndexNegated) { in CheckArrayAccess() argument
13223 if (AllowOnePastEnd ? index.ule(size) : index.ult(size)) in CheckArrayAccess()
13276 int AllowOnePastEnd = 0; in CheckArrayAccess() local
13283 AllowOnePastEnd > 0); in CheckArrayAccess()
13297 /*ASE=*/nullptr, AllowOnePastEnd > 0); in CheckArrayAccess()
13306 AllowOnePastEnd++; in CheckArrayAccess()
13309 AllowOnePastEnd--; in CheckArrayAccess()
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2439 bool AllowOnePastEnd = true, bool IndexNegated = false);