HomeSort by relevance Sort by last modified time
    Searched full:friend (Results 26 - 50 of 2302) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/class/class.friend/
p1-ambiguous.cpp 3 // Make sure that friend declarations don't introduce ambiguous
18 friend int c_func(foo *a);
19 friend int cpp_func(foo *a);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6.cpp 7 friend void g() const; // expected-error{{type qualifier is not allowed on this function}}
12 friend void X::f() const;
13 friend void ::f() const; // expected-error{{type qualifier is not allowed on this function}}
  /external/clang/test/CXX/class.access/class.friend/
p1.cpp 3 // C++'0x [class.friend] p1:
4 // A friend of a class is a function or class that is given permission to use
6 // its friends, if any, by way of friend declarations. Such declarations give
14 friend struct S;
15 friend S* g();
32 friend struct S;
33 friend S* g();
35 friend struct S2;
36 friend struct S2* g2();
75 friend class ClassFriend
    [all...]
p3-cxx0x.cpp 4 friend T;
16 friend typename T::type; // expected-error{{no type named 'type' in 'Y1'}}
  /external/clang/test/SemaCXX/
PR8884.cpp 4 friend struct foo;
warn-missing-prototypes.cpp 28 // PR9519: don't warn about friend functions.
30 friend void I_friend() {}
  /external/webkit/Source/WebKit/qt/Api/
qwebhistory.h 60 friend class QWebHistory;
61 friend class QWebPage;
62 friend class WebCore::FrameLoaderClientQt;
63 friend class QWebHistoryItemPrivate;
64 friend class DumpRenderTreeSupportQt;
65 //friend QDataStream & operator<<(QDataStream& out,const QWebHistoryItem& hist);
66 //friend QDataStream & operator>>(QDataStream& in,QWebHistoryItem& hist);
103 friend class QWebPage;
104 friend class QWebPagePrivate;
105 friend QWEBKIT_EXPORT QDataStream& operator>>(QDataStream&, QWebHistory&)
    [all...]
qwebinspector.h 51 friend class QWebInspectorPrivate;
52 friend class QWebPage;
53 friend class QWebPagePrivate;
54 friend class WebCore::InspectorClientQt;
55 friend class WebCore::InspectorFrontendClientQt;
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/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p3.cpp 7 friend void f();
16 friend void f(A &);
  /external/clang/test/CodeGenCXX/
friend-redecl.cpp 5 friend bool TryFoo(Foo *f2) { return TryFoo(0, f2); }
12 friend bool TryFoo(int, Foo *f3);
  /external/clang/test/SemaTemplate/
friend-template.cpp 7 template<typename T> friend struct Y;
20 template<typename T> friend void f0(T);
21 template<typename T> friend void f1(T);
31 template<typename U> friend struct X0;
35 template<typename U> friend struct X0;
39 template<typename U> friend struct X0;
43 template<typename U> friend void f2(U);
44 template<typename U> friend void f3(U);
65 friend class Foo;
76 template<typename U, U Value> friend struct X2a
    [all...]
crash-8204126.cpp 4 template<int> template<typename T> friend void foo(T) {} // expected-error{{extraneous template parameter list}}
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 5 // a friend declaration in a non-local class first declares a class or
6 // function the friend class or function is a member of the innermost
11 friend struct F0;
12 friend void f0(int);
20 // Ensure we can handle attaching friend declarations to an enclosing namespace
25 friend struct F1;
26 friend void f1(int);
34 // The name of the friend is not found by unqualified lookup (3.4.1) or by
37 // friendship). If a friend function is called, its name may be found by the
40 // in a friend declaration is neither qualified nor a template-id and th
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p1.cpp 15 friend Num operator*(const Num &a, const Rep &n) {
23 friend Num operator+(const Num &a, const Num &b) {
33 friend class Representation;
37 template <typename T> friend bool iszero(const A &a) throw();
42 friend class B_iterator<T>;
64 template <typename T> friend bool has(const A&);
77 template <typename T> friend class HasChecker;
97 friend class User<bool>;
98 friend bool transform<>(Bool, bool);
124 template <class T0> friend class B
    [all...]
p5.cpp 9 template <class T> friend class A<T>::Member;
22 template <class T> friend void A<T>::f();
44 template <class T> friend void A<T>::g();
70 template <class T> friend struct A<T>::Inner;
88 friend void X<V>::operator+=(U);
98 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/chromium/chrome/browser/sessions/
session_id.h 29 friend class NavigationController;
30 friend class SessionService;
31 friend class browser_sync::SessionModelAssociator;
  /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
21 FriendUnion Friend,
24 if (Friend.is<NamedDecl*>()) {
25 NamedDecl *D = Friend.get<NamedDecl*>();
38 FriendDecl *FD = new (C) FriendDecl(DC, L, Friend, FriendL);
  /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/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/zlib/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> &);
  /external/chromium/crypto/
capi_util.cc 26 friend class Singleton<CAPIUtilSingleton>;
27 friend struct DefaultSingletonTraits<CAPIUtilSingleton>;
  /external/clang/test/CXX/temp/temp.param/
p9.cpp 21 template<template<int> class TT = X0> // expected-error{{not permitted on a friend template}}
22 friend void f2();

Completed in 474 milliseconds

12 3 4 5 6 7 8 91011>>