/external/llvm/include/llvm/IR/ |
D | DiagnosticPrinter.h | 36 virtual DiagnosticPrinter &operator<<(char C) = 0; 37 virtual DiagnosticPrinter &operator<<(unsigned char C) = 0; 38 virtual DiagnosticPrinter &operator<<(signed char C) = 0; 39 virtual DiagnosticPrinter &operator<<(StringRef Str) = 0; 40 virtual DiagnosticPrinter &operator<<(const char *Str) = 0; 41 virtual DiagnosticPrinter &operator<<(const std::string &Str) = 0; 42 virtual DiagnosticPrinter &operator<<(unsigned long N) = 0; 43 virtual DiagnosticPrinter &operator<<(long N) = 0; 44 virtual DiagnosticPrinter &operator<<(unsigned long long N) = 0; 45 virtual DiagnosticPrinter &operator<<(long long N) = 0; [all …]
|
/external/v8/src/base/ |
D | flags.h | 35 bool operator==(flag_type flag) const { 38 bool operator!=(flag_type flag) const { 42 Flags& operator&=(const Flags& flags) { 46 Flags& operator|=(const Flags& flags) { 50 Flags& operator^=(const Flags& flags) { 55 Flags operator&(const Flags& flags) const { return Flags(*this) &= flags; } 56 Flags operator|(const Flags& flags) const { return Flags(*this) |= flags; } 57 Flags operator^(const Flags& flags) const { return Flags(*this) ^= flags; } 59 Flags& operator&=(flag_type flag) { return operator&=(Flags(flag)); } 60 Flags& operator|=(flag_type flag) { return operator|=(Flags(flag)); } [all …]
|
/external/libcxx/test/support/ |
D | min_allocator.h | 30 return static_cast<T*>(::operator new(n*sizeof(T))); in allocate() 35 return ::operator delete(static_cast<void*>(p)); in deallocate() 38 friend bool operator==(bare_allocator, bare_allocator) {return true;} 39 friend bool operator!=(bare_allocator x, bare_allocator y) {return !(x == y);} 63 explicit operator bool() const {return ptr_ != nullptr;} 65 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;} 66 friend bool operator!=(min_pointer x, min_pointer y) {return !(x == y);} 85 explicit operator bool() const {return ptr_ != nullptr;} 87 friend bool operator==(min_pointer x, min_pointer y) {return x.ptr_ == y.ptr_;} 88 friend bool operator!=(min_pointer x, min_pointer y) {return !(x == y);} [all …]
|
D | test_iterators.h | 42 reference operator*() const {return *it_;} 44 output_iterator& operator++() {++it_; return *this;} 45 output_iterator operator++(int) 49 void operator,(T const &) DELETE_FUNCTION; variable 72 reference operator*() const {return *it_;} 73 pointer operator->() const {return it_;} 75 input_iterator& operator++() {++it_; return *this;} 76 input_iterator operator++(int) 79 friend bool operator==(const input_iterator& x, const input_iterator& y) 81 friend bool operator!=(const input_iterator& x, const input_iterator& y) [all …]
|
/external/pdfium/fpdfsdk/src/javascript/ |
D | JS_Value.h | 65 void operator=(int iValue); variable 66 void operator=(bool bValue); variable 67 void operator=(double); variable 68 void operator=(float); variable 69 void operator=(CJS_Object*); variable 70 void operator=(CJS_Document*); variable 71 void operator=(v8::Local<v8::Object>); variable 72 void operator=(CJS_Array&); variable 73 void operator=(CJS_Date&); variable 74 void operator=(const FX_WCHAR* pWstr); variable [all …]
|
/external/v8/src/base/platform/ |
D | time.h | 73 TimeDelta& operator=(const TimeDelta& other) { 79 TimeDelta operator+(const TimeDelta& other) const { 82 TimeDelta operator-(const TimeDelta& other) const { 86 TimeDelta& operator+=(const TimeDelta& other) { 90 TimeDelta& operator-=(const TimeDelta& other) { 94 TimeDelta operator-() const { 107 TimeDelta operator*(int64_t a) const { 110 TimeDelta operator/(int64_t a) const { 113 TimeDelta& operator*=(int64_t a) { 117 TimeDelta& operator/=(int64_t a) { [all …]
|
/external/llvm/include/llvm/ADT/ |
D | APSInt.h | 46 APSInt &operator=(APInt RHS) { 48 APInt::operator=(std::move(RHS)); 52 APSInt &operator=(uint64_t RHS) { 54 APInt::operator=(RHS); 99 const APSInt &operator%=(const APSInt &RHS) { 107 const APSInt &operator/=(const APSInt &RHS) { 115 APSInt operator%(const APSInt &RHS) const { 119 APSInt operator/(const APSInt &RHS) const { 124 APSInt operator>>(unsigned Amt) const { 127 APSInt& operator>>=(unsigned Amt) { [all …]
|
D | iterator.h | 50 DerivedT operator+(DifferenceTypeT n) const { 58 friend DerivedT operator+(DifferenceTypeT n, const DerivedT &i) { 64 DerivedT operator-(DifferenceTypeT n) const { 73 DerivedT &operator++() { 74 return static_cast<DerivedT *>(this)->operator+=(1); 76 DerivedT operator++(int) { 81 DerivedT &operator--() { 85 return static_cast<DerivedT *>(this)->operator-=(1); 87 DerivedT operator--(int) { 96 bool operator!=(const DerivedT &RHS) const { [all …]
|
D | Statistic.h | 55 operator unsigned() const { return Value; } 58 const Statistic &operator=(unsigned Val) { 63 const Statistic &operator++() { 72 unsigned operator++(int) { 79 const Statistic &operator--() { 84 unsigned operator--(int) { 91 const Statistic &operator+=(const unsigned &V) { 97 const Statistic &operator-=(const unsigned &V) { 103 const Statistic &operator*=(const unsigned &V) { 108 const Statistic &operator/=(const unsigned &V) { [all …]
|
/external/pdfium/xfa/src/fgas/include/ |
D | fx_datetime.h | 29 operator FX_UNITIME*() { return &m_iUnitime; } 30 operator FX_UNITIME const*() const { return &m_iUnitime; } 31 operator FX_UNITIME&() { return m_iUnitime; } 32 operator const FX_UNITIME&() const { return m_iUnitime; } 33 CFX_Unitime& operator=(const CFX_Unitime& t) { 37 CFX_Unitime& operator=(FX_UNITIME t) { 41 CFX_Unitime& operator+=(const CFX_Unitime& t) { 45 CFX_Unitime& operator+=(FX_UNITIME t) { 49 CFX_Unitime& operator-=(const CFX_Unitime& t) { 53 CFX_Unitime& operator-=(FX_UNITIME t) { [all …]
|
/external/deqp/external/vulkancts/framework/vulkan/ |
D | vkStrUtil.inl | 84 inline std::ostream& operator<< (std::ostream& s, VkPipelineCacheHeaderVersion value) { return s <<… 85 inline std::ostream& operator<< (std::ostream& s, VkResult value) { return s << getResultStr(v… 86 inline std::ostream& operator<< (std::ostream& s, VkStructureType value) { return s << getStruct… 87 inline std::ostream& operator<< (std::ostream& s, VkSystemAllocationScope value) { return s << get… 88 inline std::ostream& operator<< (std::ostream& s, VkInternalAllocationType value) { return s << ge… 89 inline std::ostream& operator<< (std::ostream& s, VkFormat value) { return s << getFormatStr(v… 90 inline std::ostream& operator<< (std::ostream& s, VkImageType value) { return s << getImageType… 91 inline std::ostream& operator<< (std::ostream& s, VkImageTiling value) { return s << getImageTi… 92 inline std::ostream& operator<< (std::ostream& s, VkPhysicalDeviceType value) { return s << getPh… 93 inline std::ostream& operator<< (std::ostream& s, VkQueryType value) { return s << getQueryType… [all …]
|
/external/pdfium/core/include/fxcrt/ |
D | fx_string.h | 66 CFX_ByteStringC& operator=(const FX_CHAR* src) { 72 CFX_ByteStringC& operator=(const CFX_ByteStringC& src) { 78 CFX_ByteStringC& operator=(const CFX_ByteString& src); variable 80 bool operator==(const char* ptr) const { 84 bool operator==(const CFX_ByteStringC& other) const { 88 bool operator!=(const char* ptr) const { return !(*this == ptr); } 89 bool operator!=(const CFX_ByteStringC& other) const { 118 const uint8_t& operator[](size_t index) const { return m_Ptr[index]; } 120 bool operator<(const CFX_ByteStringC& that) const { 130 void* operator new(size_t) throw() { return NULL; } in new() [all …]
|
/external/opencv3/3rdparty/openexr/Imath/ |
D | ImathColor.h | 73 const Color3 & operator = (const Color3 &c); variable 80 const Color3 & operator += (const Color3 &c); 81 Color3 operator + (const Color3 &c) const; 88 const Color3 & operator -= (const Color3 &c); 89 Color3 operator - (const Color3 &c) const; 96 Color3 operator - () const; 104 const Color3 & operator *= (const Color3 &c); 105 const Color3 & operator *= (T a); 106 Color3 operator * (const Color3 &c) const; 107 Color3 operator * (T a) const; [all …]
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | tick_util.h | 62 friend TickTime operator+(const TickTime lhs, const int64_t ticks); 63 TickTime& operator+=(const int64_t& ticks); 66 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs); 84 friend TickInterval operator+(const TickInterval& lhs, 86 TickInterval& operator+=(const TickInterval& rhs); 89 friend TickInterval operator-(const TickInterval& lhs, 91 TickInterval& operator-=(const TickInterval& rhs); 93 friend bool operator>(const TickInterval& lhs, const TickInterval& rhs); 94 friend bool operator<=(const TickInterval& lhs, const TickInterval& rhs); 95 friend bool operator<(const TickInterval& lhs, const TickInterval& rhs); [all …]
|
/external/llvm/include/llvm/DebugInfo/PDB/ |
D | PDBExtras.h | 20 raw_ostream &operator<<(raw_ostream &OS, const PDB_VariantType &Value); 21 raw_ostream &operator<<(raw_ostream &OS, const PDB_CallingConv &Conv); 22 raw_ostream &operator<<(raw_ostream &OS, const PDB_DataKind &Data); 23 raw_ostream &operator<<(raw_ostream &OS, const PDB_RegisterId &Reg); 24 raw_ostream &operator<<(raw_ostream &OS, const PDB_LocType &Loc); 25 raw_ostream &operator<<(raw_ostream &OS, const PDB_ThunkOrdinal &Thunk); 26 raw_ostream &operator<<(raw_ostream &OS, const PDB_Checksum &Checksum); 27 raw_ostream &operator<<(raw_ostream &OS, const PDB_Lang &Lang); 28 raw_ostream &operator<<(raw_ostream &OS, const PDB_SymType &Tag); 29 raw_ostream &operator<<(raw_ostream &OS, const PDB_MemberAccess &Access); [all …]
|
/external/opencv3/3rdparty/openexr/Half/ |
D | half.h | 118 operator float () const; 125 half operator - () const; 132 half & operator = (half h); variable 133 half & operator = (float f); variable 135 half & operator += (half h); 136 half & operator += (float f); 138 half & operator -= (half h); 139 half & operator -= (float f); 141 half & operator *= (half h); 142 half & operator *= (float f); [all …]
|
/external/google-breakpad/src/common/ |
D | scoped_ptr.h | 114 C& operator*() const { 118 C* operator->() const { 127 bool operator==(C* p) const { return ptr_ == p; } 128 bool operator!=(C* p) const { return ptr_ != p; } 154 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const; 155 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const; 159 void operator=(const scoped_ptr&); variable 169 bool operator==(C* p1, const scoped_ptr<C>& p2) { 174 bool operator!=(C* p1, const scoped_ptr<C>& p2) { 219 C& operator[](ptrdiff_t i) const { [all …]
|
/external/clang/include/clang/AST/ |
D | CharUnits.h | 68 CharUnits& operator+= (const CharUnits &Other) { 72 CharUnits& operator++ () { 76 CharUnits operator++ (int) { 79 CharUnits& operator-= (const CharUnits &Other) { 83 CharUnits& operator-- () { 87 CharUnits operator-- (int) { 92 bool operator== (const CharUnits &Other) const { 95 bool operator!= (const CharUnits &Other) const { 100 bool operator< (const CharUnits &Other) const { 103 bool operator<= (const CharUnits &Other) const { [all …]
|
/external/libcxx/include/ |
D | new | 26 bad_alloc& operator=(const bad_alloc&) noexcept; 50 void* operator new(std::size_t size); // replaceable 51 void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable 52 void operator delete(void* ptr) noexcept; // replaceable 53 void operator delete(void* ptr, std::size_t size) noexcept; // replaceable, C++14 54 void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable 56 void* operator new[](std::size_t size); // replaceable 57 void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable 58 void operator delete[](void* ptr) noexcept; // replaceable 59 void operator delete[](void* ptr, std::size_t size) noexcept; // replaceable, C++14 [all …]
|
/external/llvm/include/llvm/Support/ |
D | BlockFrequency.h | 40 BlockFrequency &operator*=(BranchProbability Prob); 41 BlockFrequency operator*(BranchProbability Prob) const; 45 BlockFrequency &operator/=(BranchProbability Prob); 46 BlockFrequency operator/(BranchProbability Prob) const; 49 BlockFrequency &operator+=(BlockFrequency Freq); 50 BlockFrequency operator+(BlockFrequency Freq) const; 53 BlockFrequency &operator-=(BlockFrequency Freq); 54 BlockFrequency operator-(BlockFrequency Freq) const; 57 BlockFrequency &operator>>=(const unsigned count); 59 bool operator<(BlockFrequency RHS) const { [all …]
|
/external/tinyxml/ |
D | tinystr.h | 95 TiXmlString& operator = (const char * copy) 101 TiXmlString& operator = (const TiXmlString & copy) 108 TiXmlString& operator += (const char * suffix) 114 TiXmlString& operator += (char single) 120 TiXmlString& operator += (const TiXmlString & suffix) 153 char& operator [] (size_type index) const 220 rep_ = static_cast<Rep*>(operator new(sizeof(Rep) + cap)); in init() 234 operator delete(rep_); in quit() 244 inline bool operator == (const TiXmlString & a, const TiXmlString & b) 249 inline bool operator < (const TiXmlString & a, const TiXmlString & b) [all …]
|
/external/clang/tools/libclang/ |
D | CLog.h | 68 Logger &operator<<(CXTranslationUnit); 69 Logger &operator<<(const FileEntry *FE); 70 Logger &operator<<(CXCursor cursor); 71 Logger &operator<<(CXSourceLocation); 72 Logger &operator<<(CXSourceRange); 73 Logger &operator<<(CXString); 74 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; } 75 Logger &operator<<(const char *Str) { 80 Logger &operator<<(unsigned long N) { LogOS << N; return *this; } 81 Logger &operator<<(long N) { LogOS << N ; return *this; } [all …]
|
/external/eigen/Eigen/src/Eigen2Support/ |
D | Cwise.h | 66 operator*(const MatrixBase<OtherDerived> &other) const; 70 operator/(const MatrixBase<OtherDerived> &other) const; 97 operator+(const Scalar& scalar) const; 101 operator+(const Scalar& scalar, const Cwise& mat) 104 ExpressionType& operator+=(const Scalar& scalar); 107 operator-(const Scalar& scalar) const; 109 ExpressionType& operator-=(const Scalar& scalar); 112 inline ExpressionType& operator*=(const MatrixBase<OtherDerived> &other); 115 inline ExpressionType& operator/=(const MatrixBase<OtherDerived> &other); 118 operator<(const MatrixBase<OtherDerived>& other) const; [all …]
|
/external/ceres-solver/include/ceres/internal/ |
D | scoped_ptr.h | 92 C& operator*() const { 96 C* operator->() const { 105 bool operator==(const C* p) const { return ptr_ == p; } 106 bool operator!=(const C* p) const { return ptr_ != p; } 136 template <class C2> bool operator==(scoped_ptr<C2> const& p2) const; 137 template <class C2> bool operator!=(scoped_ptr<C2> const& p2) const; 141 void operator=(const scoped_ptr&); variable 151 inline bool operator==(const C* p1, const scoped_ptr<C>& p2) { 156 inline bool operator==(const C* p1, const scoped_ptr<const C>& p2) { 161 inline bool operator!=(const C* p1, const scoped_ptr<C>& p2) { [all …]
|
/external/libcxx/include/experimental/ |
D | optional | 37 constexpr bool operator==(const optional<T>&, const optional<T>&); 39 constexpr bool operator!=(const optional<T>&, const optional<T>&); 41 constexpr bool operator<(const optional<T>&, const optional<T>&); 43 constexpr bool operator>(const optional<T>&, const optional<T>&); 45 constexpr bool operator<=(const optional<T>&, const optional<T>&); 47 constexpr bool operator>=(const optional<T>&, const optional<T>&); 50 template <class T> constexpr bool operator==(const optional<T>&, nullopt_t) noexcept; 51 template <class T> constexpr bool operator==(nullopt_t, const optional<T>&) noexcept; 52 template <class T> constexpr bool operator!=(const optional<T>&, nullopt_t) noexcept; 53 template <class T> constexpr bool operator!=(nullopt_t, const optional<T>&) noexcept; [all …]
|