HomeSort by relevance Sort by last modified time
    Searched defs:empty (Results 526 - 550 of 1198) sorted by null

<<21222324252627282930>>

  /external/llvm/include/llvm/ADT/
EquivalenceClasses.h 143 bool empty() const { return TheMapping.empty(); } function in class:llvm::EquivalenceClasses
SparseMultiSet.h 196 // It's not hard to resize the universe on a non-empty set, but it doesn't
198 assert(empty() && "Can only resize universe on an empty map");
325 /// Returns true if the set is empty.
327 /// This is not the same as BitVector::empty().
329 bool empty() const { return size() == 0; } function in class:llvm::SparseMultiSet
464 /// for (bool isBegin = B == I; !isBegin; /* empty */) {
487 for (iterator I = find(K); I != end(); /* empty */)
  /external/llvm/include/llvm/Analysis/
CallGraph.h 217 inline bool empty() const { return CalledFunctions.empty(); } function in class:llvm::CallGraphNode
244 while (!CalledFunctions.empty()) {
253 assert(CalledFunctions.empty() &&
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 56 /// empty - Return true if there is any lexical scope information available.
57 bool empty() { return CurrentFnLexicalScope == NULL; } function in class:llvm::LexicalScopes
LiveIntervalUnion.h 73 bool empty() const { return Segments.empty(); } function in class:llvm::LiveIntervalUnion
  /external/llvm/include/llvm/
PassManagers.h 153 bool empty() const { return S.empty(); } function in class:llvm::PMStack
  /external/marisa-trie/lib/marisa/
trie-inline.h 55 MARISA_THROW_IF(empty(), MARISA_STATE_ERROR);
63 MARISA_THROW_IF(empty(), MARISA_STATE_ERROR);
130 inline bool Trie::empty() const { function in class:marisa::Trie
131 return louds_.empty();
322 return (link_flags_.empty()) ? false : link_flags_[node];
338 return !link_flags_.empty();
346 return !tail_.empty();
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie-inline.h 55 MARISA_ALPHA_THROW_IF(empty(), MARISA_ALPHA_STATE_ERROR);
63 MARISA_ALPHA_THROW_IF(empty(), MARISA_ALPHA_STATE_ERROR);
131 inline bool Trie::empty() const { function in class:marisa_alpha::Trie
132 return louds_.empty();
331 return (link_flags_.empty()) ? false : link_flags_[node];
347 return !link_flags_.empty();
355 return !tail_.empty();
  /external/openfst/src/include/fst/
synchronize.h 121 const String *empty = FindString(new String()); local
122 StateId start = FindState(Element(fst_->Start(), empty, empty));
132 if ((w != Weight::Zero()) && (e.istring)->empty() && (e.ostring)->empty())
176 if (!s->empty())
188 if (l && !(s->empty())) r->push_back(l);
201 // Tests if the concatenation of s and l is empty
202 bool Empty(const String *s, Label l = 0) const {
203 if (s->empty())
    [all...]
  /external/oprofile/libpp/
profile_spec.cpp 237 if (!image_or_lib_image.empty()) {
245 if (!image.empty()) {
249 } else if (!image_or_lib_image.empty()) {
250 // image.empty() means match all except if user
256 if (!lib_image.empty()) {
260 } else if (image.empty() && !image_or_lib_image.empty()) {
261 // lib_image empty means match all except if user
272 vector<string> empty; local
273 glob_filter filter(empty, image_exclude)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/main/macos/
SDL_main.c 133 int empty; local
142 empty = (fgetc(file) == EOF) ? 1 : 0;
144 if ( empty ) {
150 empty = (fgetc(file) == EOF) ? 1 : 0;
152 if ( empty ) {
  /external/qemu/distrib/sdl-1.2.15/src/main/win32/
SDL_win32_main.c 164 int empty; local
179 empty = (fgetc(file) == EOF) ? 1 : 0;
181 if ( empty ) {
189 empty = (fgetc(file) == EOF) ? 1 : 0;
191 if ( empty ) {
  /external/regex-re2/re2/
stringpiece.h 52 bool empty() const { return length_ == 0; } function in class:re2::StringPiece
  /external/skia/include/core/
SkTArray.h 54 * Creates an empty array with no initial storage
65 * Creates an empty array that will preallocate space for reserveCount
154 * Is the array empty.
156 bool empty() const { return !fCount; } function in class:SkTArray
332 * Creates an empty array that will use the passed storage block until it
  /external/skia/tests/
RegionTest.cpp 82 SkRegion empty, empty2; local
84 REPORTER_ASSERT(reporter, empty.isEmpty());
88 REPORTER_ASSERT(reporter, !empty.intersects(empty2));
89 REPORTER_ASSERT(reporter, !valid.intersects(empty));
92 REPORTER_ASSERT(reporter, !empty.contains(empty2));
93 REPORTER_ASSERT(reporter, !valid.contains(empty));
94 REPORTER_ASSERT(reporter, !empty.contains(valid));
RoundRectTest.cpp 41 SkRRect empty; local
43 empty.setEmpty();
45 REPORTER_ASSERT(reporter, SkRRect::kEmpty_Type == empty.type());
46 REPORTER_ASSERT(reporter, empty.rect().isEmpty());
49 REPORTER_ASSERT(reporter, zeroPt == empty.radii((SkRRect::Corner) i));
117 REPORTER_ASSERT(reporter, empty != rr3);
127 SkRRect empty; local
129 empty.setEmpty();
131 REPORTER_ASSERT(reporter, SkRRect::kEmpty_Type == empty.type());
132 r = empty.rect()
    [all...]
  /external/smack/src/org/xbill/DNS/
Address.java 65 /* The fourth octet can't be empty. */
83 // If the first two tokens are empty, it means the string
85 // empty, the string started with :, which is bad.
93 // If the last two tokens are empty, it means the string
95 // empty, the string ended with :, which is bad.
150 int empty = 16 - j; local
151 System.arraycopy(data, range, data, range + empty, j - range);
152 for (i = range; i < range + empty; i++)
  /external/stlport/stlport/stl/
_hash_map.h 168 bool empty() const { return _M_ht.empty(); } function in class:hash_map
359 bool empty() const { return _M_ht.empty(); } function in class:hash_multimap
_hash_set.h 169 bool empty() const { return _M_ht.empty(); } function in class:hash_set
351 bool empty() const { return _M_ht.empty(); } function in class:hash_multiset
_map.h 171 bool empty() const { return _M_t.empty(); } function in class:map
357 bool empty() const { return _M_t.empty(); } function in class:multimap
_set.h 159 bool empty() const { return _M_t.empty(); } function in class:set
330 bool empty() const { return _M_t.empty(); } function in class:multiset
_unordered_map.h 122 bool empty() const { return _M_ht.empty(); } function in class:unordered_map
290 bool empty() const { return _M_ht.empty(); } function in class:unordered_multimap
_unordered_set.h 116 bool empty() const { return _M_ht.empty(); } function in class:unordered_set
266 bool empty() const { return _M_ht.empty(); } function in class:unordered_multiset
  /external/stlport/stlport/stl/debug/
_hashtable.h 167 bool empty() const { return _M_non_dbg_impl.empty(); } function in class:hashtable
_list.h 177 bool empty() const { return _M_non_dbg_impl.empty(); } function in class:list
181 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
185 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
189 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
193 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
264 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)
271 _STLP_VERBOSE_ASSERT(!empty(), _StlMsg_EMPTY_CONTAINER)

Completed in 1297 milliseconds

<<21222324252627282930>>