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

1234567891011>>

/external/llvm/include/llvm/ADT/
H A DSmallSet.h42 bool empty() const { return Vector.empty() && Set.empty(); } function in class:llvm::SmallSet
72 while (!Vector.empty()) {
102 bool isSmall() const { return Set.empty(); }
/external/llvm/include/llvm/IR/
H A DTypeFinder.h54 bool empty() const { return StructTypes.empty(); } function in class:llvm::TypeFinder
/external/marisa-trie/lib/marisa/
H A Dbitvector.h69 bool empty() const { function in class:marisa::BitVector
70 return blocks_.empty();
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
H A Dbitvector.h69 bool empty() const { function in class:marisa_alpha::BitVector
70 return blocks_.empty();
/external/skia/tests/
H A DPathOpsBoundsTest.cpp18 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
85 bool empty = bounds.isReallyEmpty(); local
86 REPORTER_ASSERT(reporter, empty);
91 bool empty = bounds.isReallyEmpty(); local
92 REPORTER_ASSERT(reporter, !empty);
/external/smack/src/org/xbill/DNS/
H A DTypeBitmap.java138 empty() { method in class:TypeBitmap
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1TaggedObject.java15 boolean empty = false; field in class:ASN1TaggedObject
106 if (tagNo != other.tagNo || empty != other.empty || explicit != other.explicit)
167 return empty;
/external/chromium/base/
H A Dfile_path.h174 bool empty() const { return path_.empty(); } function in class:FilePath
216 // Returns ".jpg" for path "C:\pics\jojo.jpg", or an empty string if
217 // the file has no extension. If non-empty, Extension() will always start
243 // empty, then the extension is removed from |file_name|.
289 // Return the path as ASCII, or the empty string if the path is not ASCII.
/external/chromium/chrome/browser/
H A Dbrowsing_data_appcache_helper.cc142 bool CannedBrowsingDataAppCacheHelper::empty() const { function in class:CannedBrowsingDataAppCacheHelper
143 return info_collection_->infos_by_origin.empty();
/external/chromium/chrome/browser/policy/
H A Dpolicy_map.cc47 bool PolicyMap::empty() const { function in class:policy::PolicyMap
48 return map_.empty();
/external/chromium/net/url_request/
H A Dview_cache_helper_unittest.cc37 if (data.empty())
56 if (data.empty())
94 std::string empty; local
95 WriteToEntry(cache, "first", "some", empty, empty);
97 WriteToEntry(cache, "third", empty, "another", "thing");
110 EXPECT_FALSE(data.empty());
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-string.h64 // Note that String can represent both NULL and the empty string,
67 // NULL and the empty string are considered different. NULL is less
68 // than anything (including the empty string) except itself.
133 // including the empty string.
151 // including the empty string.
159 // including the empty string.
168 // including the empty string.
240 // Returns true iff this is an empty string (i.e. "").
241 bool empty() const { return (c_str() != NULL) && (length() == 0); } function in class:testing::internal::String
261 // String is considered to end with a NULL or empty suffi
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-tuple_test.cc147 tuple<> empty; local
/external/chromium_org/base/i18n/
H A Drtl_unittest.cc80 // Test empty string.
161 // Test empty string.
214 // Test empty path.
256 string16 empty; local
257 WrapStringWithLTRFormatting(&empty);
258 EXPECT_TRUE(empty.empty());
259 WrapStringWithRTLFormatting(&empty);
260 EXPECT_TRUE(empty.empty());
[all...]
/external/chromium_org/base/prefs/
H A Dpref_service_unittest.cc288 base::DictionaryValue empty; local
289 observer_.Expect(kName, &empty);
290 prefs_.Set(kName, empty);
314 base::ListValue empty; local
315 observer_.Expect(kName, &empty);
316 prefs_.Set(kName, empty);
/external/chromium_org/chrome/browser/extensions/api/storage/
H A Dsettings_quota_unittest.cc82 DictionaryValue empty; local
88 EXPECT_TRUE(SettingsEqual(empty));
92 DictionaryValue empty; local
96 EXPECT_TRUE(SettingsEqual(empty));
135 DictionaryValue empty; local
141 EXPECT_TRUE(SettingsEqual(empty));
478 DictionaryValue empty; local
484 EXPECT_TRUE(SettingsEqual(empty));
/external/chromium_org/chrome/browser/extensions/updater/
H A Drequest_queue_impl.h63 bool RequestQueue<T>::empty() const { function in class:extensions::RequestQueue
64 return pending_requests_.empty();
84 if (empty())
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_error_map.cc104 bool PolicyErrorMap::empty() { function in class:policy::PolicyErrorMap
106 return map_.empty();
146 if (!error.subkey.empty()) {
H A Dpolicy_map_unittest.cc148 PolicyMap empty; local
149 EXPECT_TRUE(a.Equals(empty));
150 EXPECT_FALSE(b.Equals(empty));
/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.h60 bool empty() const { return list_.empty(); } function in class:sync_file_system::FileChangeList
/external/chromium_org/chrome/common/extensions/permissions/
H A Dapi_permission_set.h107 bool empty() const { function in class:extensions::APIPermissionSet
108 return map().empty();
/external/chromium_org/media/base/
H A Dserial_runner.cc52 bool SerialRunner::Queue::empty() { function in class:media::SerialRunner::Queue
53 return bound_fns_.empty();
80 if (bound_fns_.empty() || last_status != PIPELINE_OK) {
/external/chromium_org/net/url_request/
H A Dview_cache_helper_unittest.cc38 if (data.empty())
57 if (data.empty())
96 std::string empty; local
97 WriteToEntry(cache, "first", "some", empty, empty);
99 WriteToEntry(cache, "third", empty, "another", "thing");
112 EXPECT_FALSE(data.empty());
/external/chromium_org/remoting/webapp/
H A Dstats_accumulator.js56 remoting.StatsAccumulator.prototype.empty = function() {
113 * an empty list, stores it in this object, and returns it.
/external/chromium_org/testing/gtest/test/
H A Dgtest-tuple_test.cc147 tuple<> empty; local

Completed in 1330 milliseconds

1234567891011>>