Searched refs:importer (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DCxxModuleHandler.h51 CxxModuleHandler(clang::ASTImporter &importer, clang::ASTContext *target);
H A DCxxModuleHandler.cpp21 CxxModuleHandler::CxxModuleHandler(ASTImporter &importer, ASTContext *target) argument
22 : m_importer(&importer),
178 T *createDecl(ASTImporter &importer, Decl *from_d, Args &&... args) { argument
180 importer.RegisterImportedDecl(from_d, to_d);
H A DClangASTImporter.cpp228 ClangASTImporter &importer; member in class:__anon1372::CompleteTagDeclsScope
232 /// \param importer The ClangASTImporter that we should observe.
235 explicit CompleteTagDeclsScope(ClangASTImporter &importer, argument
238 : m_delegate(importer.GetDelegate(dst_ctx, src_ctx)), m_dst_ctx(dst_ctx),
239 m_src_ctx(src_ctx), importer(importer) {
245 importer.GetContextMetadata(m_dst_ctx);
988 static void MaybeCompleteReturnType(ClangASTImporter &importer, argument
1002 importer.CompleteTagDecl(rd);
H A DClangASTSource.h43 /// \param[in] importer
46 const std::shared_ptr<ClangASTImporter> &importer);
386 /// The target's AST importer.
H A DClangExpressionDeclMap.h75 /// \param[in] importer
85 const std::shared_ptr<ClangASTImporter> &importer, ValueObject *ctx_obj);
H A DClangExpressionDeclMap.cpp90 const std::shared_ptr<ClangASTImporter> &importer, ValueObject *ctx_obj)
91 : ClangASTSource(target, importer), m_found_entities(), m_struct_members(),
86 ClangExpressionDeclMap( bool keep_result_in_memory, Materializer::PersistentVariableDelegate *result_delegate, const lldb::TargetSP &target, const std::shared_ptr<ClangASTImporter> &importer, ValueObject *ctx_obj) argument
H A DClangASTSource.cpp56 const std::shared_ptr<ClangASTImporter> &importer)
58 m_ast_importer_sp(importer), m_active_lexical_decls(),
1728 // this shouldn't happen, but we're hardening because the AST importer
54 ClangASTSource( const lldb::TargetSP &target, const std::shared_ptr<ClangASTImporter> &importer) argument
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DExternalASTMerger.h60 /// One importer exists for each source.
186 ASTImporter &importer);
/freebsd-current/crypto/openssl/include/crypto/
H A Dasn1.h80 OSSL_FUNC_keymgmt_import_fn *importer,
/freebsd-current/crypto/openssl/crypto/rsa/
H A Drsa_ameth.c774 OSSL_FUNC_keymgmt_import_fn *importer,
820 rv = importer(to_keydata, selection, params);
901 OSSL_FUNC_keymgmt_import_fn *importer,
905 importer, libctx, propq);
909 OSSL_FUNC_keymgmt_import_fn *importer,
913 importer, libctx, propq);
772 rsa_int_export_to(const EVP_PKEY *from, int rsa_type, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
900 rsa_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
908 rsa_pss_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
/freebsd-current/crypto/openssl/crypto/dsa/
H A Ddsa_ameth.c430 OSSL_FUNC_keymgmt_import_fn *importer,
471 rv = importer(to_keydata, selection, params);
429 dsa_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
/freebsd-current/contrib/llvm-project/clang/lib/Interpreter/
H A DCodeCompletion.cpp267 ASTImporter *importer = local
270 Importer.reset(importer);
/freebsd-current/crypto/openssl/crypto/dh/
H A Ddh_ameth.c453 OSSL_FUNC_keymgmt_import_fn *importer,
501 rv = importer(to_keydata, selection, params);
452 dh_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
/freebsd-current/crypto/openssl/crypto/ec/
H A Dec_ameth.c473 OSSL_FUNC_keymgmt_import_fn *importer,
597 rv = importer(to_keydata, selection, params);
472 ec_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
H A Decx_meth.c349 OSSL_FUNC_keymgmt_import_fn *importer,
378 rv = importer(to_keydata, selection, params);
348 ecx_pkey_export_to(const EVP_PKEY *from, void *to_keydata, OSSL_FUNC_keymgmt_import_fn *importer, OSSL_LIB_CTX *libctx, const char *propq) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8911 lldb_private::ClangASTImporter *importer = nullptr; local
8913 importer = &m_dwarf_ast_parser_up->GetClangASTImporter();
8915 if (!importer && m_pdb_ast_parser_up)
8916 importer = &m_pdb_ast_parser_up->GetClangASTImporter();
8917 if (!importer && m_native_pdb_ast_parser_up)
8918 importer = &m_native_pdb_ast_parser_up->GetClangASTImporter();
8920 if (!importer)
8923 return importer->LayoutRecordType(record_decl, bit_size, alignment,
9570 ClangASTImporter &importer) {
9572 importer
9569 ForgetSource(ASTContext *src_ctx, ClangASTImporter &importer) argument
[all...]
H A DTypeSystemClang.h1295 void ForgetSource(clang::ASTContext *src_ctx, ClangASTImporter &importer);

Completed in 315 milliseconds