HomeSort by relevance Sort by last modified time
    Searched refs:Friend (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /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/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 (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL,
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/PDB/
PDBSymbolTypeFriend.h 1 //===- PDBSymbolTypeFriend.h - friend type info -----------------*- C++ -*-===//
26 DECLARE_PDB_SYMBOL_CONCRETE_TYPE(PDB_SymType::Friend)
  /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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/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
25 /// FriendDecl - Represents the declaration of a friend entity,
31 /// friend int foo(T);
32 /// friend class B;
33 /// friend T; // only in C++0x
34 /// template <typename U> friend class C;
35 /// template <typename U> friend A& operator+=(A&, const U&) { ... }
39 /// The semantic context of a friend decl is its declaring class.
48 // The declaration that's a friend of this class
    [all...]

Completed in 2459 milliseconds

1 2 3 4 5 6