HomeSort by relevance Sort by last modified time
    Searched refs:not_in (Results 1 - 3 of 3) sorted by null

  /external/autotest/cli/
cli_mock.py 76 def assertWords(self, string, to_find=[], not_in=[]):
78 of the set not_in.
82 @param not_in: List of strings that must NOT be in string.
89 for word in not_in:
  /art/runtime/base/
bit_vector.cc 172 bool BitVector::UnionIfNotIn(const BitVector* union_with, const BitVector* not_in) {
193 uint32_t not_in_size = not_in->GetStorageSize();
199 (union_with->GetRawStorageWord(idx) & ~not_in->GetRawStorageWord(idx));
bit_vector.h 191 // Set bits of union_with that are not in not_in.
192 bool UnionIfNotIn(const BitVector* union_with, const BitVector* not_in);

Completed in 160 milliseconds