HomeSort by relevance Sort by last modified time
    Searched full:friend (Results 51 - 75 of 2999) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p5.cpp 10 template <class T> friend class A<T>::Member;
23 template <class T> friend void A<T>::f();
45 template <class T> friend void A<T>::g();
71 template <class T> friend struct A<T>::Inner;
89 friend void X<V>::operator+=(U);
99 template<template <class> class T> friend void A<T>::foo();
p4.cpp 5 friend void f6(int) { } // expected-error{{redefinition of}} \
16 friend void f(int x) { } // expected-error{{redefinition}} \
  /external/clang/test/CXX/special/class.ctor/
p6-0x.cpp 18 friend constexpr NonConstexpr1::NonConstexpr1(); // expected-error {{follows non-constexpr declaration}}
19 friend constexpr NonConstexpr2::NonConstexpr2(); // expected-error {{follows non-constexpr declaration}}
56 friend A::A(); // expected-error {{non-constexpr declaration of 'A' follows constexpr declaration}}
90 friend constexpr A::A() noexcept; // expected-error {{follows non-constexpr declaration}}
91 friend constexpr B::B() noexcept;
92 friend constexpr C::C() noexcept;
93 friend constexpr D::D() noexcept;
94 friend constexpr E::E() noexcept; // expected-error {{follows non-constexpr declaration}}
  /external/clang/test/PCH/
friend-template.cpp 17 template <typename T> friend class Recycler;
28 template <typename T> friend class Recycler;
  /external/clang/test/SemaCXX/
warn-missing-prototypes.cpp 28 // PR9519: don't warn about friend functions.
30 friend void I_friend() {}
member-class-11.cpp 6 Y::~Y() { } // expected-error{{non-friend class member '~Y' cannot have a qualified name}}
warn-unused-private-field.cpp 28 friend void undefinedFriendFunction();
33 friend class NotFullyDefined;
34 friend class NotDefined;
39 friend class FriendClass;
40 friend void friendFunction(HasFriend f);
47 template <typename T> friend class TemplateFriend;
165 friend class B;
170 friend class A;
173 // Undefined friends do not make a mutual friend undefined.
177 friend class E
    [all...]
  /external/skia/legacy/src/animator/
SkDisplayInput.h 29 friend class SkDisplayEvent;
30 friend class SkPost;
SkAnimateMaker.h 147 friend class SkAdd;
148 friend class SkAnimateBase;
149 friend class SkDisplayXMLParser;
150 friend class SkAnimator;
151 friend class SkAnimatorScript;
152 friend class SkApply;
153 friend class SkDisplayMovie;
154 friend class SkDisplayType;
155 friend class SkEvents;
156 friend class SkGroup
    [all...]
  /external/skia/src/animator/
SkDisplayInput.h 29 friend class SkDisplayEvent;
30 friend class SkPost;
SkAnimateMaker.h 147 friend class SkAdd;
148 friend class SkAnimateBase;
149 friend class SkDisplayXMLParser;
150 friend class SkAnimator;
151 friend class SkAnimatorScript;
152 friend class SkApply;
153 friend class SkDisplayMovie;
154 friend class SkDisplayType;
155 friend class SkEvents;
156 friend class SkGroup
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/
DefaultOnly.h 18 friend bool operator==(const DefaultOnly& x, const DefaultOnly& y)
20 friend bool operator< (const DefaultOnly& x, const DefaultOnly& y)
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/
DefaultOnly.h 18 friend bool operator==(const DefaultOnly& x, const DefaultOnly& y)
20 friend bool operator< (const DefaultOnly& x, const DefaultOnly& y)
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 212 friend NoMove1::NoMove1(NoMove1 &&); // expected-error {{no matching function}}
213 friend NoMove2::NoMove2(NoMove2 &&); // expected-error {{no matching function}}
214 friend NoMove3::NoMove3(NoMove3 &&); // expected-error {{no matching function}}
215 friend NoMove4::NoMove4(NoMove4 &&); // expected-error {{no matching function}}
216 friend NoMove5::NoMove5(NoMove5 &&); // expected-error {{no matching function}}
217 friend NoMove6::NoMove6(NoMove6 &&); // expected-error {{no matching function}}
218 friend NoMove7::NoMove7(NoMove7 &&); // expected-error {{no matching function}}
219 friend NoMove8::NoMove8(NoMove8 &&); // expected-error {{no matching function}}
220 friend NoMove9::NoMove9(NoMove9 &&);
221 friend NoMove10::NoMove10(NoMove10 &&)
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.fct.spec/
p3.cpp 11 // FIXME: Add test for "If the inline specifier is used in a friend declaration,
  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 23 class Friend {
24 friend class S;
25 Friend(int);
37 Friend f = 42;
  /external/clang/test/Modules/Inputs/
cxx-linkage-cache.h 7 friend bool f(const U &);
  /external/clang/test/SemaTemplate/
crash-8204126.cpp 4 template<int> template<typename T> friend void foo(T) {} // expected-error{{extraneous template parameter list}}
  /external/skia/src/pdf/
SkPDFFontImpl.h 26 friend class SkPDFFont; // to access the constructor
43 friend class SkPDFType0Font; // to access the constructor
59 friend class SkPDFFont; // to access the constructor
76 friend class SkPDFFont; // to access the constructor
  /external/skia/src/svg/
SkSVGStop.h 19 friend class SkSVGGradient;
  /external/clang/lib/AST/
DeclFriend.cpp 1 //===--- DeclFriend.cpp - C++ Friend Declaration AST Node Implementation --===//
10 // This file implements the AST classes related to C++ friend
29 FriendUnion Friend,
33 if (Friend.is<NamedDecl*>()) {
34 NamedDecl *D = Friend.get<NamedDecl*>();
44 // These template parameters are for friend types only.
52 FriendDecl *FD = new (Mem) FriendDecl(DC, L, Friend, FriendL,
  /external/webkit/Source/WebCore/bridge/jni/
JobjectWrapper.h 39 friend class JavaArray;
40 friend class JavaField;
41 friend class JavaFieldJobject;
42 friend class JavaInstance;
43 friend class JavaInstanceJobject;
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.h 242 friend class WebCore::ChromeClientQt;
243 friend class QWebPage;
428 friend class QWebFrame;
429 friend class QWebPagePrivate;
430 friend class QWebView;
431 friend class QWebViewPrivate;
432 friend class QGraphicsWebView;
433 friend class QGraphicsWebViewPrivate;
434 friend class QWebInspector;
435 friend class WebCore::ChromeClientQt
    [all...]
  /external/zlib/src/contrib/iostream/
zfstream.h 46 friend class gzifstream;
47 friend class gzofstream;
48 friend gzofstream &setcompressionlevel( gzofstream &, int );
49 friend gzofstream &setcompressionstrategy( gzofstream &, int );
93 friend gzofstream &operator<<(gzofstream &, const gzomanip<T> &);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/
test_allocator.h 27 template <class U> friend class test_allocator;
68 friend bool operator==(const test_allocator& x, const test_allocator& y)
70 friend bool operator!=(const test_allocator& x, const test_allocator& y)
80 template <class U> friend class test_allocator;
99 friend bool operator==(const test_allocator& x, const test_allocator& y)
101 friend bool operator!=(const test_allocator& x, const test_allocator& y)
110 template <class U> friend class other_allocator;
127 friend bool operator==(const other_allocator& x, const other_allocator& y)
129 friend bool operator!=(const other_allocator& x, const other_allocator& y)

Completed in 380 milliseconds

1 23 4 5 6 7 8 91011>>