Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DBitVector.h192 unsigned FirstWord = Begin / BITWORD_SIZE; variable
200 for (unsigned i = FirstWord; i <= LastWord; ++i) {
205 if (i == FirstWord) {
228 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_in() local
230 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_in()
239 if (CurrentWord == FirstWord) { in find_last_in()
265 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_unset_in() local
267 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_unset_in()
276 if (CurrentWord == FirstWord) { in find_last_unset_in()
/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp593 StringRef FirstWord = ContentWithNoDecoration.substr( in getContentIndent() local
595 if (ContentIndentingJavadocAnnotations.find(FirstWord) != in getContentIndent()