Searched refs:ast (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp343 ASTContext *ast = getASTContext(); local
344 if (ast)
345 return ast->getExternalSource () != NULL;
352 ASTContext *ast = getASTContext(); local
353 if (ast)
355 ast->setExternalSource (ast_source_ap);
356 ast->getTranslationUnitDecl()->setHasExternalLexicalStorage(true);
357 //ast->getTranslationUnitDecl()->setHasExternalVisibleStorage(true);
364 ASTContext *ast = getASTContext(); local
366 if (ast)
529 QualTypeMatchesBitSize(const uint64_t bit_size, ASTContext *ast, QualType qual_type) argument
543 GetBuiltinTypeForEncodingAndBitSize(ASTContext *ast, Encoding encoding, uint32_t bit_size) argument
670 GetBasicType(ASTContext *ast, const ConstString &name) argument
695 GetBasicType(ASTContext *ast, lldb::BasicType basic_type) argument
811 ASTContext *ast = getASTContext(); local
1021 GetUnknownAnyType(clang::ASTContext *ast) argument
1031 ASTContext *ast = getASTContext(); local
1041 GetTranslationUnitDecl(clang::ASTContext *ast) argument
1082 ASTContext *ast = type1.GetASTContext(); local
1108 ASTContext *ast = m_ast_ap.get(); local
1120 ASTContext *ast = m_ast_ap.get(); local
1136 ASTContext *ast = getASTContext(); local
1185 CreateTemplateParameterList(ASTContext *ast, const ClangASTContext::TemplateParameterInfos &template_param_infos, llvm::SmallVector<NamedDecl *, 8> &template_param_decls) argument
1244 ASTContext *ast = getASTContext(); local
1291 ASTContext *ast = getASTContext(); local
1367 ASTContext *ast = getASTContext(); local
1388 ASTContext *ast = getASTContext(); local
1682 FieldIsBitfield( ASTContext *ast, FieldDecl* field, uint32_t& bitfield_bit_size ) argument
1746 ASTContext *ast = getASTContext(); local
1808 ASTContext *ast = getASTContext(); local
1914 ASTContext *ast = getASTContext(); local
1961 CreateFunctionType(ASTContext *ast, const ClangASTType& result_type, const ClangASTType *args, unsigned num_args, bool is_variadic, unsigned type_quals) argument
1990 ASTContext *ast = getASTContext(); local
2020 ASTContext *ast = getASTContext(); local
2064 ASTContext *ast = getASTContext(); local
2136 GetFloatTypeFromBitSize(clang::ASTContext *ast, size_t bit_size) argument
2154 GetCompleteDecl(clang::ASTContext *ast, clang::Decl *decl) argument
2205 SetMetadata(clang::ASTContext *ast, const void *object, ClangASTMetadata &metadata) argument
2217 GetMetadata(clang::ASTContext *ast, const void *object) argument
[all...]
H A DClangASTType.cpp57 GetCompleteQualType (ASTContext *ast, QualType qual_type, bool allow_completion = true) argument
69 return GetCompleteQualType (ast, array_type->getElementType(), allow_completion);
90 if (ast)
92 ExternalASTSource *external_ast_source = ast->getExternalSource();
126 if (ast)
128 ExternalASTSource *external_ast_source = ast->getExternalSource();
143 return GetCompleteQualType (ast, cast<TypedefType>(qual_type)->getDecl()->getUnderlyingType(), allow_completion);
146 return GetCompleteQualType (ast, cast<ElaboratedType>(qual_type)->getNamedType(), allow_completion);
149 return GetCompleteQualType (ast, cast<ParenType>(qual_type)->desugar(), allow_completion);
176 ClangASTType::ClangASTType (clang::ASTContext *ast, argument
1490 SetClangType(clang::ASTContext *ast, clang::QualType qual_type) argument
1571 GetFullyUnqualifiedType_Impl(ASTContext *ast, QualType qual_type) argument
2652 GetObjCFieldAtIndex(clang::ASTContext *ast, ObjCInterfaceDecl *class_interface_decl, size_t idx, std::string& name, uint64_t *bit_offset_ptr, uint32_t *bitfield_bit_size_ptr, bool *is_bitfield_ptr) argument
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangNamespaceDecl.h29 ClangNamespaceDecl (clang::ASTContext *ast, clang::NamespaceDecl *namespace_decl) : argument
30 m_ast (ast),
77 SetASTContext (clang::ASTContext *ast) argument
79 m_ast = ast;
H A DClangASTContext.h109 GetCompleteDecl (clang::ASTContext *ast,
122 SetMetadata (clang::ASTContext *ast,
133 GetMetadata (clang::ASTContext *ast,
144 GetBuiltinTypeForEncodingAndBitSize (clang::ASTContext *ast,
152 GetBasicType (clang::ASTContext *ast, lldb::BasicType type);
155 GetBasicType (clang::ASTContext *ast, const ConstString &name);
170 GetUnknownAnyType(clang::ASTContext *ast);
182 GetTranslationUnitDecl (clang::ASTContext *ast);
309 FieldIsBitfield (clang::ASTContext *ast,
347 CreateFunctionType (clang::ASTContext *ast,
[all...]
H A DClangASTType.h280 SetClangType (clang::ASTContext *ast, lldb::clang_type_t type) argument
282 m_ast = ast;
287 SetClangType (clang::ASTContext *ast, clang::QualType qual_type);
/freebsd-10.2-release/sys/vm/
H A Dredzone.c131 struct stack ast, fst; local
138 bcopy(haddr, &ast, sizeof(ast));
139 haddr += sizeof(ast);
157 stack_print_ddb(&ast);
176 stack_print_ddb(&ast);
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DNSArray.cpp101 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext(); local
102 if (ast)
103 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy);
210 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext(); local
211 if (ast)
212 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy);
H A DCXXFormatterFunctions.cpp521 clang::ASTContext* ast = valobj.GetClangType().GetASTContext();
523 if (!ast)
526 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar);
609 clang::ASTContext* ast = valobj.GetClangType().GetASTContext(); local
611 if (!ast)
614 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar);
H A DNSDictionary.cpp39 clang::ASTContext *ast = target_ast_context->getASTContext(); local
41 if (ast)
45 clang::IdentifierInfo &myIdent = ast->Idents.get(type_name);
46 clang::DeclarationName myName = ast->DeclarationNames.getIdentifier(&myIdent);
48 clang::DeclContext::lookup_const_result result = ast->getTranslationUnitDecl()->lookup(myName);
54 clang_type.SetClangType(ast, clang::QualType(record_decl->getTypeForDecl(), 0));
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Core/
H A DDataExtractor.cpp1815 clang::ASTContext *ast = clang_ast->getASTContext(); local
1816 if (ast)
1824 if (item_bit_size == ast->getTypeSize(ast->FloatTy))
1827 llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->FloatTy), apint);
1830 else if (item_bit_size == ast->getTypeSize(ast->DoubleTy))
1835 llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast
[all...]
/freebsd-10.2-release/sys/mips/include/
H A Dframe.h44 register_t ast; member in struct:trapframe
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
H A DSymbolFileSymtab.cpp85 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); local
87 return ast;
/freebsd-10.2-release/tools/tools/usbtest/
H A Dusb_modem_test.c178 struct usb_cdc_abstract_state ast; local
240 USETW(ast.wState, state);
242 if (libusb20_dev_request_sync(p->usb_dev, &setup, &ast, NULL, 250, 0)) {
/freebsd-10.2-release/sys/i386/i386/
H A Dexception.s379 call ast
/freebsd-10.2-release/sys/kern/
H A Dsubr_trap.c118 printf("failed to set signal flags properly for ast()\n");
155 * at ast() checkpoint, which is past userret().
197 ast(struct trapframe *framep) function
207 CTR3(KTR_SYSC, "ast: thread %p (pid %d, %s)", td, p->p_pid,
209 KASSERT(TRAPF_USERMODE(framep), ("ast in kernel mode"));
221 * ast() will be called again.
/freebsd-10.2-release/sys/mips/mips/
H A Ddb_interface.c71 { "at", DB_OFFSET(ast), db_frame },
/freebsd-10.2-release/gnu/usr.bin/gdb/kgdb/
H A Dtrgt_mips.c111 offsetof(struct trapframe, ast),
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp524 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext();
534 ast.SetExternalSource (ast_source_ap);
536 return ast;
1466 clang::ASTContext *ast = GetClangASTContext().getASTContext(); local
1484 template_param_infos.args.push_back (clang::TemplateArgument (*ast,
1551 ClangASTContext &ast = GetClangASTContext(); local
1553 return ast.CreateClassTemplateDecl (decl_ctx,
5720 ClangASTContext &ast = GetClangASTContext(); local
5808 clang_type = ast.GetBasicType(eBasicTypeNullPtr);
5815 clang_type = ast
[all...]
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Scalar/
H A DLICM.cpp675 AliasSetTracker &ast, DebugLoc dl, int alignment,
679 AST(ast), DL(dl), Alignment(alignment), TBAATag(TBAATag) {}
670 LoopPromoter(Value *SP, const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S, SmallPtrSet<Value*, 4> &PMA, SmallVectorImpl<BasicBlock*> &LEB, SmallVectorImpl<Instruction*> &LIP, AliasSetTracker &ast, DebugLoc dl, int alignment, MDNode *TBAATag) argument
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DAliasSetTracker.cpp610 AliasSetTracker::ASTCallbackVH::ASTCallbackVH(Value *V, AliasSetTracker *ast) argument
611 : CallbackVH(V), AST(ast) {}
/freebsd-10.2-release/sys/ia64/ia64/
H A Dinterrupt.c340 ast(tf);
/freebsd-10.2-release/sys/dev/usb/serial/
H A Dumodem.c912 struct usb_cdc_abstract_state ast; local
923 USETW(ast.wState, state);
925 return (usbd_do_request(udev, NULL, &req, &ast));
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangASTSource.cpp32 // We are in the process of destruction, don't create clang ast context on demand
1725 clang::ASTContext *ast = type.GetASTContext(); local
1727 clang::NamedDecl *Decl = VarDecl::Create(*ast,
1755 clang::ASTContext *ast = type.GetASTContext(); local
1761 clang::FunctionDecl *func_decl = FunctionDecl::Create (*ast,
1790 parm_var_decls.push_back(ParmVarDecl::Create (*ast,
/freebsd-10.2-release/sys/i386/xen/
H A Dexception.s356 call ast
/freebsd-10.2-release/sys/arm/arm/
H A Dexception.S260 bl _C_LABEL(ast); /* ast(frame) */ \

Completed in 238 milliseconds

12