Searched defs:IsValid (Results 1 - 25 of 81) sorted by relevance

1234

/external/chromium-trace/catapult/telemetry/telemetry/value/
H A Dimprovement_direction.py8 def IsValid(improvement_direction): function
/external/dng_sdk/source/
H A Ddng_tone_curve.cpp80 bool dng_tone_curve::IsValid () const function in class:dng_tone_curve
H A Ddng_rational.h57 bool IsValid () const function in class:dng_srational
64 return !IsValid ();
116 bool IsValid () const function in class:dng_urational
123 return !IsValid ();
H A Ddng_xy_coord.h58 bool IsValid () const function in class:dng_xy_coord
66 return !IsValid ();
/external/libchrome/base/files/
H A Ddir_reader_fallback.h12 // Open a directory. If |IsValid| is true, then |Next| can be called to start
16 // After construction, IsValid returns true iff the directory was
18 bool IsValid() const { return false; } function in class:base::DirReaderFallback
H A Dscoped_temp_dir.cc79 bool ScopedTempDir::IsValid() const { function in class:base::ScopedTempDir
H A Dmemory_mapped_file.cc34 if (IsValid())
51 if (!file_.IsValid()) {
90 if (IsValid())
108 bool MemoryMappedFile::IsValid() const { function in class:base::MemoryMappedFile
H A Ddir_reader_linux.h47 bool IsValid() const { function in class:base::DirReaderLinux
/external/libchrome/dbus/
H A Dobject_path.cc13 bool ObjectPath::IsValid() const { function in class:dbus::ObjectPath
/external/google-breakpad/src/processor/
H A Dstatic_map_iterator-inl.h60 if (!IsValid()) {
71 if (!IsValid()) {
83 if (!IsValid()) {
95 if (!IsValid()) {
107 if (!IsValid()) {
116 if (!IsValid()) {
138 bool StaticMapIterator<Key, Value, Compare>::IsValid() const { function in class:google_breakpad::StaticMapIterator
/external/pdfium/xfa/fxfa/parser/
H A Dxfa_localevalue.h100 bool IsValid() const { return m_bValid; } function in class:CXFA_LocaleValue
/external/vulkan-validation-layers/layers/
H A Dparameter_name.h61 ParameterName(const char *source) : source_(source) { assert(IsValid()); }
70 ParameterName(const std::string &source) : source_(source) { assert(IsValid()); }
79 ParameterName(const std::string &&source) : source_(std::move(source)) { assert(IsValid()); }
90 ParameterName(const std::string &source, const IndexVector &args) : source_(source), args_(args) { assert(IsValid()); }
102 assert(IsValid());
130 bool IsValid() { function in class:ParameterName
/external/webrtc/webrtc/voice_engine/
H A Dchannel_manager.h40 // IsValid() implements a convenience method as an alternative for checking
44 // if (channel_owner.IsValid())
57 bool IsValid() { return channel_ref_->channel.get() != NULL; } function in class:webrtc::voe::ChannelOwner
86 bool IsValid();
106 // exists. This should be checked with ChannelOwner::IsValid().
/external/bsdiff/
H A Dtest_utils.cc134 bool BsdiffPatchFile::IsValid() const { function in class:test_utils::BsdiffPatchFile
/external/libchrome/base/memory/
H A Dshared_memory_handle_mac.cc61 if (!IsValid())
74 if (!IsValid() && !handle.IsValid())
85 bool SharedMemoryHandle::IsValid() const { function in class:base::SharedMemoryHandle
94 if (!IsValid()) {
107 DCHECK(IsValid());
123 if (!IsValid())
H A Dweak_ptr.cc25 bool WeakReference::Flag::IsValid() const { function in class:base::internal::WeakReference::Flag
47 bool WeakReference::is_valid() const { return flag_.get() && flag_->IsValid(); }
/external/libchrome/base/numerics/
H A Dsafe_math.h27 // IsValid() - Returns true if the underlying numeric value is valid (i.e. has
47 // if (checked_size.IsValid() && checked_size.ValueOrDie() < buffer_size)
84 // IsValid() is the public API to test if a CheckedNumeric is currently valid.
85 bool IsValid() const { return validity() == RANGE_VALID; } function in class:base::internal::CheckedNumeric
90 CHECK(IsValid());
98 return IsValid() ? state_.value() : default_value;
/external/libchrome/base/threading/
H A Dsequenced_worker_pool.h137 bool IsValid() const { function in class:base::SequencedWorkerPool::SequenceToken
/external/libchrome/sandbox/linux/bpf_dsl/
H A Dsyscall_set.cc55 bool SyscallSet::IsValid(uint32_t num) { function in class:sandbox::SyscallSet
71 if (!done && set_ == (IsValid(num_) ? Set::INVALID_ONLY : Set::VALID_ONLY)) {
/external/libchrome/sandbox/win/src/
H A Dpolicy_engine_params.h92 bool IsValid() const { function in class:sandbox::ParameterSet
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h137 bool IsValid() const { return Node != nullptr; } function in class:llvm::ScheduleDAGSDNodes::RegDefIter
140 assert(IsValid() && "bad iterator");
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h131 bool IsValid() const { return Node != NULL; } function in class:llvm::ScheduleDAGSDNodes::RegDefIter
134 assert(IsValid() && "bad iterator");
/external/v8/src/base/
H A Dsafe_math.h24 // IsValid() - Returns true if the underlying numeric value is valid (i.e. has
45 // if (checked_size.IsValid() && checked_size.ValueOrDie() < buffer_size)
72 // IsValid() is the public API to test if a CheckedNumeric is currently valid.
73 bool IsValid() const { return validity() == RANGE_VALID; } function in class:v8::base::internal::CheckedNumeric
78 CHECK(IsValid());
86 return IsValid() ? state_.value() : default_value;
/external/webrtc/talk/media/base/
H A Dscreencastid.h68 bool IsValid() const { function in class:cricket::ScreencastId
72 return window_.IsValid();
74 return desktop_.IsValid();
/external/webrtc/webrtc/base/
H A Dwindow.h62 bool IsValid() const { return id_ != 0; } function in class:rtc::WindowId
98 bool IsValid() const { return index_ != -1; } function in class:rtc::DesktopId

Completed in 546 milliseconds

1234