Home
last modified time | relevance | path

Searched refs:ast (Results 1 – 25 of 57) sorted by relevance

123

/NextBSD/contrib/llvm/tools/lldb/source/Symbol/
HDClangASTContext.cpp360 ASTContext *ast = getASTContext(); in HasExternalSource() local
361 if (ast) in HasExternalSource()
362 return ast->getExternalSource () != nullptr; in HasExternalSource()
369 ASTContext *ast = getASTContext(); in SetExternalSource() local
370 if (ast) in SetExternalSource()
372 ast->setExternalSource (ast_source_ap); in SetExternalSource()
373 ast->getTranslationUnitDecl()->setHasExternalLexicalStorage(true); in SetExternalSource()
381 ASTContext *ast = getASTContext(); in RemoveExternalSource() local
383 if (ast) in RemoveExternalSource()
386 ast->setExternalSource (empty_ast_source_ap); in RemoveExternalSource()
[all …]
/NextBSD/bin/sh/tests/expansion/
HDtrim2.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
25 testcase 'set -- $s' '1|ast*que?non'
26 testcase 'set -- ${s%\?*}' '1|ast*que'
27 testcase 'set -- "${s%\?*}"' '1|ast*que'
28 testcase 'set -- ${s%\**}' '1|ast'
29 testcase 'set -- "${s%\**}"' '1|ast'
30 testcase 'set -- ${s%"$q"*}' '1|ast*que'
31 testcase 'set -- "${s%"$q"*}"' '1|ast*que'
32 testcase 'set -- ${s%"$a"*}' '1|ast'
33 testcase 'set -- "${s%"$a"*}"' '1|ast'
[all …]
HDtrim1.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
43 testcase 'set -- ${s%[?]*}' '1|ast*que'
44 testcase 'set -- "${s%[?]*}"' '1|ast*que'
45 testcase 'set -- ${s%[*]*}' '1|ast'
46 testcase 'set -- "${s%[*]*}"' '1|ast'
65 testcase 'set -- ${s%"${s#????}"}' '1|ast*'
66 testcase 'set -- ${s%"${s#????????}"}' '1|ast*que?'
72 testcase 'set -- "${s%"${s#????}"}"' '1|ast*'
73 testcase 'set -- "${s%"${s#????????}"}"' '1|ast*que?'
HDtrim5.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
HDplus-minus5.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
HDplus-minus4.08 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
HDtrim3.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
HDassign1.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
HDplus-minus3.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Symbol/
HDClangASTContext.h114 GetCompleteDecl (clang::ASTContext *ast,
127 SetMetadata (clang::ASTContext *ast,
138 GetMetadata (clang::ASTContext *ast,
149 GetBuiltinTypeForEncodingAndBitSize (clang::ASTContext *ast,
157 GetBasicType (clang::ASTContext *ast, lldb::BasicType type);
160 GetBasicType (clang::ASTContext *ast, const ConstString &name);
175 GetUnknownAnyType(clang::ASTContext *ast);
187 GetTranslationUnitDecl (clang::ASTContext *ast);
232 clang::ASTContext *ast = getASTContext(); in GetTypeForIdentifier() local
233 if (ast) in GetTypeForIdentifier()
[all …]
HDClangNamespaceDecl.h29 ClangNamespaceDecl (clang::ASTContext *ast, clang::NamespaceDecl *namespace_decl) : in ClangNamespaceDecl() argument
30 m_ast (ast), in ClangNamespaceDecl()
77 SetASTContext (clang::ASTContext *ast) in SetASTContext() argument
79 m_ast = ast; in SetASTContext()
HDClangASTType.h264 SetClangType (clang::ASTContext *ast, lldb::clang_type_t type) in SetClangType() argument
266 m_ast = ast; in SetClangType()
271 SetClangType (clang::ASTContext *ast, clang::QualType qual_type);
/NextBSD/bin/sh/tests/parser/
HDheredoc2.012 s='ast*que?non' sq=\' dq=\"
17 )" = "ast*que?non"'
25 ${s#ast}
30 ${s##"ast"}
35 ${s##'$sq'ast'$sq'}
HDheredoc8.012 s='ast*que?non' sq=\' dq=\"
/NextBSD/sys/vm/
HDredzone.c130 struct stack ast, fst; in redzone_check() local
137 bcopy(haddr, &ast, sizeof(ast)); in redzone_check()
138 haddr += sizeof(ast); in redzone_check()
156 stack_print_ddb(&ast); in redzone_check()
175 stack_print_ddb(&ast); in redzone_check()
/NextBSD/contrib/llvm/tools/lldb/source/DataFormatters/
HDNSArray.cpp300 …clang::ASTContext *ast = valobj_sp->GetExecutionContextRef().GetTargetSP()->GetScratchClangASTCont… in NSArrayMSyntheticFrontEnd() local
301 if (ast) in NSArrayMSyntheticFrontEnd()
302 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy); in NSArrayMSyntheticFrontEnd()
532 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext(); in NSArrayISyntheticFrontEnd() local
533 if (ast) in NSArrayISyntheticFrontEnd()
534 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy); in NSArrayISyntheticFrontEnd()
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDDataExtractor.cpp1807 clang::ASTContext *ast = clang_ast->getASTContext(); in Dump() local
1808 if (ast) in Dump()
1816 if (item_bit_size == ast->getTypeSize(ast->FloatTy)) in Dump()
1819 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->FloatTy), apint); in Dump()
1822 else if (item_bit_size == ast->getTypeSize(ast->DoubleTy)) in Dump()
1827 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->DoubleTy), apint); in Dump()
1831 else if (item_bit_size == ast->getTypeSize(ast->LongDoubleTy)) in Dump()
1833 … const auto &semantics = ast->getFloatTypeSemantics(ast->LongDoubleTy); in Dump()
1843 else if (item_bit_size == ast->getTypeSize(ast->HalfTy)) in Dump()
1846 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->HalfTy), apint); in Dump()
/NextBSD/tools/tools/usbtest/
HDusb_modem_test.c178 struct usb_cdc_abstract_state ast; in usb_modem_control_ep_test() local
240 USETW(ast.wState, state); in usb_modem_control_ep_test()
242 if (libusb20_dev_request_sync(p->usb_dev, &setup, &ast, NULL, 250, 0)) { in usb_modem_control_ep_test()
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
HDSymbolFileSymtab.cpp85 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext() local
87 return ast; in GetClangASTContext()
/NextBSD/contrib/llvm/tools/clang/include/clang/Driver/
HDCC1Options.td320 def ast_merge : Separate<["-"], "ast-merge">,
321 MetaVarName<"<ast file>">,
350 def ast_dump_filter : Separate<["-"], "ast-dump-filter">,
352 HelpText<"Use with -ast-dump or -ast-print to dump/print only AST declaration"
354 " -ast-list to list all filterable declaration node names.">;
403 def ast_print : Flag<["-"], "ast-print">,
405 def ast_list : Flag<["-"], "ast-list">,
407 def ast_dump : Flag<["-"], "ast-dump">,
409 def ast_dump_lookups : Flag<["-"], "ast-dump-lookups">,
411 def ast_view : Flag<["-"], "ast-view">,
HDTypes.def84 TYPE("ast", AST, INVALID, "ast", "u")
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
HDSymbolFileDWARF.cpp561 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext() local
571 ast.SetExternalSource (ast_source_ap); in GetClangASTContext()
573 return ast; in GetClangASTContext()
1584 clang::ASTContext *ast = GetClangASTContext().getASTContext(); in ParseTemplateDIE() local
1602 template_param_infos.args.push_back (clang::TemplateArgument (*ast, in ParseTemplateDIE()
1669 ClangASTContext &ast = GetClangASTContext(); in ParseClassTemplateDecl() local
1671 return ast.CreateClassTemplateDecl (decl_ctx, in ParseClassTemplateDecl()
5797 ClangASTContext &ast = GetClangASTContext(); in ParseType() local
5885 clang_type = ast.GetBasicType(eBasicTypeNullPtr); in ParseType()
5892 clang_type = ast.GetBuiltinTypeForDWARFEncodingAndBitSize (type_name_cstr, in ParseType()
[all …]
/NextBSD/sys/mips/include/
HDpcb.h87 PTR_LA s0, _C_LABEL(ast) ;\
HDframe.h44 register_t ast; member
/NextBSD/sys/dev/usb/serial/
HDumodem.c917 struct usb_cdc_abstract_state ast; in umodem_set_comm_feature() local
928 USETW(ast.wState, state); in umodem_set_comm_feature()
930 return (usbd_do_request(udev, NULL, &req, &ast)); in umodem_set_comm_feature()

123