reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/Basic/Builtins.h
   27 class IdentifierTable;
tools/clang/lib/Serialization/ASTReaderInternals.h
   33 class IdentifierTable;
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.h
   18 class IdentifierTable;
tools/lldb/include/lldb/Core/ClangForward.h
   69 class IdentifierTable;

References

tools/clang/include/clang/AST/ASTContext.h
  579   IdentifierTable &Idents;
 1070   ASTContext(LangOptions &LOpts, SourceManager &SM, IdentifierTable &idents,
tools/clang/include/clang/Basic/Builtins.h
   81   void initializeBuiltins(IdentifierTable &Table, const LangOptions& LangOpts);
  178   void forgetBuiltin(unsigned ID, IdentifierTable &Table);
tools/clang/include/clang/Basic/IdentifierTable.h
  854   static Selector constructSetterSelector(IdentifierTable &Idents,
tools/clang/include/clang/Edit/EditedSource.h
   69   IdentifierTable IdentTable;
tools/clang/include/clang/Lex/Preprocessor.h
  228   mutable IdentifierTable Identifiers;
  911   IdentifierTable &getIdentifierTable() { return Identifiers; }
  912   const IdentifierTable &getIdentifierTable() const { return Identifiers; }
tools/clang/include/clang/Serialization/ASTReader.h
 2340   IdentifierTable &getIdentifierTable();
tools/clang/lib/ARCMigrate/TransAPIUses.cpp
   40     IdentifierTable &ids = Pass.Ctx.Idents;
tools/clang/lib/ARCMigrate/TransGCCalls.cpp
   29     IdentifierTable &Ids = MigrateCtx.Pass.Ctx.Idents;
tools/clang/lib/AST/ASTContext.cpp
  830                        IdentifierTable &idents, SelectorTable &sels,
tools/clang/lib/Basic/Builtins.cpp
   90 void Builtin::Context::initializeBuiltins(IdentifierTable &Table,
  109 void Builtin::Context::forgetBuiltin(unsigned ID, IdentifierTable &Table) {
tools/clang/lib/Basic/IdentifierTable.cpp
  157                        const LangOptions &LangOpts, IdentifierTable &Table) {
  182                                   IdentifierTable &Table) {
  191                            IdentifierTable &Table) {
  632 SelectorTable::constructSetterSelector(IdentifierTable &Idents,
tools/clang/lib/Format/FormatToken.h
  684   AdditionalKeywords(IdentifierTable &IdentTable) {
tools/clang/lib/Format/FormatTokenLexer.h
  101   IdentifierTable IdentTable;
tools/clang/lib/Sema/SemaLookup.cpp
 3771       auto &Idents = S.Context.Idents;
tools/clang/lib/Serialization/ASTReader.cpp
 4299     for (IdentifierTable::iterator Id = PP.getIdentifierTable().begin(),
 9718 IdentifierTable &ASTReader::getIdentifierTable() {
tools/clang/lib/Tooling/Syntax/Tokens.cpp
  253   IdentifierTable Identifiers(LO);
tools/clang/tools/clang-rename/ClangRename.cpp
  141   IdentifierTable Table(Options);
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.cpp
   25                            IdentifierTable &IdentTable) {
   71   IdentTable = std::make_unique<IdentifierTable>(getLangOpts());
tools/clang/tools/extra/clang-tidy/google/IntegerTypesCheck.h
   40   std::unique_ptr<IdentifierTable> IdentTable;
tools/clang/unittests/AST/ASTVectorTest.cpp
   38   IdentifierTable Idents;
tools/lldb/include/lldb/Symbol/ClangASTContext.h
   91   clang::IdentifierTable *getIdentifierTable();
  990   std::unique_ptr<clang::IdentifierTable> m_identifier_table_up;
tools/lldb/source/Symbol/ClangASTContext.cpp
  734 IdentifierTable *ClangASTContext::getIdentifierTable() {
  737         new IdentifierTable(*ClangASTContext::getLanguageOptions(), nullptr));
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/unique_ptr.h
   68         default_delete(const default_delete<_Up>&) noexcept { }
   72       operator()(_Tp* __ptr) const
   74 	static_assert(!is_void<_Tp>::value,
   76 	static_assert(sizeof(_Tp)>0,
  122 	  using type = _Up*;
  137       using pointer = typename _Ptr<_Tp, _Dp>::type;
  161 	typename __uniq_ptr_impl<_Tp, _Up>::_DeleterConstraint::type;
  163       __uniq_ptr_impl<_Tp, _Dp> _M_t;
  166       using pointer	  = typename __uniq_ptr_impl<_Tp, _Dp>::pointer;
  167       using element_type  = _Tp;
  252 	unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
  297           __safe_conversion_up<_Up, _Ep>,
  301 	operator=(unique_ptr<_Up, _Ep>&& __u) noexcept
  689     operator==(const unique_ptr<_Tp, _Dp>& __x, nullptr_t) noexcept
  811     { typedef unique_ptr<_Tp> __single_object; };
  823     inline typename _MakeUniq<_Tp>::__single_object
  824     make_unique(_Args&&... __args)
  825     { return unique_ptr<_Tp>(new _Tp(std::forward<_Args>(__args)...)); }
usr/include/c++/7.4.0/type_traits
  215     : public __is_void_helper<typename remove_cv<_Tp>::type>::type
  581     : public __or_<is_lvalue_reference<_Tp>,
  582                    is_rvalue_reference<_Tp>>::type
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  601     : public __not_<__or_<is_function<_Tp>, is_reference<_Tp>,
  602                           is_void<_Tp>>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
  638     : public __or_<is_object<_Tp>, is_reference<_Tp>>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;
 1633     { typedef _Tp   type; };
 1645     { typedef _Tp&   type; };
 1650     : public __add_lvalue_reference_helper<_Tp>