Home
last modified time | relevance | path

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

123

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Symbol/
DClangASTContext.cpp343 ASTContext *ast = getASTContext(); in HasExternalSource() local
344 if (ast) in HasExternalSource()
345 return ast->getExternalSource () != NULL; in HasExternalSource()
352 ASTContext *ast = getASTContext(); in SetExternalSource() local
353 if (ast) in SetExternalSource()
355 ast->setExternalSource (ast_source_ap); in SetExternalSource()
356 ast->getTranslationUnitDecl()->setHasExternalLexicalStorage(true); in SetExternalSource()
364 ASTContext *ast = getASTContext(); in RemoveExternalSource() local
366 if (ast) in RemoveExternalSource()
369 ast->setExternalSource (empty_ast_source_ap); in RemoveExternalSource()
[all …]
/freebsd-10-stable/bin/sh/tests/expansion/
Dtrim2.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 …]
Dtrim1.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?'
Dtrim5.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
Dplus-minus5.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
Dplus-minus4.08 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
Dtrim3.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
Dassign1.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
Dplus-minus3.03 e= q='?' a='*' t=texttext s='ast*que?non' p='/et[c]/' w='a b c' b='{{(#)}}'
/freebsd-10-stable/bin/sh/tests/parser/
Dheredoc2.012 s='ast*que?non' sq=\' dq=\"
17 )" = "ast*que?non"'
25 ${s#ast}
30 ${s##"ast"}
35 ${s##'$sq'ast'$sq'}
Dheredoc8.012 s='ast*que?non' sq=\' dq=\"
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Symbol/
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 …]
DClangNamespaceDecl.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()
DClangASTType.h280 SetClangType (clang::ASTContext *ast, lldb::clang_type_t type) in SetClangType() argument
282 m_ast = ast; in SetClangType()
287 SetClangType (clang::ASTContext *ast, clang::QualType qual_type);
/freebsd-10-stable/sys/vm/
Dredzone.c131 struct stack ast, fst; in redzone_check() local
138 bcopy(haddr, &ast, sizeof(ast)); in redzone_check()
139 haddr += sizeof(ast); in redzone_check()
157 stack_print_ddb(&ast); in redzone_check()
176 stack_print_ddb(&ast); in redzone_check()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/DataFormatters/
DNSArray.cpp101 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext(); in NSArrayMSyntheticFrontEnd() local
102 if (ast) in NSArrayMSyntheticFrontEnd()
103 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy); in NSArrayMSyntheticFrontEnd()
210 clang::ASTContext *ast = valobj_sp->GetClangType().GetASTContext(); in NSArrayISyntheticFrontEnd() local
211 if (ast) in NSArrayISyntheticFrontEnd()
212 m_id_type = ClangASTType(ast, ast->ObjCBuiltinIdTy); in NSArrayISyntheticFrontEnd()
DNSDictionary.cpp39 clang::ASTContext *ast = target_ast_context->getASTContext(); in GetLLDBNSPairType() local
41 if (ast) in GetLLDBNSPairType()
45 clang::IdentifierInfo &myIdent = ast->Idents.get(type_name); in GetLLDBNSPairType()
46 clang::DeclarationName myName = ast->DeclarationNames.getIdentifier(&myIdent); in GetLLDBNSPairType()
48 … clang::DeclContext::lookup_const_result result = ast->getTranslationUnitDecl()->lookup(myName); in GetLLDBNSPairType()
54 clang_type.SetClangType(ast, clang::QualType(record_decl->getTypeForDecl(), 0)); in GetLLDBNSPairType()
DCXXFormatterFunctions.cpp521 clang::ASTContext* ast = valobj.GetClangType().GetASTContext(); in WCharStringSummaryProvider() local
523 if (!ast) in WCharStringSummaryProvider()
526 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar); in WCharStringSummaryProvider()
609 clang::ASTContext* ast = valobj.GetClangType().GetASTContext(); in WCharSummaryProvider() local
611 if (!ast) in WCharSummaryProvider()
614 ClangASTType wchar_clang_type = ClangASTContext::GetBasicType(ast, lldb::eBasicTypeWChar); in WCharSummaryProvider()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DDataExtractor.cpp1815 clang::ASTContext *ast = clang_ast->getASTContext(); in Dump() local
1816 if (ast) in Dump()
1824 if (item_bit_size == ast->getTypeSize(ast->FloatTy)) in Dump()
1827 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->FloatTy), apint); in Dump()
1830 else if (item_bit_size == ast->getTypeSize(ast->DoubleTy)) in Dump()
1835 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->DoubleTy), apint); in Dump()
1839 else if (item_bit_size == ast->getTypeSize(ast->LongDoubleTy)) in Dump()
1852 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->LongDoubleTy), apint); in Dump()
1860 … llvm::APFloat apfloat (ast->getFloatTypeSemantics(ast->LongDoubleTy), apint); in Dump()
1866 else if (item_bit_size == ast->getTypeSize(ast->HalfTy)) in Dump()
[all …]
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Driver/
DCC1Options.td270 def ast_merge : Separate<["-"], "ast-merge">,
271 MetaVarName<"<ast file>">,
302 def ast_dump_filter : Separate<["-"], "ast-dump-filter">,
304 HelpText<"Use with -ast-dump or -ast-print to dump/print only AST declaration"
306 " -ast-list to list all filterable declaration node names.">;
307 def ast_dump_lookups : Flag<["-"], "ast-dump-lookups">,
333 def ast_print : Flag<["-"], "ast-print">,
335 def ast_list : Flag<["-"], "ast-list">,
337 def ast_dump : Flag<["-"], "ast-dump">,
339 def ast_view : Flag<["-"], "ast-view">,
DTypes.def82 TYPE("ast", AST, INVALID, "ast", "u")
/freebsd-10-stable/tools/tools/usbtest/
Dusb_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()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/
DSymbolFileSymtab.cpp85 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext() local
87 return ast; in GetClangASTContext()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp524 ClangASTContext &ast = m_obj_file->GetModule()->GetClangASTContext(); in GetClangASTContext() local
534 ast.SetExternalSource (ast_source_ap); in GetClangASTContext()
536 return ast; in GetClangASTContext()
1466 clang::ASTContext *ast = GetClangASTContext().getASTContext(); in ParseTemplateDIE() local
1484 template_param_infos.args.push_back (clang::TemplateArgument (*ast, in ParseTemplateDIE()
1551 ClangASTContext &ast = GetClangASTContext(); in ParseClassTemplateDecl() local
1553 return ast.CreateClassTemplateDecl (decl_ctx, in ParseClassTemplateDecl()
5720 ClangASTContext &ast = GetClangASTContext(); in ParseType() local
5808 clang_type = ast.GetBasicType(eBasicTypeNullPtr); in ParseType()
5815 clang_type = ast.GetBuiltinTypeForDWARFEncodingAndBitSize (type_name_cstr, in ParseType()
[all …]
/freebsd-10-stable/sys/mips/include/
Dframe.h44 register_t ast; member

123