Lines Matching +full:de +full:- +full:assert
1 //===- FuzzerDictionary.h - Internal header for the Fuzzer ------*- C++ -* ===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
31 assert(S <= kMaxSize); in Set()
63 assert(HasPositionHint()); in GetPositionHint()
90 return std::any_of(begin(), end(), [&](const DictionaryEntry &DE) { in ContainsWord()
91 return DE.GetW() == W; in ContainsWord()
94 const DictionaryEntry *begin() const { return &DE[0]; } in begin()
97 assert(Idx < Size);
98 return DE[Idx];
100 void push_back(DictionaryEntry DE) { in push_back() argument
102 this->DE[Size++] = DE; in push_back()
109 DictionaryEntry DE[kMaxDictSize];