HomeSort by: relevance | last modified time | path
    Searched refs:Referenced (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Object.cpp 55 Sym.Referenced = false;
62 It->second->Referenced = true;
COFFObjcopy.cpp 170 // If we need to do per-symbol removals, initialize the Referenced field.
189 // Explicitly removing a referenced symbol is an error.
190 if (Sym.Referenced)
198 if (!Sym.Referenced) {
209 // GNU objcopy keeps referenced local symbols and external symbols
Object.h 92 bool Referenced;
121 // Set the Referenced field on all Symbols, based on relocations in
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
Object.h 112 bool Referenced = false;
158 /// The Symbol referenced by this entry. It's None if the index is
177 // The referenced symbol entry. Set if !Scattered && Extern.
179 // The referenced section. Set if !Scattered && !Extern.
MachOObjcopy.cpp 84 // Symbols referenced from the indirect symbol table must not be removed.
87 (*ISE.Symbol)->Referenced = true;
98 if (N->Referenced)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 119 /// Labels, declared with 'x:' and referenced with 'goto x'.
122 /// Tags, declared with 'struct foo;' and referenced with
301 /// Whether this declaration was "referenced".
304 /// are regarded as "referenced" but not "used".
305 unsigned Referenced : 1;
383 Implicit(false), Used(false), Referenced(false),
392 Used(false), Referenced(false), TopLevelDeclInObjCContainer(false),
586 /// Whether any declaration of this entity was referenced.
589 /// Whether this declaration was referenced. This should not be relied
591 bool isThisDeclarationReferenced() const { return Referenced; }
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/c-index-test/
c-index-test.c 773 CXCursor Referenced;
796 Referenced = clang_getCursorReferenced(Cursor);
797 if (!clang_equalCursors(Referenced, clang_getNullCursor())) {
798 if (clang_getCursorKind(Referenced) == CXCursor_OverloadedDeclRef) {
799 unsigned I, N = clang_getNumOverloadedDecls(Referenced);
802 CXCursor Ovl = clang_getOverloadedDecl(Referenced, I);
813 CXSourceLocation Loc = clang_getCursorLocation(Referenced);
818 if (clang_getCursorKind(Referenced) == CXCursor_TypedefDecl) {
819 CXType T = clang_getCursorType(Referenced);
821 CXType Underlying = clang_getTypedefDeclUnderlyingType(Referenced);
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
ELFObjcopy.cpp 242 return !Sym.Referenced &&
296 // The purpose of this loop is to mark symbols referenced by sections
332 if (!Config.OnlySection.empty() && !Sym.Referenced &&
Object.h 638 bool Referenced = false;
Object.cpp 763 "referenced by the symbol table '%s'",
905 "referenced by the relocation section '%s'",
1014 Reloc.RelocSymbol->Referenced = true;
1044 "referenced by the relocation section '%s'",
1049 // SecToApplyRel contains a section referenced by sh_info field. It keeps
1064 "referenced by the section '%s'",
1083 "referenced by the group section '%s'",
1096 "referenced by the section '%s[%d]'",
1103 Sym->Referenced = true;
2143 // (e.g. the removed section is referenced by a relocation)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclBase.cpp 469 if (Referenced)
474 if (I->Referenced)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaTemplate.cpp 3810 // This is the first time we have referenced this class template
4392 // arguments was referenced but not declared, reuse that
4524 // This is the first time we have referenced this variable template
9134 // deduction by making sure it wasn't referenced, and then reset the deleted
9652 // arguments was referenced but not declared, reuse that
10598 Decl *Referenced = nullptr;
10716 Referenced = Result.getFoundDecl();
10722 Referenced = *Result.begin();
10737 if (Referenced)
10738 Diag(Referenced->getLocation()
    [all...]
SemaDeclCXX.cpp 1455 // If the type of the member is T, the referenced type is cv T, where cv is
4694 ValueDecl *Referenced = cast<MemberExpr>(MemRef)->getMemberDecl();
4695 return Referenced->getType()->isRValueReferenceType();
8639 // happen when we're not actually marking the function referenced. (This is
8645 // we are not permitted to mark its callees as referenced.
14941 // Mark the call operator referenced (and add to pending instantiations
17282 // If this is an out-of-line declaration, marking it referenced will
17367 // Mark all of the virtual members of this class as referenced, so
17476 // Be sure that the destructor is accessible and is marked as referenced.

Completed in 62 milliseconds