/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
H A D | PlatformNetBSD.cpp | 214 TypeSystemClang *ast = m_type_system.get(); in GetSiginfoType() local 217 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() 218 CompilerType uint_type = ast->GetBasicType(eBasicTypeUnsignedInt); in GetSiginfoType() 219 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType() 220 CompilerType long_long_type = ast->GetBasicType(eBasicTypeLongLong); in GetSiginfoType() 221 CompilerType voidp_type = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetSiginfoType() 229 CompilerType sigval_type = ast->CreateRecordType( in GetSiginfoType() 232 ast->StartTagDeclarationDefinition(sigval_type); in GetSiginfoType() 233 ast->AddFieldToRecordType(sigval_type, "sival_int", int_type, in GetSiginfoType() 235 ast in GetSiginfoType() [all...] |
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
H A D | PlatformFreeBSD.cpp | 195 TypeSystemClang *ast = m_type_system.get(); in GetSiginfoType() local 198 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() 199 CompilerType uint_type = ast->GetBasicType(eBasicTypeUnsignedInt); in GetSiginfoType() 200 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType() 201 CompilerType voidp_type = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetSiginfoType() 207 CompilerType sigval_type = ast->CreateRecordType( in GetSiginfoType() 210 ast->StartTagDeclarationDefinition(sigval_type); in GetSiginfoType() 211 ast->AddFieldToRecordType(sigval_type, "sival_int", int_type, in GetSiginfoType() 213 ast->AddFieldToRecordType(sigval_type, "sival_ptr", voidp_type, in GetSiginfoType() 215 ast in GetSiginfoType() [all...] |
/freebsd/bin/sh/tests/expansion/ |
H A D | trim2.0 | 2 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}' 24 testcase 'set -- $s' '1|ast*que?non' 25 testcase 'set -- ${s%\?*}' '1|ast*que' 26 testcase 'set -- "${s%\?*}"' '1|ast*que' 27 testcase 'set -- ${s%\**}' '1|ast' 28 testcase 'set -- "${s%\**}"' '1|ast' 29 testcase 'set -- ${s%"$q"*}' '1|ast*que' 30 testcase 'set -- "${s%"$q"*}"' '1|ast*que' 31 testcase 'set -- ${s%"$a"*}' '1|ast' 32 testcase 'set -- "${s%"$a"*}"' '1|ast' [all …]
|
H A D | trim1.0 | 2 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}' 42 testcase 'set -- ${s%[?]*}' '1|ast*que' 43 testcase 'set -- "${s%[?]*}"' '1|ast*que' 44 testcase 'set -- ${s%[*]*}' '1|ast' 45 testcase 'set -- "${s%[*]*}"' '1|ast' 64 testcase 'set -- ${s%"${s#????}"}' '1|ast*' 65 testcase 'set -- ${s%"${s#????????}"}' '1|ast*que?' 71 testcase 'set -- "${s%"${s#????}"}"' '1|ast*' 72 testcase 'set -- "${s%"${s#????????}"}"' '1|ast*que?'
|
H A D | trim5.0 | 2 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
|
H A D | plus-minus5.0 | 2 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
|
H A D | plus-minus4.0 | 7 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
|
H A D | trim3.0 | 2 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 632 ASTContext &ast = getASTContext(); in SetExternalSource() local 633 ast.getTranslationUnitDecl()->setHasExternalLexicalStorage(true); in SetExternalSource() 634 ast.setExternalSource(ast_source_up); in SetExternalSource() 708 TypeSystemClang *TypeSystemClang::GetASTContext(clang::ASTContext *ast) { in GetASTContext() argument 709 TypeSystemClang *clang_ast = GetASTMap().Lookup(ast); in GetASTContext() 739 ASTContext &ast, QualType qual_type) { in QualTypeMatchesBitSize() argument 740 uint64_t qual_type_bit_size = ast.getTypeSize(qual_type); in QualTypeMatchesBitSize() 747 ASTContext &ast = getASTContext(); in GetBuiltinTypeForEncodingAndBitSize() local 750 if (QualTypeMatchesBitSize(bit_size, ast, ast.VoidPtrTy)) in GetBuiltinTypeForEncodingAndBitSize() 751 return GetType(ast.VoidPtrTy); in GetBuiltinTypeForEncodingAndBitSize() [all …]
|
H A D | TypeSystemClang.h | 189 static bool GetCompleteDecl(clang::ASTContext *ast, clang::Decl *decl); 267 clang::ASTContext &ast = getASTContext(); variable 269 decl_context = ast.getTranslationUnitDecl(); 271 clang::IdentifierInfo &myIdent = ast.Idents.get(type_name); 273 ast.DeclarationNames.getIdentifier(&myIdent); 519 static CompilerType GetFloatTypeFromBitSize(clang::ASTContext *ast, 1118 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
/freebsd/bin/sh/tests/parser/ |
H A D | heredoc2.0 | 11 s='ast*que?non' sq=\' dq=\" 16 )" = "ast*que?non"' 24 ${s#ast} 29 ${s##"ast"} 34 ${s##'$sq'ast'$sq'}
|
H A D | heredoc8.0 | 11 s='ast*que?non' sq=\' dq=\"
|
/freebsd/sys/kern/ |
H A D | subr_trap.c | 209 void (*ae_f)(struct thread *td, int ast); 219 ast_register(int ast, int flags, int tdp, in ast_register() argument 224 MPASS(ast < TDA_MAX); in ast_register() 227 ae = &ast_entries[ast]; in ast_register() 243 ast_deregister(int ast) in ast_deregister() argument 247 MPASS(ast < TDA_MAX); in ast_deregister() 248 ae = &ast_entries[ast]; in ast_deregister() 283 ast_sched_mask(struct thread *td, int ast) in ast_sched_mask() argument 286 td->td_ast |= ast; in ast_sched_mask() 370 ast(struct trapframe *framep) in ast() function
|
H A D | kern_clock.c | 453 int ast; in hardclock_itimer() local 455 ast = 0; in hardclock_itimer() 462 ast |= TDAI(TDA_ALRM); in hardclock_itimer() 469 ast |= TDAI(TDA_PROF); in hardclock_itimer() 472 if (ast != 0) in hardclock_itimer() 473 ast_sched_mask(td, ast); in hardclock_itimer()
|
/freebsd/sys/vm/ |
H A D | redzone.c | 133 struct stack ast, fst; in redzone_check() local 140 bcopy(haddr, &ast, sizeof(ast)); in redzone_check() 141 haddr += sizeof(ast); in redzone_check() 159 stack_print_ddb(&ast); in redzone_check() 178 stack_print_ddb(&ast); in redzone_check()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | NameSearchContext.cpp | 28 clang::ASTContext &ast = lldb_ast->getASTContext(); in AddVarDecl() local 31 ast, const_cast<DeclContext *>(m_decl_context), SourceLocation(), in AddVarDecl() 56 clang::ASTContext &ast = lldb_ast->getASTContext(); in AddFunDecl() local 65 context = LinkageSpecDecl::Create(ast, context, SourceLocation(), in AddFunDecl() 79 ast, context, SourceLocation(), SourceLocation(), decl_name, qual_type, in AddFunDecl() 101 ParmVarDecl::Create(ast, const_cast<DeclContext *>(context), in AddFunDecl()
|
H A D | ClangExternalASTSourceCallbacks.h | 33 ClangExternalASTSourceCallbacks(TypeSystemClang &ast) : m_ast(ast) {} in ClangExternalASTSourceCallbacks() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 109 clang::ASTContext &ast = clang_ast.getASTContext(); in GetBuiltinTypeForPDBEncodingAndBitSize() local 123 if (width == ast.getTypeSize(ast.LongTy)) in GetBuiltinTypeForPDBEncodingAndBitSize() 125 ast.LongTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize() 126 if (width == ast.getTypeSize(ast.LongLongTy)) in GetBuiltinTypeForPDBEncodingAndBitSize() 128 ast.LongLongTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize() 131 if (width == ast.getTypeSize(ast.UnsignedLongTy)) in GetBuiltinTypeForPDBEncodingAndBitSize() 133 ast.UnsignedLongTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize() 134 if (width == ast.getTypeSize(ast.UnsignedLongLongTy)) in GetBuiltinTypeForPDBEncodingAndBitSize() 136 ast.UnsignedLongLongTy.getAsOpaquePtr()); in GetBuiltinTypeForPDBEncodingAndBitSize() 139 if (width == ast.getTypeSize(ast.WCharTy)) in GetBuiltinTypeForPDBEncodingAndBitSize() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
H A D | NSIndexPath.cpp | 58 auto ast = ScratchTypeSystemClang::GetForTarget( in Update() local 60 if (!ast) in Update() 63 m_uint_star_type = ast->GetPointerSizedIntType(false); in Update()
|
/freebsd/contrib/dialog/po/ |
H A D | ast.po | 14 "Language-Team: Asturian <ubuntu-l10n-ast@lists.ubuntu.com>\n" 15 "Language: ast\n"
|
/freebsd/tools/tools/usbtest/ |
H A D | usb_modem_test.c | 177 struct usb_cdc_abstract_state ast; in usb_modem_control_ep_test() local 239 USETW(ast.wState, state); in usb_modem_control_ep_test() 241 if (libusb20_dev_request_sync(p->usb_dev, &setup, &ast, NULL, 250, 0)) { in usb_modem_control_ep_test()
|
/freebsd/sys/contrib/device-tree/src/arm/aspeed/ |
H A D | aspeed-bmc-facebook-galaxy100.dts | 16 ast-adc-hwmon {
|
H A D | aspeed-bmc-facebook-wedge100.dts | 16 ast-adc-hwmon {
|
H A D | aspeed-bmc-facebook-wedge40.dts | 16 ast-adc-hwmon {
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 68 DWARFASTParserClang::DWARFASTParserClang(TypeSystemClang &ast) in DWARFASTParserClang() argument 69 : DWARFASTParser(Kind::DWARFASTParserClang), m_ast(ast), in DWARFASTParserClang() 243 static void PrepareContextToReceiveMembers(TypeSystemClang &ast, in PrepareContextToReceiveMembers() argument 260 CompilerType type = ast.GetTypeForDecl(tag_decl_ctx); in PrepareContextToReceiveMembers() 276 ast.StartTagDeclarationDefinition(type); in PrepareContextToReceiveMembers() 278 ast.SetDeclIsForcefullyCompleted(tag_decl_ctx); in PrepareContextToReceiveMembers() 279 ast.CompleteTagDeclarationDefinition(type); in PrepareContextToReceiveMembers() 1464 auto ast = in ParseInheritance() local 1466 if (ast == nullptr) in ParseInheritance() 1525 ast->SetObjCSuperClass(class_clang_type, base_class_clang_type); in ParseInheritance() [all …]
|