Searched defs:empty (Results 176 - 200 of 610) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper.cc139 bool CannedBrowsingDataCookieHelper::empty() const { function in class:CannedBrowsingDataCookieHelper
143 if (!it->second->empty())
H A Dbrowsing_data_database_helper.cc169 bool CannedBrowsingDataDatabaseHelper::empty() const { function in class:CannedBrowsingDataDatabaseHelper
171 return pending_database_info_.empty();
H A Dbrowsing_data_service_worker_helper.cc139 bool CannedBrowsingDataServiceWorkerHelper::empty() const { function in class:CannedBrowsingDataServiceWorkerHelper
140 return service_worker_info_.empty() && pending_service_worker_info_.empty();
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dchange_list_processor.h47 // Returns true if the object is empty.
48 bool empty() const { return local_id_.empty(); } function in class:drive::internal::DirectoryFetchInfo
H A Dfile_change.h68 bool empty() const { return list_.empty(); } function in class:drive::FileChange::ChangeList
103 bool empty() const { return map_.empty(); } function in class:drive::FileChange
/external/chromium_org/chrome/browser/sync/test/integration/performance/
H A Dautofill_sync_perf_test.cc113 std::vector<AutofillProfile> empty; local
114 SetProfiles(profile, &empty);
/external/chromium_org/chrome/browser/ui/views/
H A Dcrypto_module_password_dialog_view.cc57 const base::string16 empty; local
58 password_entry_->SetText(empty);
64 const base::string16 empty; local
65 password_entry_->SetText(empty);
/external/chromium_org/chromeos/dbus/
H A Dfake_debug_daemon_client.cc49 std::vector<std::string> empty; local
51 base::Bind(callback, false, empty));
/external/chromium_org/components/cloud_devices/common/
H A Ddescription_items.h55 bool empty() const { return options_.empty(); } function in class:cloud_devices::ListCapability
96 bool empty() const { return options_.empty(); } function in class:cloud_devices::SelectionCapability
/external/chromium_org/components/metrics/
H A Dpersisted_logs.h26 LIST_EMPTY, // Attempting to recall from an empty list.
92 bool empty() const { return list_.empty(); } function in class:metrics::PersistedLogs
/external/chromium_org/components/policy/core/browser/
H A Dmanaged_bookmarks_tracker_unittest.cc53 managed_node->set_visible(!managed_node->empty());
110 base::ListValue* empty = new base::ListValue(); local
111 folder->Append(CreateFolder("Empty", empty));
174 EXPECT_TRUE(model_->bookmark_bar_node()->empty());
175 EXPECT_TRUE(model_->other_node()->empty());
176 EXPECT_TRUE(managed_node()->empty());
184 EXPECT_TRUE(model_->bookmark_bar_node()->empty());
185 EXPECT_TRUE(model_->other_node()->empty());
186 EXPECT_FALSE(managed_node()->empty());
272 EXPECT_TRUE(managed_node()->empty());
[all...]
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc181 bool PolicyMap::empty() const { function in class:policy::PolicyMap
182 return map_.empty();
H A Dpolicy_map_unittest.cc157 PolicyMap empty; local
158 EXPECT_TRUE(a.Equals(empty));
159 EXPECT_FALSE(b.Equals(empty));
/external/chromium_org/content/browser/indexed_db/
H A Dlist_set.h59 bool empty() const { function in class:list_set
60 DCHECK_EQ(list_.empty(), set_.empty());
61 return set_.empty();
/external/chromium_org/extensions/common/
H A Durl_pattern_set_unittest.cc120 // Subtract an empty set.
152 // Intersection with an empty set.
188 // Union with an empty set.
286 std::vector<URLPatternSet> empty; local
289 URLPatternSet::CreateUnion(empty, &result);
/external/chromium_org/net/base/
H A Dexpiring_cache.h170 bool empty() const { return entries_.empty(); } function in class:net::ExpiringCache
H A Dlinked_hash_map.h110 // Returns true iff the map is empty.
111 bool empty() const { function in class:linked_hash_map
112 return list_.empty();
/external/chromium_org/net/disk_cache/blockfile/
H A Ddisk_format_base.h12 // totally empty to about 64MB when completely full. At that point, data blocks
57 int32 empty[4]; // Counters of empty entries for each type. member in struct:disk_cache::BlockFileHeader
/external/chromium_org/testing/gtest/test/
H A Dgtest-typed-test_test.cc105 typename TestFixture::Vector empty; local
106 EXPECT_EQ(0U, empty.size());
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DSimpleHistoryManager.js98 empty: function()
108 return this.empty() ? null : this._entries[this._activeEntryIndex];
118 if (!this.empty())
131 if (this.empty())
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DFlowControl.pxd22 cpdef bint empty(self) member in class:ControlBlock
27 cpdef bint empty(self) member in class:ExitBlock
/external/chromium_org/third_party/icu/source/common/
H A Duvectr32.h198 UBool empty(void) const; // TODO: redundant, same as empty(). Remove it?
280 inline UBool UVector32::empty(void) const { function in class:UVector32
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dprinter.cc90 if (varname.empty()) {
114 static map<string, string> empty; local
115 Print(empty, text);
150 if (indent_.empty()) {
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOrderedSet.h17 * Creates an empty set
27 bool empty() const { return fRBTree.empty(); } function in class:GrOrderedSet
54 * @return an iterator to the first item in sorted order, or end() if empty
59 * Gets the last valid iterator. This is always valid, even on an empty.
67 * empty.
/external/chromium_org/third_party/skia/tests/
H A DLListTest.cpp33 bool empty,
38 REPORTER_ASSERT(reporter, empty == list.isEmpty());
58 // list should be empty to start with
95 // list should be empty again
143 // Try popping an empty list
166 // use both before/after in-place construction on an empty list
31 check_list(const SkTInternalLList<ListElement>& list, skiatest::Reporter* reporter, bool empty, int numElements, bool in0, bool in1, bool in2, bool in3, ListElement elements[4]) argument

Completed in 8948 milliseconds

1234567891011>>