Searched refs:frontend (Results 1 - 21 of 21) sorted by relevance

/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Frontend/
H A DLangStandard.h18 namespace frontend { namespace in namespace:clang
58 bool hasLineComments() const { return Flags & frontend::LineComment; }
61 bool isC89() const { return Flags & frontend::C89; }
64 bool isC99() const { return Flags & frontend::C99; }
67 bool isC11() const { return Flags & frontend::C11; }
70 bool isCPlusPlus() const { return Flags & frontend::CPlusPlus; }
73 bool isCPlusPlus11() const { return Flags & frontend::CPlusPlus11; }
76 bool isCPlusPlus1y() const { return Flags & frontend::CPlusPlus1y; }
79 bool hasDigraphs() const { return Flags & frontend::Digraphs; }
82 bool isGNUMode() const { return Flags & frontend
[all...]
H A DFrontendOptions.h25 namespace frontend { namespace in namespace:clang
44 InitOnly, ///< Only execute frontend initialization.
116 /// FrontendOptions - Options for controlling the behavior of the frontend.
124 unsigned ShowStats : 1; ///< Show frontend performance
209 /// The frontend action to perform.
210 frontend::ActionKind ProgramAction;
247 ProgramAction(frontend::ParseSyntaxOnly)
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DHeaderSearchOptions.h22 namespace frontend { namespace in namespace:clang
49 frontend::IncludeDirGroup Group;
57 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
151 void AddPath(StringRef Path, frontend::IncludeDirGroup Group,
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInvocation.cpp654 Opts.ProgramAction = frontend::ParseSyntaxOnly;
660 Opts.ProgramAction = frontend::ASTDeclList; break;
662 Opts.ProgramAction = frontend::ASTDump; break;
664 Opts.ProgramAction = frontend::ASTPrint; break;
666 Opts.ProgramAction = frontend::ASTView; break;
668 Opts.ProgramAction = frontend::DumpRawTokens; break;
670 Opts.ProgramAction = frontend::DumpTokens; break;
672 Opts.ProgramAction = frontend::EmitAssembly; break;
674 Opts.ProgramAction = frontend::EmitBC; break;
676 Opts.ProgramAction = frontend
[all...]
H A DLangStandards.cpp14 using namespace clang::frontend;
H A DInitPreprocessor.cpp699 if (FEOpts.ProgramAction == frontend::RewriteObjC)
703 if (FEOpts.ProgramAction == frontend::RunAnalysis)
H A DInitHeaderSearch.cpp33 using namespace clang::frontend;
H A DCompilerInstance.cpp686 if (getFrontendOpts().ProgramAction == frontend::RewriteObjC)
H A DASTUnit.cpp1574 FrontendOpts.ProgramAction = frontend::GeneratePCH;
/freebsd-10.3-release/sys/cam/ctl/
H A Dctl_frontend.h95 * The first is to let CTL know whether the frontend
216 struct ctl_frontend *frontend; member in struct:ctl_port
272 * Find the frontend by its name. Returns NULL if not found.
289 * Called to set the WWNN and WWPN for a particular frontend.
295 * Called to bring a particular frontend online.
300 * Called to take a particular frontend offline.
H A Dctl_frontend.c89 * Call the frontend's initialization routine.
115 * Call the frontend's shutdown routine.
202 STAILQ_INSERT_TAIL(&port->frontend->port_list, port, fe_links);
235 STAILQ_REMOVE(&port->frontend->port_list, port, ctl_port, fe_links);
H A Dctl_frontend_ioctl.c100 port->frontend = &cfi_frontend;
132 * Data movement routine for the CTL ioctl frontend port.
H A Dctl_tpc_local.c92 port->frontend = &tpcl_frontend;
H A Dctl_frontend_cam_sim.c33 * CTL frontend to CAM SIM interface. This allows access to CTL LUNs via
116 "CAM Target Layer SIM frontend");
140 port->frontend = &cfcs_frontend;
167 * If the CTL frontend didn't tell us what our WWNN/WWPN is, go
H A Dscsi_ctl.c369 port->frontend = &ctlfe_frontend;
387 * frontend structure itself.
436 * are no outstanding commands for this frontend?
1651 * using with the frontend code so it's reported
H A Dctl_frontend_iscsi.c33 * CTL frontend for the iSCSI protocol.
82 static MALLOC_DEFINE(M_CFISCSI, "cfiscsi", "Memory used for CTL iSCSI frontend");
2010 port->frontend = &cfiscsi_frontend;
H A Dctl.c1137 port->frontend = &ha_frontend;
1141 } else if (port->frontend == &ha_frontend) {
2594 * particular frontend type to see if we
2927 port->frontend->name, port->port_type,
2946 * to drop the lock before calling the frontend's dump
3246 "</frontend_type>\n", port->frontend->name);
4731 * case of the internal initiator frontend.
4777 * Drop the lock before we call the frontend's disable
4780 * XXX KDM what happens if the frontend list changes while
12715 * called in the frontend'
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/FrontendTool/
H A DExecuteCompilerInvocation.cpp34 using namespace clang::frontend;
144 if (CI.getFrontendOpts().ProgramAction != frontend::MigrateSource) {
170 // If there are any AST files to merge, create a frontend action
232 // Create and execute the frontend action.
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Expression/
H A DClangExpressionParser.cpp110 using namespace clang::frontend;
168 // If there are any AST files to merge, create a frontend action
/freebsd-10.3-release/usr.sbin/ctladm/
H A Dctladm.c437 warnx("%s: ambiguous frontend type %s",
442 warnx("%s: invalid frontend type %s",
478 * The user can specify either one or more frontend types (-t), or
479 * a specific frontend, but not both.
481 * If the user didn't specify a frontend type or number, set it to
3648 char *frontend = NULL; local
3661 frontend = strdup(optarg);
3740 if ((frontend != NULL)
3741 && (strcmp(port->frontend_type, frontend) != 0))
3859 " ctladm portlist [-f frontend] [
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReader.cpp4053 frontend::IncludeDirGroup Group
4054 = static_cast<frontend::IncludeDirGroup>(Record[Idx++]);

Completed in 323 milliseconds