Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DBitVector.h213 unsigned FirstWord = Begin / BITWORD_SIZE; in find_first_in() local
217 for (unsigned i = FirstWord; i <= LastWord; ++i) { in find_first_in()
220 if (i == FirstWord) { in find_first_in()
243 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_in() local
245 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_in()
254 if (CurrentWord == FirstWord) { in find_last_in()
273 unsigned FirstWord = Begin / BITWORD_SIZE; in find_first_unset_in() local
277 for (unsigned i = FirstWord; i <= LastWord; ++i) { in find_first_unset_in()
280 if (i == FirstWord) { in find_first_unset_in()
305 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_unset_in() local
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DBreakableToken.cpp547 StringRef FirstWord = ContentWithNoDecoration.substr( in getContentIndent() local
549 if (ContentIndentingJavadocAnnotations.find(FirstWord) != in getContentIndent()