/external/libchrome/base/memory/ |
D | weak_ptr.cc | 37 WeakReference::WeakReference(const Flag* flag) : flag_(flag) { in WeakReference() 47 bool WeakReference::is_valid() const { return flag_.get() && flag_->IsValid(); } in is_valid() 59 flag_ = new WeakReference::Flag(); in GetRef() 61 return WeakReference(flag_.get()); in GetRef() 65 if (flag_.get()) { in Invalidate() 66 flag_->Invalidate(); in Invalidate() 67 flag_ = NULL; in Invalidate()
|
D | weak_ptr.h | 123 scoped_refptr<const Flag> flag_; 134 return flag_.get() && !flag_->HasOneRef(); in HasRefs() 140 mutable scoped_refptr<WeakReference::Flag> flag_;
|
/external/libchrome/base/synchronization/ |
D | waitable_event_watcher_posix.cc | 35 Flag() { flag_ = false; } in Flag() 39 flag_ = true; in Set() 44 return flag_; in value() 52 bool flag_; member in base::Flag 68 flag_(flag) {} in AsyncWaiter() 72 if (!flag_->value()) in Fire() 85 bool Compare(void* tag) override { return tag == flag_.get(); } in Compare() 90 const scoped_refptr<Flag> flag_; member in base::AsyncWaiter
|
D | atomic_flag.cc | 21 base::subtle::Release_Store(&flag_, 1); in Set() 25 return base::subtle::Acquire_Load(&flag_) != 0; in IsSet() 29 base::subtle::Release_Store(&flag_, 0); in UnsafeResetForTesting()
|
D | atomic_flag.h | 36 base::subtle::Atomic32 flag_ = 0;
|
/external/libmojo/mojo/edk/system/ |
D | atomic_flag.h | 35 AtomicFlag() : flag_(0) {} in AtomicFlag() 39 base::subtle::Release_Store(&flag_, value ? 1 : 0); in Set() 43 return base::subtle::Acquire_Load(&flag_) ? true : false; in Get() 49 base::subtle::Atomic32 flag_;
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Options.h | 42 void adjoin(const bool flag_); 80 void debug(const bool flag_); 195 void strokeAntiAlias(const bool flag_); 252 void textAntiAlias(const bool flag_);
|
D | Image.h | 101 void adjoin(const bool flag_); 143 void blackPointCompensation(const bool flag_); 207 void debug(const bool flag_); 409 void strokeAntiAlias(const bool flag_); 470 void textAntiAlias(const bool flag_); 810 bool flag_);
|
D | Drawable.h | 1859 DrawableStrokeAntialias ( bool flag_ ) in DrawableStrokeAntialias() argument 1860 : _flag(flag_) in DrawableStrokeAntialias() 1871 void flag( bool flag_ ) in flag() argument 1873 _flag = flag_; in flag() 2060 DrawableTextAntialias ( bool flag_ ); 2072 void flag( bool flag_ ) in flag() argument 2074 _flag = flag_; in flag()
|
D | STL.h | 1233 adjoinImage( const bool flag_ ); 1793 textAntiAliasImage( const bool flag_ );
|
/external/webrtc/webrtc/base/ |
D | thread_unittest.cc | 155 explicit AtomicBool(bool value = false) : flag_(value) {} in AtomicBool() 158 flag_ = value; in operator =() 163 return flag_; in get() 168 bool flag_; member in AtomicBool 177 explicit FunctorB(AtomicBool* flag) : flag_(flag) {} in FunctorB() 178 void operator()() { if (flag_) *flag_ = true; } in operator ()() 180 AtomicBool* flag_; member in FunctorB
|
/external/pdfium/third_party/agg23/ |
D | agg_basics.h | 267 point_type(float x_, float y_, unsigned flag_ = 0) : x(x_), y(y_), flag(flag_) {} in x() 275 point_type_flag(float x_, float y_, unsigned flag_ = 0) : point_type(x_, y_), flag(flag_) {} in point_type()
|
/external/libcxxabi/src/ |
D | cxa_exception_storage.cpp | 57 std::__libcpp_exec_once_flag flag_ = _LIBCPP_EXEC_ONCE_INITIALIZER; variable 94 if (0 != std::__libcpp_execute_once(&flag_, construct_)) in __cxa_get_globals_fast()
|
/external/ImageMagick/Magick++/lib/ |
D | Options.cpp | 65 void Magick::Options::adjoin(const bool flag_) in adjoin() argument 68 flag_ ? MagickTrue : MagickFalse); in adjoin() 163 void Magick::Options::debug(const bool flag_) in debug() argument 165 if (flag_) in debug() 552 void Magick::Options::strokeAntiAlias(const bool flag_) in strokeAntiAlias() argument 554 flag_ ? _drawInfo->stroke_antialias=MagickTrue : in strokeAntiAlias() 691 void Magick::Options::textAntiAlias(const bool flag_) in textAntiAlias() argument 694 flag_ ? MagickTrue : MagickFalse); in textAntiAlias()
|
D | STL.cpp | 1138 Magick::adjoinImage::adjoinImage( const bool flag_ ) in adjoinImage() argument 1139 : _flag( flag_ ) in adjoinImage() 1586 Magick::textAntiAliasImage::textAntiAliasImage( const bool flag_ ) in textAntiAliasImage() argument 1587 : _flag( flag_ ) in textAntiAliasImage()
|
D | Image.cpp | 288 void Magick::Image::adjoin(const bool flag_) in adjoin() argument 291 options()->adjoin(flag_); in adjoin() 422 void Magick::Image::blackPointCompensation(const bool flag_) in blackPointCompensation() argument 424 image()->black_point_compensation=(MagickBooleanType) flag_; in blackPointCompensation() 645 void Magick::Image::debug(const bool flag_) in debug() argument 648 options()->debug(flag_); in debug() 1374 void Magick::Image::strokeAntiAlias(const bool flag_) in strokeAntiAlias() argument 1377 options()->strokeAntiAlias(flag_); in strokeAntiAlias() 1527 void Magick::Image::textAntiAlias(const bool flag_) in textAntiAlias() argument 1530 options()->textAntiAlias(flag_); in textAntiAlias() [all …]
|
D | Drawable.cpp | 1548 Magick::DrawableTextAntialias::DrawableTextAntialias ( bool flag_ ) in DrawableTextAntialias() argument 1549 : _flag(flag_) in DrawableTextAntialias()
|
/external/webrtc/webrtc/modules/audio_processing/ |
D | audio_processing_performance_unittest.cc | 215 return flag_; in get_flag() 220 flag_ = true; in set_flag() 225 bool flag_ GUARDED_BY(crit_) = false;
|
/external/v8/src/crankshaft/ |
D | hydrogen.h | 827 : AstContext(owner, Expression::kValue), flag_(flag) { in ValueContext() 837 bool arguments_allowed() { return flag_ == ARGUMENTS_ALLOWED; } in arguments_allowed() 840 ArgumentsAllowedFlag flag_;
|
D | hydrogen.cc | 3713 if (flag_ == ARGUMENTS_FAKED) { in ReturnValue()
|
/external/v8/src/ |
D | bootstrapper.cc | 4773 : flag_(FLAG_track_double_fields), enabled_(false) { in NoTrackDoubleFieldsForSerializerScope() 4784 FLAG_track_double_fields = flag_; in ~NoTrackDoubleFieldsForSerializerScope() 4789 bool flag_; member in v8::internal::NoTrackDoubleFieldsForSerializerScope
|