HomeSort by relevance Sort by last modified time
    Searched defs:operator (Results 1226 - 1250 of 6351) sorted by null

<<41424344454647484950>>

  /external/chromium_org/ui/gfx/
transform.h 71 bool operator==(const Transform& rhs) const { return matrix_ == rhs.matrix_; }
72 bool operator!=(const Transform& rhs) const { return matrix_ != rhs.matrix_; }
235 Transform operator*(const Transform& other) const {
240 Transform& operator*=(const Transform& other) {
  /external/chromium_org/v8/src/
smart-pointers.h 56 inline T* operator->() const { return p_; }
58 // You can get the underlying pointer out with the * operator.
59 inline T* operator*() { return p_; }
62 inline T& operator[](size_t i) {
67 const inline T& operator[](size_t i) const {
93 inline SmartPointerBase<Deallocator, T>& operator=(
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 34 void* operator new(size_t bytes, clang::PreprocessingRecord& PR,
38 void operator delete(void* ptr, clang::PreprocessingRecord& PR,
100 void* operator new(size_t bytes, PreprocessingRecord& PR,
102 return ::operator new(bytes, PR, alignment);
105 void* operator new(size_t bytes, void* mem) throw() {
109 void operator delete(void* ptr, PreprocessingRecord& PR,
111 return ::operator delete(ptr, PR, alignment);
114 void operator delete(void*, std::size_t) throw() { }
115 void operator delete(void*, void*) throw() { }
119 void* operator new(size_t bytes) throw()
    [all...]
  /external/clang/test/Analysis/
cstring-syntax-cxx.cpp 10 X operator+(X a, X b) {
operator-calls.cpp 5 bool operator==(const X0&, const X0&);
17 return operator==(a, b);
25 bool operator==(int x) const {
39 operator int() const {
42 operator bool() const {
57 int operator +() const {
64 int operator +() const {
82 // Force a cache-out when we try to conjure a temporary region for the operator call.
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.spec.mfunc/
p1.cpp 13 operator T*();
26 template<class X> A<X*, 2>::operator X*() { return 0; }
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-bind.cpp 44 operator T&() const { return *ptr; }
77 operator=(const tuple<VValues...>& other) {
168 inline bool operator==(const tuple<>&, const tuple<>&) { return true; }
171 bool operator==(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) {
176 bool operator!=(const tuple<TValues...>& t, const tuple<UValues...>& u) {
180 inline bool operator<(const tuple<>&, const tuple<>&) { return false; }
183 bool operator<(const tuple<T, TTail...>& t, const tuple<U, UTail...>& u) {
188 bool operator>(const tuple<TValues...>& t, const tuple<UValues...>& u) {
193 bool operator<=(const tuple<TValues...>& t, const tuple<UValues...>& u) {
198 bool operator>=(const tuple<TValues...>& t, const tuple<UValues...>& u)
    [all...]
  /external/clang/test/CodeGenCXX/
c-linkage.cpp 31 bool operator==(const int& a, const test3_s& b) {
convert-to-fptr.cpp 18 operator fp1() { return f1; }
19 operator fp2() { return f2; }
28 operator fr1() { return f1; }
29 operator fr2() { return f2; }
  /external/clang/test/Index/
cxx-operator-overload.cpp 5 Cls operator +(const Cls &RHS);
13 Cls Cls::operator +(const Cls &RHS) { while (1) {} }
  /external/clang/test/Parser/
warn-dangling-else.cpp 37 void operator<<(const char* s) {}
  /external/eigen/Eigen/src/Core/
CommaInitializer.h 19 * \brief Helper class used by the comma initializer operator
22 * the return type of MatrixBase::operator<<, and most of the time this is the only
25 * \sa \ref MatrixBaseCommaInitRef "MatrixBase::operator<<", CommaInitializer::finished()
47 CommaInitializer& operator,(const Scalar& s)
55 && "Too many rows passed to comma initializer (operator<<)");
58 && "Too many coefficients passed to comma initializer (operator<<)");
66 CommaInitializer& operator,(const DenseBase<OtherDerived>& other)
74 && "Too many rows passed to comma initializer (operator<<)");
77 && "Too many coefficients passed to comma initializer (operator<<)");
93 && "Too few coefficients passed to comma initializer (operator<<)");
    [all...]
EigenBase.h 16 /** Common base class for all classes T such that MatrixBase has an operator=(T) and a constructor MatrixBase(T).
107 Derived& DenseBase<Derived>::operator=(const EigenBase<OtherDerived> &other)
115 Derived& DenseBase<Derived>::operator+=(const EigenBase<OtherDerived> &other)
123 Derived& DenseBase<Derived>::operator-=(const EigenBase<OtherDerived> &other)
136 MatrixBase<Derived>::operator*=(const EigenBase<OtherDerived> &other)
142 /** replaces \c *this by \c *this * \a other. It is equivalent to MatrixBase::operator*=() */
  /external/eigen/doc/examples/
class_CwiseBinaryOp.cpp 10 complex<Scalar> operator()(const Scalar& a, const Scalar& b) const { return complex<Scalar>(a,b); }
class_CwiseUnaryOp.cpp 10 const Scalar operator()(const Scalar& x) const { return x<m_inf ? m_inf : (x>m_sup ? m_sup : x); }
  /external/icu4c/common/
stringpiece.cpp 53 operator==(const StringPiece& x, const StringPiece& y) {
  /external/icu4c/common/unicode/
dtintrv.h 80 * compilers support genuine RTTI. Polymorphic operator==() and clone()
98 * Default assignment operator
101 DateInterval& operator=(const DateInterval&);
104 * Equality operator.
108 virtual UBool operator==(const DateInterval& other) const;
111 * Non-equality operator
115 UBool operator!=(const DateInterval& other) const;
151 DateInterval::operator!=(const DateInterval& other) const {
152 return ( !operator==(other) );
  /external/icu4c/i18n/unicode/
currpinf.h 71 * Assignment operator
75 CurrencyPluralInfo& operator=(const CurrencyPluralInfo& info);
87 * Equal operator.
91 UBool operator==(const CurrencyPluralInfo& info) const;
95 * Not equal operator
99 UBool operator!=(const CurrencyPluralInfo& info) const;
251 CurrencyPluralInfo::operator!=(const CurrencyPluralInfo& info) const { return !operator==(info); }
search.h 262 // operator overloading ----------------------------------------------
265 * Equality operator.
272 virtual UBool operator==(const SearchIterator &that) const;
275 * Not-equal operator.
277 * @return FALSE if operator== returns TRUE, and vice versa.
280 UBool operator!=(const SearchIterator &that) const;
484 * Assignment operator. Sets this iterator to have the same behavior,
489 SearchIterator & operator=(const SearchIterator &that);
566 inline UBool SearchIterator::operator!=(const SearchIterator &that) const
568 return !operator==(that);
    [all...]
  /external/llvm/include/llvm/Object/
MachOUniversal.h 48 bool operator==(const ObjectForArch &Other) const {
62 const ObjectForArch* operator->() const {
66 bool operator==(const object_iterator &Other) const {
69 bool operator!=(const object_iterator &Other) const {
73 object_iterator& operator++() { // Preincrement
  /external/llvm/lib/Support/
PluginLoader.cpp 26 void PluginLoader::operator=(const std::string &Filename) {
  /external/lzma/CPP/Common/
StdOutStream.h 18 operator FILE *() { return _stream; }
22 CStdOutStream & operator<<(CStdOutStream & (* aFunction)(CStdOutStream &));
23 CStdOutStream & operator<<(const char *string);
24 CStdOutStream & operator<<(const wchar_t *string);
25 CStdOutStream & operator<<(char c);
26 CStdOutStream & operator<<(int number);
27 CStdOutStream & operator<<(UInt64 number);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
sm4_dump.cpp 33 std::ostream& operator <<(std::ostream& out, const sm4_op& op)
133 std::ostream& operator <<(std::ostream& out, const sm4_dcl& dcl)
179 std::ostream& operator <<(std::ostream& out, const sm4_insn& insn)
193 std::ostream& operator <<(std::ostream& out, const sm4_program& program)
  /external/openfst/src/script/
weight-class.cc 39 ostream& operator << (ostream &o, const WeightClass &c) {
  /external/oprofile/gui/
oprof_start_config.cpp 108 istream & operator>>(istream & in, config_setting & object)

Completed in 3998 milliseconds

<<41424344454647484950>>