| /freebsd-12-stable/contrib/llvm-project/clang/lib/FrontendTool/ |
| D | ExecuteCompilerInvocation.cpp | 139 std::unique_ptr<FrontendAction> Act = CreateFrontendBaseAction(CI); in CreateFrontendAction() local 140 if (!Act) in CreateFrontendAction() 146 Act = std::make_unique<FixItRecompile>(std::move(Act)); in CreateFrontendAction() 157 Act = std::make_unique<arcmt::CheckAction>(std::move(Act)); in CreateFrontendAction() 160 Act = std::make_unique<arcmt::ModifyAction>(std::move(Act)); in CreateFrontendAction() 163 Act = std::make_unique<arcmt::MigrateAction>(std::move(Act), in CreateFrontendAction() 171 Act = std::make_unique<arcmt::ObjCMigrateAction>(std::move(Act), in CreateFrontendAction() 181 Act = std::make_unique<ASTMergeAction>(std::move(Act), in CreateFrontendAction() 184 return Act; in CreateFrontendAction() 275 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang)); in ExecuteCompilerInvocation() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Driver/ |
| D | InputInfo.h | 41 const Action* Act; variable 52 : Kind(Nothing), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {} in InputInfo() 55 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) { in InputInfo() 59 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) { in InputInfo() 65 : Kind(InputArg), Act(nullptr), Type(_Type), BaseInput(_BaseInput) { in InputInfo() 70 : Kind(InputArg), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) { in InputInfo() 80 const Action *getAction() const { return Act; } in getAction() 81 void setAction(const Action *A) { Act = A; } in setAction()
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Interpreter/ |
| D | IncrementalParser.cpp | 52 std::unique_ptr<FrontendAction> Act; in IncrementalAction() local 60 return Act; in IncrementalAction() 66 Act = CreateFrontendAction(CI); in IncrementalAction() 73 Act.reset(new EmitLLVMOnlyAction(&LLVMCtx)); in IncrementalAction() 76 return Act; in IncrementalAction() 125 Act = std::make_unique<IncrementalAction>(*CI, LLVMCtx, Err); in IncrementalParser() 128 CI->ExecuteAction(*Act); in IncrementalParser() 135 IncrementalParser::~IncrementalParser() { Act->FinalizeAction(); } in ~IncrementalParser() 220 static CodeGenerator *getCodeGen(FrontendAction *Act) { in getCodeGen() argument 221 IncrementalAction *IncrAct = static_cast<IncrementalAction *>(Act); in getCodeGen() [all …]
|
| D | IncrementalParser.h | 42 std::unique_ptr<IncrementalAction> Act; variable
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-stress/ |
| D | llvm-stress.cpp | 192 virtual void Act() = 0; 197 Act(); in ActN() 345 void Act() override { in Act() function 359 void Act() override { in Act() function 379 void Act() override { in Act() function 423 void Act() override { in Act() function 474 void Act() override { in Act() function 486 void Act() override { in Act() function 503 void Act() override { in Act() function 531 void Act() override { in Act() function [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/ |
| D | SemaAttr.cpp | 269 AlignPackStack.Act(PragmaLoc, Action, StringRef(), Info); in ActOnPragmaOptionsAlign() 384 AlignPackStack.Act(PragmaLoc, Action, SlotLabel, Info); in ActOnPragmaPack() 488 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 497 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 504 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 508 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 511 FpPragmaStack.Act(Loc, Sema::PSK_Push_Set, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 519 FpPragmaStack.Act(Loc, Action, StringRef(), NewFPFeatures); in ActOnPragmaFloatControl() 539 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode); in ActOnPragmaMSVtorDisp() 543 void Sema::PragmaStack<Sema::AlignPackInfo>::Act(SourceLocation PragmaLocation, in Act() function in Sema::PragmaStack::AlignPackInfo [all …]
|
| /freebsd-12-stable/usr.bin/calendar/calendars/ |
| D | calendar.southafrica | 3 * Note: The Public Holidays Act (Act No 36 of 1994) determines whenever
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/ |
| D | PrecompiledPreamble.cpp | 412 std::unique_ptr<PrecompilePreambleAction> Act; in Build() local 413 Act.reset(new PrecompilePreambleAction( in Build() 416 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) in Build() 431 if (llvm::Error Err = Act->Execute()) in Build() 437 Act->EndSourceFile(); in Build() 439 if (!Act->hasEmittedPreamblePCH()) in Build()
|
| D | ASTUnit.cpp | 1196 std::unique_ptr<TopLevelDeclTrackerAction> Act( in Parse() local 1201 ActCleanup(Act.get()); in Parse() 1203 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) in Parse() 1212 if (llvm::Error Err = Act->Execute()) { in Parse() 1219 Act->EndSourceFile(); in Parse() 1588 FrontendAction *Act = Action; in LoadFromCompilerInvocationAction() local 1591 if (!Act) { in LoadFromCompilerInvocationAction() 1593 Act = TrackerAct.get(); in LoadFromCompilerInvocationAction() 1600 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) { in LoadFromCompilerInvocationAction() 1620 if (llvm::Error Err = Act->Execute()) { in LoadFromCompilerInvocationAction() [all …]
|
| D | CompilerInstance.cpp | 933 bool CompilerInstance::ExecuteAction(FrontendAction &Act) { in ExecuteAction() argument 945 if (!Act.PrepareToExecute(*this)) in ExecuteAction() 970 if (hasSourceManager() && !Act.isModelParsingAction()) in ExecuteAction() 973 if (Act.BeginSourceFile(*this, FIF)) { in ExecuteAction() 974 if (llvm::Error Err = Act.Execute()) { in ExecuteAction() 977 Act.EndSourceFile(); in ExecuteAction()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/Unix/ |
| D | Program.inc | 384 struct sigaction Act, Old; 395 memset(&Act, 0, sizeof(Act)); 396 Act.sa_handler = TimeOutHandler; 397 sigemptyset(&Act.sa_mask); 398 sigaction(SIGALRM, &Act, &Old);
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/CodeGen/ |
| D | CodeGenAction.h | 46 unsigned Act; variable
|
| /freebsd-12-stable/contrib/tzdata/ |
| D | northamerica | 92 # However, DST was imposed by the Standard Time Act of 1918, which 125 # Before the Uniform Time Act of 1966 took effect in 1967, observance of 233 # up to 1967-04-01 (when most provisions of the Uniform Time Act of 1966 293 # H.R. 6, Energy Policy Act of 2005, SEC. 110. DAYLIGHT SAVINGS. 294 # (a) Amendment.--Section 3(a) of the Uniform Time Act of 1966 (15 301 # date of enactment of this Act or March 1, 2007, whichever is later. 778 # cites Session Laws of Hawaii 1933, "Act. 90 (approved 26 Apr. 1933) 779 # and Act 163 (approved 21 May 1933)." 784 # 2011-01-19) at American University's Pence Law Library. Page 85: "Act 787 # hour...This Act shall take effect upon its approval. Approved this 26th [all …]
|
| D | australasia | 398 # Daylight Saving Act 1998 610 # ... in the Cook Island Act of 1915-10-11, online at 615 # This was changed in the Cook Island Amendment Act of 1952-10-16 ... 730 # Samoa's Daylight Saving Time Act 2009 is available here, but does not 732 # http://www.parliament.gov.ws/documents/acts/Daylight%20Saving%20Act%20%202009%20(English)%20-%20F… 756 # The International Date Line Act 2011 911 # Summer Time Act No. 35 of 1982 [commenced 1983-09-01] 914 # Summer Time Act (Cap 157) 918 # Summer Time (Amendment) Act No. 6 of 1991 [commenced 1991-11-11] 921 # Summer Time (Repeal) Act No. 4 of 1993 [commenced 1993-05-03] [all …]
|
| D | europe | 147 # of Time) Act took effect; it received the Royal Assent on 1880-08-02. 209 # [British Summer Time] is fixed annually by Act of Parliament. 372 # error, as Ireland's Standard Time (Amendment) Act, 1971 states that 384 # Summer Time Act, 1925 and Summer Time Orders, 1926 and 1947: 390 # Summer Time Act, 1916 412 # The Summer Time Act, 1922 417 # The Summer Time Act, 1925 446 # The Summer Time Act, 1947 462 # revert to the rules of the Summer Time Act, 1925 481 # The British Standard Time Act, 1968 [all …]
|
| D | backzone | 283 # Ordinance in 1960 and Local Time Act in 1961). It was unamended throughout 462 # He also writes that the Ontario Time Act (1990, Chapter T.9) 527 # This common practice was codified into law as of 2007; see Legal Time Act, 1379 # Time Act in 1883 and including additional confirmation of some of 1387 # AT4 of 1883 - The Statutory Time et cetera Act 1883 -
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/ |
| D | CodeGenAction.cpp | 861 : Act(_Act), VMContext(_VMContext ? _VMContext : new LLVMContext), in CodeGenAction() 916 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() 1049 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/ |
| D | VEISelLowering.cpp | 190 LegalizeAction Act = (IntVT == MVT::i32) ? Promote : Legal; in initSPUActions() local 191 setOperationAction(ISD::BITREVERSE, IntVT, Act); in initSPUActions() 192 setOperationAction(ISD::CTLZ, IntVT, Act); in initSPUActions() 193 setOperationAction(ISD::CTLZ_ZERO_UNDEF, IntVT, Act); in initSPUActions() 194 setOperationAction(ISD::CTPOP, IntVT, Act); in initSPUActions() 198 setOperationAction(ISD::AND, IntVT, Act); in initSPUActions() 199 setOperationAction(ISD::OR, IntVT, Act); in initSPUActions() 200 setOperationAction(ISD::XOR, IntVT, Act); in initSPUActions()
|
| /freebsd-12-stable/sys/contrib/octeon-sdk/ |
| D | cvmx-resources.config | 24 * laws, including the U.S. Export Administration Act and its associated
|
| D | cvmx-shared-linux-o32.ld | 24 * laws, including the U.S. Export Administration Act and its associated
|
| D | cvmx-shared-linux.ld | 24 * laws, including the U.S. Export Administration Act and its associated
|
| D | cvmx-shared-linux-n32.ld | 24 * laws, including the U.S. Export Administration Act and its associated
|
| /freebsd-12-stable/contrib/llvm-project/clang/include/clang/Frontend/ |
| D | CompilerInstance.h | 220 bool ExecuteAction(FrontendAction &Act);
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ |
| D | Driver.cpp | 2087 for (Action* Act : SingleActions) { in BuildUniversalActions() 2094 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) in BuildUniversalActions() 2096 << types::getTypeName(Act->getType()); in BuildUniversalActions() 2100 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i])); in BuildUniversalActions() 2104 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) in BuildUniversalActions() 2107 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType())); in BuildUniversalActions() 2120 if (Act->getType() == types::TY_Image) { in BuildUniversalActions()
|
| /freebsd-12-stable/contrib/llvm-project/lld/COFF/ |
| D | Options.td | 59 HelpText<"Act like lib.exe; must be first argument if present">;
|