Searched defs:operator (Results 1 - 25 of 4330) sorted by last modified time

1234567891011>>

/external/zlib/src/contrib/iostream/
H A Dzfstream.h93 friend gzofstream &operator<<(gzofstream &, const gzomanip<T> &);
101 template<class T> gzofstream &operator<<(gzofstream &s, const gzomanip<T> &m)
/external/zlib/src/contrib/iostream2/
H A Dzstream.h120 * Binary input with the '>' operator.
123 inline izstream& operator>(izstream& zs, T& x) {
136 * Read length of string + the string with the '>' operator.
138 inline izstream& operator>(izstream& zs, char* x) {
269 * Binary output with the '<' operator.
272 inline ozstream& operator<(ozstream& zs, const T& x) {
284 * Write length of string + the string with the '<' operator.
286 inline ozstream& operator<(ozstream& zs, const char* x) {
293 inline ozstream& operator<(ozstream& zs, char* const& x) {
299 * Ascii write with the << operator;
[all...]
/external/zlib/src/contrib/iostream3/
H A Dzfstream.h419 operator<<(gzofstream&,
458 operator<<(gzofstream& s, const gzomanip2<T1,T2>& m)
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp6128 State& State::operator=(const State& other)
/external/webrtc/src/modules/interface/
H A Dmodule_common_types.h148 RTPFragmentationHeader& operator=(const RTPFragmentationHeader& header)
343 EncodedVideoData& operator=(const EncodedVideoData& data)
694 * - The +operator assume that you would never add
696 * state. To do this use the -operator.
749 AudioFrame& operator=(const AudioFrame& rhs);
750 AudioFrame& operator>>=(const WebRtc_Word32 rhs);
751 AudioFrame& operator+=(const AudioFrame& rhs);
752 AudioFrame& operator-=(const AudioFrame& rhs);
842 AudioFrame::operator=(const AudioFrame& rhs)
873 AudioFrame::operator>>
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_ptr.h46 scoped_ptr & operator=(scoped_ptr const &);
70 T& operator*() const {
75 T* operator->() const {
128 scoped_array & operator=(scoped_array const &);
152 T& operator[](std::ptrdiff_t i) const {
197 scoped_ptr_malloc & operator=(scoped_ptr_malloc const &);
216 T& operator*() const {
221 T* operator->() const {
H A Dscoped_refptr.h51 // object, simply use the assignment operator:
89 operator T*() const { return ptr_; }
90 T* operator->() const { return ptr_; }
103 scoped_refptr<T>& operator=(T* p) {
113 scoped_refptr<T>& operator=(const scoped_refptr<T>& r) {
118 scoped_refptr<T>& operator=(const scoped_refptr<U>& r) {
H A Dtick_util.h54 friend TickTime operator+(const TickTime lhs, const WebRtc_Word64 ticks);
55 TickTime& operator+=(const WebRtc_Word64& rhs);
59 friend TickInterval operator-(const TickTime& lhs, const TickTime& rhs);
73 friend TickInterval operator+(const TickInterval& lhs,
75 TickInterval& operator-=(const TickInterval& rhs);
78 friend TickInterval operator-(const TickInterval& lhs,
80 TickInterval& operator+=(const TickInterval& rhs);
82 friend bool operator>(const TickInterval& lhs, const TickInterval& rhs);
83 friend bool operator<=(const TickInterval& lhs, const TickInterval& rhs);
84 friend bool operator<(cons
[all...]
/external/webrtc/src/system_wrappers/source/
H A Datomic32_mac.cc30 WebRtc_Word32 Atomic32::operator++()
35 WebRtc_Word32 Atomic32::operator--()
40 WebRtc_Word32 Atomic32::operator+=(WebRtc_Word32 value)
45 WebRtc_Word32 Atomic32::operator-=(WebRtc_Word32 value)
H A Datomic32_posix.cc30 WebRtc_Word32 Atomic32::operator++()
35 WebRtc_Word32 Atomic32::operator--()
40 WebRtc_Word32 Atomic32::operator+=(WebRtc_Word32 value)
47 WebRtc_Word32 Atomic32::operator-=(WebRtc_Word32 value)
H A Datomic32_win.cc33 WebRtc_Word32 Atomic32::operator++()
39 WebRtc_Word32 Atomic32::operator--()
45 WebRtc_Word32 Atomic32::operator+=(WebRtc_Word32 value)
51 WebRtc_Word32 Atomic32::operator-=(WebRtc_Word32 value)
/external/webrtc/src/system_wrappers/source/spreadsortlib/
H A Dspreadsort.hpp72 //Uses a user-defined comparison operator to find minimum and maximum
1049 inline bool operator()(const data_type &x, const data_type &y) const
1067 inline bool operator()(const data_type &x, const data_type &y) const
1085 inline bool operator()(const data_type &x, const data_type &y) const
/external/webrtc/src/system_wrappers/test/TestSort/
H A DTestSort.cpp67 bool operator()(const DataType &dataX, const DataType &dataY) const
/external/valgrind/main/drd/tests/
H A Dannotate_smart_pointer.cpp52 LONG operator++() { return InterlockedIncrement(&m_value); }
53 LONG operator--() { return InterlockedDecrement(&m_value); }
114 int operator++() { return __sync_add_and_fetch(&m_value, 1); }
115 int operator--() { return __sync_sub_and_fetch(&m_value, 1); }
201 smart_ptr& operator=(const smart_ptr<T>& sp)
207 smart_ptr& operator=(T* const p)
214 smart_ptr& operator=(Q* const q)
220 T* operator->() const
226 T& operator*() const
/external/valgrind/main/massif/tests/
H A Doverloaded-new.cpp0 // operator new(unsigned)
2 // operator new[](unsigned)
3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc)
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc)
32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
37 __attribute__((noinline)) void operator delete (void* p) throw()
42 __attribute__((noinline)) void operator delet
[all...]
/external/valgrind/main/memcheck/tests/
H A Dnew_override.cpp9 void *operator new[](size_t size)
/external/tinyxml/
H A Dtinystr.cpp85 TiXmlString operator + (const TiXmlString & a, const TiXmlString & b)
94 TiXmlString operator + (const TiXmlString & a, const char* b)
104 TiXmlString operator + (const char* a, const TiXmlString & b)
H A Dtinystr.h31 * - fixed buggy compares operator==(), operator<(), and operator>()
32 * - fixed operator+=() to take a const ref argument, following spec.
34 * - added swap(), clear(), size(), capacity(), operator+().
94 // = operator
95 TiXmlString& operator = (const char * copy)
100 // = operator
101 TiXmlString& operator = (const TiXmlString & copy)
107 // += operator
[all...]
H A Dtinyxml.cpp637 void TiXmlElement::operator=( const TiXmlElement& base )
928 void TiXmlDocument::operator=( const TiXmlDocument& copy )
1283 void TiXmlComment::operator=( const TiXmlComment& base )
1418 void TiXmlDeclaration::operator=( const TiXmlDeclaration& copy )
1586 TIXML_ISTREAM & operator >> (TIXML_ISTREAM & in, TiXmlNode & base)
1598 TIXML_OSTREAM & operator<< (TIXML_OSTREAM & out, const TiXmlNode & base)
1606 std::string & operator<< (std::string& out, const TiXmlNode& base )
H A Dtinyxml.h165 (For an unformatted stream, use the << operator.)
187 when the DOM was created from operator>>.
357 void operator=( const TiXmlBase& base ); // not allowed.
390 /** An input stream operator, for every class. Tolerant of newlines and
393 friend std::istream& operator >> (std::istream& in, TiXmlNode& base);
395 /** An output stream operator, for every class. Note that this outputs
399 The operator<< and operator>> are not completely symmetric. Writing
411 friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base);
414 friend std::string& operator<< (st
[all...]
/external/tinyxml2/
H A Dtinyxml2.h200 T& operator[](int i) { TIXMLASSERT( i>= 0 && i < size ); return mem[i]; }
201 const T& operator[](int i) const { TIXMLASSERT( i>= 0 && i < size ); return mem[i]; }
590 XMLNode& operator=( const XMLNode& ); // not supported
644 XMLText& operator=( const XMLText& ); // not supported
669 XMLComment& operator=( const XMLComment& ); // not supported
703 XMLDeclaration& operator=( const XMLDeclaration& ); // not supported
731 XMLUnknown& operator=( const XMLUnknown& ); // not supported
824 void operator=( const XMLAttribute& ); // not supported
1019 void operator=( const XMLElement& ); // not supported
1186 void operator
[all...]
/external/stlport/src/
H A Daligned_buffer.h11 T* operator&() {
15 T const* operator&() const {
H A Dcomplex_io.cpp30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) {
74 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) {
101 operator>>(basic_istream<char, char_traits<char> >& __is, complex<long double>& __z) {
130 operator>>(basic_istream<wchar_t, char_traits<wchar_t> >&, complex<float>&);
133 operator>>(basic_istream<wchar_t, char_traits<wchar_t> >&, complex<double>&);
137 operator>>(basic_istream<wchar_t, char_traits<wchar_t> >&, complex<long double>&);
140 operator<<(basic_ostrea
[all...]
H A Dfacets_byname.cpp103 bool operator()(wchar_t c) const
H A Dlocale.cpp47 bool locale::operator()(const string& __x,
52 bool locale::operator()(const wstring& __x,
173 // Try to use a normalize locale name in order to have the == operator
368 // Assignment operator. Much like the copy constructor: just a bit of
370 const locale& locale::operator=(const locale& L) _STLP_NOTHROW {
395 bool locale::operator==(const locale& L) const {
400 bool locale::operator!=(const locale& L) const {

Completed in 247 milliseconds

1234567891011>>