HomeSort by relevance Sort by last modified time
    Searched full:operator (Results 676 - 700 of 6015) sorted by null

<<21222324252627282930>>

  /external/chromium/chrome/browser/autocomplete/
history_provider_util.cc 26 bool HistoryMatch::operator==(const GURL& url) const {
  /external/chromium/chrome/browser/autofill/
fax_number.h 18 FaxNumber& operator=(const FaxNumber& fax);
home_phone_number.h 19 HomePhoneNumber& operator=(const HomePhoneNumber& phone);
  /external/chromium/chrome/browser/download/
download_types.cc 24 DownloadSaveInfo& DownloadSaveInfo::operator=(const DownloadSaveInfo& info) {
  /external/chromium/net/base/
scoped_cert_chain_context.h 20 void operator()(const CERT_CHAIN_CONTEXT* x) const {
  /external/chromium/third_party/libjingle/source/talk/session/phone/
codec.h 62 AudioCodec& operator=(const AudioCodec& c) {
72 bool operator==(const AudioCodec& c) const {
81 bool operator!=(const AudioCodec& c) const {
112 VideoCodec& operator=(const VideoCodec& c) {
122 bool operator==(const VideoCodec& c) const {
131 bool operator!=(const VideoCodec& c) const {
158 VideoEncoderConfig& operator=(const VideoEncoderConfig& config) {
165 bool operator==(const VideoEncoderConfig& config) const {
171 bool operator!=(const VideoEncoderConfig& config) const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
StoreRef.h 36 StoreRef &operator=(StoreRef const &);
38 bool operator==(const StoreRef &x) const {
42 bool operator!=(const StoreRef &x) const { return !operator==(x); }
  /external/clang/test/Analysis/
cxx-crashes.cpp 25 operator A() { return A(); }
  /external/clang/test/CXX/class.access/
p6.cpp 35 operator Public ();
38 operator Protected (); // expected-note {{declared protected here}}
41 operator Private (); // expected-note {{declared private here}}
48 Protected prot = a; // expected-error {{'operator Protected' is a protected member}}
49 Private priv = a; // expected-error {{'operator Private' is a private member}}
176 operator UnspecifiedBoolType() const; // expected-note {{implicitly declared private here}}
180 if (a) return; // expected-error {{'operator void *(class test8::A::*)(void) const' is a private member of 'test8::A'}}
186 operator char*() const; // expected-note {{implicitly declared private here}}
190 delete a; // expected-error {{'operator char *' is a private member of 'test9::A'}}
  /external/clang/test/CXX/stmt.stmt/stmt.dcl/
p3.cpp 39 Z operator=(const Z&);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp 12 T& operator[](int i) const;
19 operator T*() const;
29 X& X0<X, Y>::operator[](int i) const {
62 X0<T, U>::operator T*() const {
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 14 operator int();
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-function.cpp 45 function& operator=(const function& other) {
51 function& operator=(const F& f) {
62 result_type operator()(Args... args) const {
72 T operator()(T x, T y) { return x + y; }
  /external/clang/test/CXX/temp/temp.param/
p15.cpp 12 Y<1 >> 2> *y2; // expected-warning{{use of right-shift operator ('>>') in template argument will require parentheses in C++11}}
  /external/clang/test/CodeGenCXX/
copy-in-cplus-object.cpp 13 TestObject& operator=(const TestObject& inObj);
copy-initialization.cpp 10 operator const Foo&() const;
delete-two-arg.cpp 6 struct A { void operator delete(void*,size_t); int x; };
23 void *operator new[](size_t);
24 void operator delete[](void *, size_t);
59 void operator delete[](void *, size_t);
expr.cpp 32 // Incomplete type in conditional operator.
  /external/clang/test/CodeGenObjCXX/
property-derived-to-base-conv.mm 7 A *operator->();
  /external/clang/test/Index/
complete-qualified.cpp 19 // CHECK-CC1: CXXMethod:{ResultType Foo &}{TypedText operator=}{LeftParen (}{Placeholder const Foo &}{RightParen )} (35)
cursor-ref-names.cpp 4 int operator[](T);
20 inst.operator[](1);
22 inst.Base<int>::operator[](1);
36 // CHECK: cursor-ref-names.cpp:19:5: CallExpr=operator[]:4:9 SingleRefName=[19:9 - 19:12] RefName=[19:9 - 19:10] RefName=[19:11 - 19:12] Extent=[19:5 - 19:12]
38 // CHECK: cursor-ref-names.cpp:19:9: DeclRefExpr=operator[]:4:9 RefName=[19:9 - 19:10] RefName=[19:11 - 19:12] Extent=[19:9 - 19:12]
39 // CHECK: cursor-ref-names.cpp:20:5: CallExpr=operator[]:4:9 Extent=[20:5 - 20:23]
40 // CHECK: cursor-ref-names.cpp:20:10: MemberRefExpr=operator[]:4:9 SingleRefName=[20:10 - 20:20] RefName=[20:10 - 20:18] RefName=[20:18 - 20:19] RefName=[20:19 - 20:20] Extent=[20:5 - 20:20]
42 // CHECK: cursor-ref-names.cpp:22:5: CallExpr=operator[]:4:9 Extent=[22:5 - 22:34]
43 // CHECK: cursor-ref-names.cpp:22:21: MemberRefExpr=operator[]:4:9 SingleRefName=[22:10 - 22:31] RefName=[22:10 - 22:21] RefName=[22:21 - 22:29] RefName=[22:29 - 22:30] RefName=[22:30 - 22:31] Extent=[22:5 - 22:31]
  /external/clang/test/Parser/
MicrosoftExtensions.cpp 36 __uuidof(0); // expected-error {{you need to include <guiddef.h> before using the '__uuidof' operator}}
72 __uuidof(struct_without_uuid); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
74 __uuidof(struct_without_uuid*); // expected-error {{cannot call operator __uuidof on a type with no GUID}}
77 __uuidof(var_without_uuid);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
79 __uuidof(var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
81 __uuidof(&var_without_uuid[1]);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
84 __uuidof(1);// expected-error {{cannot call operator __uuidof on a type with no GUID}}
118 CtorCall& operator=(const CtorCall& that);
123 CtorCall& CtorCall::operator=(const CtorCall& that)
cxx-ext-delete-default.cpp 5 A& operator=(const A&) = delete; // expected-warning {{accepted as a C++11 extension}}
  /external/clang/test/Preprocessor/
expr_invalid_tok.c 2 // RUN: not %clang_cc1 -E %s 2>&1 | grep 'token is not a valid binary operator in a preprocessor subexpression'
  /external/clang/test/SemaCXX/
PR10243.cpp 17 T2& operator=(T2&) = default;

Completed in 402 milliseconds

<<21222324252627282930>>