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

1 2

  /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.
50 FriendDecl *FD = new (C, DC, Extra) FriendDecl(DC, L, Friend, FriendL,
DeclTemplate.cpp     [all...]
DeclBase.cpp 570 case Friend:
785 /// a friend function the parent lookup context is the lexical context, which
786 /// is the class in which the friend is declared.
837 // Friend function declarations are dependent if their *lexical*
    [all...]
  /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.
46 // The declaration that's a friend of this class
    [all...]
DeclTemplate.h 455 /// get one of these is in a friend declaration like the following:
460 /// friend void foo<>(T);
632 template <class decl_type> friend class RedeclarableTemplate;
731 friend class ASTReader;
732 friend class ASTDeclReader;
733 friend class ASTDeclWriter;
789 friend class FunctionDecl;
888 friend class ASTDeclReader;
889 friend class ASTDeclWriter;
    [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;
115 struct NotDeleted6c { Friend a; };
137 struct NotDeleted7i : Friend {};
139 struct NotDeleted7j : virtual Friend {};
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_variable.c 53 for (var_ptr = var; var_ptr; var_ptr = var_ptr->Friend) {
227 var = var->Friend;
263 struct rc_variable * friend)
265 assert(var->Dst.Index == friend->Dst.Index);
266 while(var->Friend) {
267 var = var->Friend;
269 var->Friend = friend;
301 for (var = list_ptr->Item; var; var = var->Friend) {
352 * "friends" and they are linked together via the Friend attribute
483 struct rc_variable * friend; local
    [all...]
radeon_variable.h 53 /* A friend is a variable that shares a reader with another variable.
55 struct rc_variable * Friend;
67 struct rc_variable * friend);
radeon_pair_regalloc.c 291 for (var_ptr = variable; var_ptr; var_ptr = var_ptr->Friend) {
310 var_ptr = var_ptr->Friend) {
654 var_b = var_b->Friend;
656 var_a = var_a->Friend;
radeon_optimize.c 791 for (var = writer_list->Item; var; var = var->Friend) {
818 for (var = writer_list->Item; var; var = var->Friend) {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 53 for (var_ptr = var; var_ptr; var_ptr = var_ptr->Friend) {
227 var = var->Friend;
263 struct rc_variable * friend)
265 assert(var->Dst.Index == friend->Dst.Index);
266 while(var->Friend) {
267 var = var->Friend;
269 var->Friend = friend;
301 for (var = list_ptr->Item; var; var = var->Friend) {
352 * "friends" and they are linked together via the Friend attribute
483 struct rc_variable * friend; local
    [all...]
radeon_variable.h 53 /* A friend is a variable that shares a reader with another variable.
55 struct rc_variable * Friend;
67 struct rc_variable * friend);
radeon_pair_regalloc.c 291 for (var_ptr = variable; var_ptr; var_ptr = var_ptr->Friend) {
310 var_ptr = var_ptr->Friend) {
654 var_b = var_b->Friend;
656 var_a = var_a->Friend;
radeon_optimize.c 791 for (var = writer_list->Item; var; var = var->Friend) {
818 for (var = writer_list->Item; var; var = var->Friend) {
  /external/clang/lib/Sema/
SemaAccess.cpp 103 // extern or friend which happens to be the canonical
190 friend struct AccessTarget;
325 DeclContext *Friend) {
326 if (Friend == Context)
329 assert(!Friend->isDependentContext() &&
335 if (Friend->isFileContext())
343 // in 'friend'.
344 static bool MightInstantiateTo(Sema &S, CanQualType Context, CanQualType Friend) {
345 if (Friend == Context)
348 if (!Friend->isDependentType() && !Context->isDependentType()
    [all...]
SemaTemplate.cpp     [all...]
SemaDeclCXX.cpp 604 // C++11 [dcl.fct.default]p4: If a friend declaration specifies a default
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 206 case Decl::Friend:
ASTReaderDecl.cpp     [all...]
ASTWriterDecl.cpp 184 // This happens when we instantiate a class with a friend declaration or a
    [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 74 case Decl::Friend:
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js 115 "dynamic_cast explicit export friend inline late_check " +
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
android_3p-bundle.js 115 "dynamic_cast explicit export friend inline late_check " +
    [all...]

Completed in 858 milliseconds

1 2