Searched refs:IsValid (Results 26 - 50 of 624) sorted by relevance

1234567891011>>

/external/chromium/base/memory/
H A Dweak_ptr.cc18 bool WeakReference::Flag::IsValid() const { function in class:base::internal::WeakReference::Flag
38 return flag_ && flag_->IsValid();
/external/chromium/net/http/
H A Dhttp_auth_filter.h27 virtual bool IsValid(const GURL& url, HttpAuth::Target target) const = 0;
49 virtual bool IsValid(const GURL& url, HttpAuth::Target target) const;
H A Dhttp_byte_range.cc36 bool HttpByteRange::IsValid() const { function in class:net::HttpByteRange
59 if (!IsValid())
/external/chromium_org/base/memory/
H A Dweak_ptr.cc25 bool WeakReference::Flag::IsValid() const { function in class:base::internal::WeakReference::Flag
43 bool WeakReference::is_valid() const { return flag_.get() && flag_->IsValid(); }
/external/chromium_org/chrome/browser/extensions/
H A Dpending_extension_info.cc40 if (version_.IsValid() && other.version_.IsValid()) {
/external/chromium_org/chrome/common/extensions/manifest_handlers/
H A Dminimum_chrome_version_checker.cc36 if (!minimum_version.IsValid()) {
43 if (!current_version.IsValid()) {
/external/chromium_org/cloud_print/gcp20/prototype/
H A Ddns_packet_parser.h33 bool IsValid() const { return record_parser_.IsValid() && is_header_read_; } function in class:DnsPacketParser
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_validation.h31 if (!IsValid(value)) {
36 bool IsValid(const T value) const { function in class:gpu::gles2::ValueValidator
/external/chromium_org/net/http/
H A Dhttp_auth_filter.h27 virtual bool IsValid(const GURL& url, HttpAuth::Target target) const = 0;
49 virtual bool IsValid(const GURL& url, HttpAuth::Target target) const OVERRIDE;
H A Dhttp_byte_range.cc36 bool HttpByteRange::IsValid() const { function in class:net::HttpByteRange
59 if (!IsValid())
/external/llvm/include/llvm/Support/
H A DErrorOr.h181 ErrorOr() : IsValid(false) {}
187 : HasError(true), IsValid(true) {
193 ErrorOr(llvm::error_code EC) : HasError(true), IsValid(true) {
202 : HasError(true), IsValid(true) {
208 ErrorOr(T Val) : HasError(false), IsValid(true) {
212 ErrorOr(const ErrorOr &Other) : IsValid(false) {
217 ErrorOr(const ErrorOr<OtherT> &Other) : IsValid(false) {
233 ErrorOr(ErrorOr &&Other) : IsValid(false) {
238 ErrorOr(ErrorOr<OtherT> &&Other) : IsValid(false) {
255 if (!IsValid)
[all...]
/external/chromium_org/base/files/
H A Dscoped_temp_dir.h52 bool IsValid() const;
/external/chromium_org/content/test/
H A Dtest_content_browser_client.cc34 if (!download_dir_.IsValid()) {
/external/chromium_org/dbus/
H A Dobject_path.cc13 bool ObjectPath::IsValid() const { function in class:dbus::ObjectPath
H A Dobject_path.h35 bool IsValid() const;
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsyscall_iterator.h41 static bool IsValid(uint32_t num);
/external/chromium_org/ui/base/range/
H A Drange_win_unittest.cc15 EXPECT_TRUE(r.IsValid());
25 EXPECT_TRUE(r.IsValid());
35 EXPECT_TRUE(r.IsValid());
55 EXPECT_FALSE(r.IsValid());
/external/chromium_org/apps/app_host/
H A Dupdate.cc46 DCHECK(app_host_version.IsValid());
89 if (!new_version.IsValid())
91 if (!new_version.IsValid())
/external/chromium_org/chrome/browser/ui/app_list/search/
H A Dtokenized_string_match.cc64 if (!hit.IsValid())
71 if (hit.IsValid()) {
87 if (hit.IsValid())
/external/chromium_org/media/audio/
H A Dcross_process_notification_win.cc17 DCHECK(IsValid());
21 DCHECK(IsValid());
29 DCHECK(IsValid());
36 bool CrossProcessNotification::IsValid() const { function in class:CrossProcessNotification
37 return mine_.IsValid() && other_.IsValid();
43 DCHECK(IsValid());
66 DCHECK(!a->IsValid());
67 DCHECK(!b->IsValid());
93 DCHECK(!success || a->IsValid());
[all...]
/external/chromium_org/sync/api/
H A Dsync_change.cc21 DCHECK(IsValid());
26 bool SyncChange::IsValid() const { function in class:syncer::SyncChange
27 if (change_type_ == ACTION_INVALID || !sync_data_.IsValid())
/external/chromium_org/gpu/config/
H A Dgpu_test_config_unittest.cc49 TEST_F(GPUTestConfigTest, IsValid) {
53 EXPECT_FALSE(config.IsValid());
55 EXPECT_TRUE(config.IsValid());
63 EXPECT_FALSE(config.IsValid());
65 EXPECT_TRUE(config.IsValid());
68 EXPECT_FALSE(config.IsValid());
70 EXPECT_TRUE(config.IsValid());
73 EXPECT_FALSE(config.IsValid());
75 EXPECT_FALSE(config.IsValid());
77 EXPECT_TRUE(config.IsValid());
[all...]
/external/chromium_org/base/
H A Dversion_unittest.cc13 EXPECT_FALSE(v.IsValid());
18 EXPECT_TRUE(v1.IsValid());
20 EXPECT_FALSE(v3.IsValid());
24 EXPECT_TRUE(v2.IsValid());
58 EXPECT_EQ(cases[i].success, version.IsValid());
/external/chromium_org/sync/internal_api/public/base/
H A Dordinal.h91 bool IsValid() const;
101 // All remaining functions can only be called if IsValid() holds.
102 // It is an error to call them if IsValid() is false.
245 bool Ordinal<Traits>::IsValid() const { function in class:syncer::Ordinal
252 if (!IsValid() && !other.IsValid())
255 if (!IsValid() || !other.IsValid())
273 CHECK(IsValid());
274 CHECK(other.IsValid());
[all...]
/external/llvm/lib/Support/Windows/
H A DWindows.h61 if (HandleTraits::IsValid(Handle))
72 if (HandleTraits::IsValid(Handle))
80 return HandleTraits::IsValid(Handle) ? true : false;
99 static bool IsValid(handle_type h) { function in struct:CommonHandleTraits
121 static bool IsValid(handle_type h) { function in struct:CryptContextTraits

Completed in 716 milliseconds

1234567891011>>