Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DBitVector.h193 unsigned FirstWord = Begin / BITWORD_SIZE; variable
201 for (unsigned i = FirstWord; i <= LastWord; ++i) {
206 if (i == FirstWord) {
229 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_in() local
231 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_in()
240 if (CurrentWord == FirstWord) { in find_last_in()
266 unsigned FirstWord = Begin / BITWORD_SIZE; in find_last_unset_in() local
268 for (unsigned i = LastWord + 1; i >= FirstWord + 1; --i) { in find_last_unset_in()
277 if (CurrentWord == FirstWord) { in find_last_unset_in()
/openbsd/src/gnu/llvm/clang/lib/Format/
DBreakableToken.cpp591 StringRef FirstWord = ContentWithNoDecoration.substr( in getContentIndent() local
593 if (ContentIndentingJavadocAnnotations.find(FirstWord) != in getContentIndent()