Searched defs:empty (Results 76 - 100 of 312) sorted by relevance

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DTinyPtrVector.h48 if (RHS.empty()) {
80 if (RHS.empty()) {
112 bool empty() const { function in class:llvm::TinyPtrVector
113 // This vector can be empty if it contains no element, or if it
114 // contains a pointer to an empty vector.
117 return Vec->empty();
122 if (empty())
155 assert(!Val.isNull() && "can't index into an empty vector");
167 assert(!empty() && "vector empty");
[all...]
/external/llvm/include/llvm/Analysis/
H A DIVUsers.h167 bool empty() const { return IVUses.empty(); } function in class:llvm::IVUsers
H A DTrace.h102 bool empty() const { return BasicBlocks.empty(); } function in class:llvm::Trace
/external/llvm/include/llvm/CodeGen/
H A DMachineLoopInfo.h94 bool empty() const { return LI.empty(); } function in class:llvm::MachineLoopInfo
/external/protobuf/gtest/test/
H A Dgtest-typed-test_test.cc104 typename TestFixture::Vector empty; local
105 EXPECT_EQ(0U, empty.size());
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistry.java94 /** Construct a new, empty instance. */
99 /** Get the unmodifiable singleton empty instance. */
210 private ExtensionRegistry(boolean empty) { argument
/external/protobuf/src/google/protobuf/io/
H A Dprinter.cc91 if (varname.empty()) {
115 static map<string, string> empty; local
116 Print(empty, text);
140 if (indent_.empty()) {
/external/skia/src/gpu/
H A DGrAllocator.h91 bool empty() const { return fCount == 0; } function in class:GrAllocator
197 bool empty() const { return fAllocator.empty(); } function in class:GrTAllocator
/external/stlport/stlport/stl/
H A D_queue.h94 bool empty() const { return c.empty(); } function in class:queue
220 bool empty() const { return c.empty(); } function in class:priority_queue
/external/webkit/Source/JavaScriptCore/API/
H A DJSCallbackObject.h91 WriteBarrier<Unknown> empty; local
92 m_propertyMap.add(propertyName.impl(), empty).first->second.set(globalData, owner, value);
/external/webkit/Source/WebCore/loader/
H A DCrossOriginPreflightResultCache.cpp185 void CrossOriginPreflightResultCache::empty() function in class:WebCore::CrossOriginPreflightResultCache
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DNamespaceMappings.java240 if (!stack.empty())
438 public boolean empty() { method in class:NamespaceMappings.Stack
/external/chromium/base/
H A Dstring_piece.h64 bool empty() const { return length_ == 0; } function in class:base::StringPiece
106 return std::string(!empty() ? data() : "", size());
H A Dtask.h67 // // |empty| before manufacturing another task.
68 // if (!some_method_factory_.empty())
140 bool empty() const { return !weak_factory_.HasWeakPtrs(); } function in class:ScopedRunnableMethodFactory
222 // struct could be defined with empty RetainCallee and ReleaseCallee methods.
H A Dvalues.h220 // Returns whether the dictionary is empty.
221 bool empty() const { return dictionary_.empty(); } function in class:DictionaryValue
301 // Makes a copy of |this| but doesn't include empty dictionaries and lists in
302 // the copy. This never returns NULL, even if |this| itself is empty.
361 // Returns whether the list is empty.
362 bool empty() const { return list_.empty(); } function in class:ListValue
/external/chromium/chrome/browser/
H A Dbrowsing_data_database_helper.cc190 bool CannedBrowsingDataDatabaseHelper::empty() const { function in class:CannedBrowsingDataDatabaseHelper
192 return database_info_.empty() && pending_database_info_.empty();
H A Dbrowsing_data_indexed_db_helper.cc108 for (FilePath file_path = file_enumerator.Next(); !file_path.empty();
234 bool CannedBrowsingDataIndexedDBHelper::empty() const { function in class:CannedBrowsingDataIndexedDBHelper
236 return indexed_db_info_.empty() && pending_indexed_db_info_.empty();
/external/chromium/chrome/browser/history/
H A Dsnippet.cc48 if (match_positions->empty()) { function
167 if (offsets_str.empty())
/external/chromium/chrome/browser/password_manager/
H A Dpassword_store_default_unittest.cc149 arg)->GetValue().empty();
416 VectorOfForms empty; local
419 ContainsAllPasswordForms(empty)))
/external/chromium/chrome/browser/policy/
H A Duser_policy_cache_unittest.cc62 // Mildly hacky special feature: pass an empty string as |homepage| to get
63 // a completely empty policy.
196 PolicyMap empty; local
197 EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
198 EXPECT_TRUE(empty.Equals(recommended_policy(cache)));
205 PolicyMap empty; local
206 EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
218 PolicyMap empty; local
219 EXPECT_TRUE(empty.Equals(mandatory_policy(cache)));
230 PolicyMap empty; local
265 PolicyMap empty; local
293 PolicyMap empty; local
364 PolicyMap empty; local
[all...]
/external/chromium/chrome/browser/safe_browsing/
H A Dprefix_set_unittest.cc158 // Test that the empty set doesn't appear to have anything in it.
160 const std::vector<SBPrefix> empty; local
161 safe_browsing::PrefixSet prefix_set(empty);
/external/chromium/chrome/browser/tab_contents/
H A Dtab_specific_content_settings.cc15 bool TabSpecificContentSettings::LocalSharedObjectsContainer::empty() const { function in class:TabSpecificContentSettings::LocalSharedObjectsContainer
16 return cookies_->GetAllCookies().empty() &&
17 appcaches_->empty() &&
18 databases_->empty() &&
19 indexed_dbs_->empty() &&
20 local_storages_->empty() &&
21 session_storages_->empty();
87 if (!resource_identifier.empty())
110 if (cookie_list.empty())
/external/chromium/chrome/browser/tabs/
H A Dtab_strip_model.h129 bool empty() const { return contents_data_.empty(); } function in class:TabStripModel
/external/chromium/chrome/common/net/gaia/
H A Dgaia_authenticator.cc165 if (!params.captcha_token.empty() && !params.captcha_value.empty()) {
380 DCHECK(!this->auth_token().empty());
391 const string empty; local
392 return Authenticate(user_name, password, empty,
393 empty);
/external/chromium/net/disk_cache/
H A Ddisk_cache_test_base.cc182 TrimTask(disk_cache::BackendImpl* backend, bool deleted, bool empty) argument
185 empty_(empty) {}
200 void DiskCacheTestWithCache::TrimForTest(bool empty) { argument
201 RunTaskForTest(new TrimTask(cache_impl_, false, empty));
204 void DiskCacheTestWithCache::TrimDeletedListForTest(bool empty) { argument
205 RunTaskForTest(new TrimTask(cache_impl_, true, empty));

Completed in 622 milliseconds

1234567891011>>