HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 76 - 100 of 7384) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p1.cpp 3 void operator "" p31(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
4 void operator "" _p31(long double);
5 long double operator "" pi(long double); // expected-warning{{user-defined literal suffixes not starting with '_' are reserved}}
p5.cpp 5 int &operator "" _x1 (const char *);
6 double &operator "" _x1 (const char *, size_t);
9 double &i3 = L"foo"_x1; // expected-error {{no matching literal operator}}
11 char &operator "" _x1(const wchar_t *, size_t);
  /external/clang/test/CodeGenCXX/
cxx11-unrestricted-union.cpp 4 A(); A(const A&); A(A&&); A &operator=(const A&); A &operator=(A&&); ~A();
7 B(); B(const B&); B(B&&); B &operator=(const B&); B &operator=(B&&); ~B();
14 U &operator=(const U&);
15 U &operator=(U&&);
26 U &U::operator=(const U&) { return *this; }
27 U &U::operator=(U &&) { return *this; }
34 S &operator=(const S&);
35 S &operator=(S&&)
    [all...]
new-with-default-arg.cpp 5 void* operator new(__typeof(sizeof(int)));
14 void* operator new(__typeof(sizeof(int)), int = 1, int = 4);
24 void* operator new(__typeof(sizeof(int)), int, int = 4);
  /external/clang/test/SemaCXX/
builtin-ptrtomember-overload.cpp 6 operator A*();
20 operator const D *();
24 operator volatile int D::*();
cxx11-ast-print.cpp 4 // CHECK: decltype(nullptr) operator "" _foo(const char *p, decltype(sizeof(int)));
5 auto operator"" _foo(const char *p, decltype(sizeof(int))) -> decltype(nullptr);
7 // CHECK: decltype(""_foo) operator "" _bar(unsigned long long);
8 decltype(""_foo) operator"" _bar(unsigned long long);
10 // CHECK: decltype(42_bar) operator "" _baz(long double);
11 decltype(42_bar) operator"" _baz(long double);
13 // CHECK: decltype(4.5_baz) operator "" _baz(char);
14 decltype(4.5_baz) operator"" _baz(char);
16 // CHECK: const char *operator "" _quux(const char *);
17 const char *operator"" _quux(const char *)
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextStream.h 37 TextStream& operator<<(bool);
38 TextStream& operator<<(int);
39 TextStream& operator<<(unsigned);
40 TextStream& operator<<(long);
41 TextStream& operator<<(unsigned long);
42 TextStream& operator<<(float);
43 TextStream& operator<<(double);
44 TextStream& operator<<(const char*);
45 TextStream& operator<<(const void*);
46 TextStream& operator<<(const String&)
    [all...]
  /ndk/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
typeinfo 20 bool operator==(type_info const & right) const;
21 bool operator!=(type_info const & right) const;
26 type_info & operator=(type_info const & right);
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DigestCalculatorProvider.java 1 package org.bouncycastle.operator;
OperatorCreationException.java 1 package org.bouncycastle.operator;
  /external/clang/test/CXX/dcl.dcl/
p4-0x.cpp 5 constexpr explicit operator bool() { return b; }
9 constexpr operator int() { return 1; }
12 constexpr operator int() { return 1; } // expected-note {{candidate}}
13 constexpr operator long() { return 0; } // expected-note {{candidate}}
  /external/clang/test/CXX/expr/expr.ass/
p9-cxx11.cpp 5 void operator+=(complex);
16 a = { 1 } = b; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
17 a = a + { 4 }; // expected-error {{initializer list cannot be used on the right hand side of operator '+'}}
18 a = { 3 } * { 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '*'}} \
19 expected-error {{initializer list cannot be used on the right hand side of operator '*'}}
27 constexpr int operator=(S s) { return s.a; }
28 constexpr int operator+=(S s) { return s.b; }
33 int k1 = T() = { 1, 2 } = { 3, 4 }; // expected-error {{initializer list cannot be used on the left hand side of operator '='}}
34 int k2 = T() = { 1, 2 } + 1; // expected-error {{initializer list cannot be used on the left hand side of operator '+'}}
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
p2.cpp 7 // // operator T(()[]) const;
12 // operator array() const;
24 // operator T(A1, A2) const () { };
30 operator T* const() const;
  /external/clang/test/SemaTemplate/
instantiate-default-assignment-operator.cpp 4 RefPtr& operator=(const RefPtr&) { int a[sizeof(T) ? -1 : -1];} // expected-error 2 {{array with a negative size}}
5 RefPtr& operator=(const PassRefPtr<T>&);
8 struct A { RefPtr<int> a; }; // expected-note {{instantiation of member function 'RefPtr<int>::operator=' requested here}}
9 struct B : RefPtr<float> { }; // expected-note {{in instantiation of member function 'RefPtr<float>::operator=' requested here}}
  /external/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
  /external/valgrind/main/massif/tests/
new-cpp.cpp 0 // operator new(unsigned)
2 // operator new[](unsigned)
3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_ptrs_specialize.h 7 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }
13 // the following is a workaround for arrow operator problems
18 // Compiler can handle generic -> operator.
20 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(*(*this)); }
22 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { reference x = operator*(); return &x; }
24 # define _STLP_DEFINE_ARROW_OPERATOR pointer operator->() const { return &(operator*()); }

Completed in 728 milliseconds

1 2 34 5 6 7 8 91011>>