HomeSort by relevance Sort by last modified time
    Searched defs:Friend (Results 1 - 8 of 8) sorted by null

  /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/include/clang/AST/
DeclFriend.h 1 //===-- DeclFriend.h - Classes for C++ friend declarations -*- C++ -*------===//
10 // This file defines the section of the AST representing C++ friend
22 /// FriendDecl - Represents the declaration of a friend entity,
28 /// friend int foo(T);
29 /// friend class B;
30 /// friend T; // only in C++0x
31 /// template <typename U> friend class C;
32 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
36 /// The semantic context of a friend decl is its declaring class.
42 // The declaration that's a friend of this class
    [all...]
DeclTemplate.h 412 /// a friend declaration like the following:
416 /// friend void foo<>(T);
594 template <class decl_type> friend class RedeclarableTemplate;
686 friend class ASTDeclReader;
687 friend class ASTDeclWriter;
807 friend class FunctionDecl;
    [all...]
  /external/clang/test/CXX/special/class.ctor/
p5-0x.cpp 9 class Friend {
10 Friend() = default; ~Friend() = default;
11 friend struct NotDeleted6c;
12 friend struct NotDeleted7i;
13 friend struct NotDeleted7j;
14 friend struct NotDeleted7k;
108 struct NotDeleted6c { Friend a; };
130 struct NotDeleted7i : Friend {};
132 struct NotDeleted7j : virtual Friend {};
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 197 class Friend(Expr):
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 176 friend struct AccessTarget;
302 DeclContext *Friend) {
303 if (Friend == Context)
306 assert(!Friend->isDependentContext() &&
312 if (Friend->isFileContext())
320 // in 'friend'.
321 static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) {
322 if (Friend == Context)
325 if (!Friend->isDependentType() && !Context->isDependentType())
334 FunctionDecl *Friend) {
    [all...]
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp     [all...]

Completed in 153 milliseconds