/external/clang/lib/FrontendTool/ |
D | ExecuteCompilerInvocation.cpp | 123 std::unique_ptr<FrontendAction> Act = CreateFrontendBaseAction(CI); in CreateFrontendAction() local 124 if (!Act) in CreateFrontendAction() 130 Act = llvm::make_unique<FixItRecompile>(std::move(Act)); in CreateFrontendAction() 141 Act = llvm::make_unique<arcmt::CheckAction>(std::move(Act)); in CreateFrontendAction() 144 Act = llvm::make_unique<arcmt::ModifyAction>(std::move(Act)); in CreateFrontendAction() 147 Act = llvm::make_unique<arcmt::MigrateAction>(std::move(Act), in CreateFrontendAction() 155 Act = llvm::make_unique<arcmt::ObjCMigrateAction>(std::move(Act), in CreateFrontendAction() 165 Act = llvm::make_unique<ASTMergeAction>(std::move(Act), in CreateFrontendAction() 168 return Act; in CreateFrontendAction() 238 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang)); in ExecuteCompilerInvocation() local [all …]
|
/external/clang/lib/Driver/ |
D | InputInfo.h | 42 const Action* Act; variable 53 : Kind(Nothing), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) {} in InputInfo() 56 : Kind(Filename), Act(nullptr), Type(_Type), BaseInput(_BaseInput) { in InputInfo() 60 : Kind(Filename), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) { in InputInfo() 66 : Kind(InputArg), Act(nullptr), Type(_Type), BaseInput(_BaseInput) { in InputInfo() 71 : Kind(InputArg), Act(A), Type(GetActionType(A)), BaseInput(_BaseInput) { in InputInfo() 81 const Action *getAction() const { return Act; } in getAction() 82 void setAction(const Action *A) { Act = A; } in setAction()
|
D | Driver.cpp | 1116 for (Action* Act : SingleActions) { in BuildUniversalActions() 1123 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) in BuildUniversalActions() 1125 << types::getTypeName(Act->getType()); in BuildUniversalActions() 1129 Inputs.push_back(C.MakeAction<BindArchAction>(Act, Archs[i])); in BuildUniversalActions() 1133 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) in BuildUniversalActions() 1136 Actions.push_back(C.MakeAction<LipoJobAction>(Inputs, Act->getType())); in BuildUniversalActions() 1148 if (Act->getType() == types::TY_Image) { in BuildUniversalActions()
|
/external/autotest/client/tests/cyclictest/ |
D | README | 5 T: 0 ( 2215) P:80 I: 1000 C: 10 Min: 31 Act: 33 Avg: 33 Max: 43 6 T: 1 ( 2216) P:79 I: 1500 C: 10 Min: 22 Act: 22 Avg: 36 Max: 61 7 T: 2 ( 2217) P:78 I: 2000 C: 10 Min: 27 Act: 33 Avg: 36 Max: 50 8 T: 3 ( 2218) P:77 I: 2500 C: 10 Min: 23 Act: 37 Avg: 38 Max: 59 9 T: 4 ( 2219) P:76 I: 3000 C: 10 Min: 26 Act: 48 Avg: 36 Max: 48
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 156 virtual void Act() = 0; 160 Act(); in ActN() 299 void Act() override { in Act() function 309 void Act() override { in Act() function 328 void Act() override { in Act() function 371 void Act() override { in Act() function 418 void Act() override { in Act() function 428 void Act() override { in Act() function 440 void Act() override { in Act() function 469 void Act() override { in Act() function [all …]
|
/external/compiler-rt/lib/esan/ |
D | working_set_posix.cpp | 47 const struct sigaction *Act = (const struct sigaction *) ActVoid; in processWorkingSetSigaction() local 51 if (Act) in processWorkingSetSigaction() 52 internal_memcpy(&AppSigAct, Act, sizeof(AppSigAct)); in processWorkingSetSigaction()
|
D | working_set.h | 34 bool processWorkingSetSigaction(int SigNum, const void *Act, void *OldAct);
|
D | esan.cpp | 82 bool processSigaction(int SigNum, const void *Act, void *OldAct) { in processSigaction() argument 84 return processWorkingSetSigaction(SigNum, Act, OldAct); in processSigaction()
|
D | esan.h | 54 bool processSigaction(int SigNum, const void *Act, void *OldAct);
|
/external/clang/unittests/Frontend/ |
D | CodeGenActionTest.cpp | 56 std::unique_ptr<FrontendAction> Act(new NullCodeGenAction); in TEST() local 57 bool Success = Compiler.ExecuteAction(*Act); in TEST()
|
/external/clang/examples/clang-interpreter/ |
D | main.cpp | 162 std::unique_ptr<CodeGenAction> Act(new EmitLLVMOnlyAction()); in main() local 163 if (!Clang.ExecuteAction(*Act)) in main() 167 if (std::unique_ptr<llvm::Module> Module = Act->takeModule()) in main()
|
/external/clang/lib/Frontend/ |
D | ASTUnit.cpp | 1131 std::unique_ptr<TopLevelDeclTrackerAction> Act( in Parse() local 1136 ActCleanup(Act.get()); in Parse() 1138 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) in Parse() 1145 if (!Act->Execute()) in Parse() 1150 Act->EndSourceFile(); in Parse() 1576 std::unique_ptr<PrecompilePreambleAction> Act; in getMainBufferWithPrecompiledPreamble() local 1577 Act.reset(new PrecompilePreambleAction(*this)); in getMainBufferWithPrecompiledPreamble() 1578 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) { in getMainBufferWithPrecompiledPreamble() 1586 Act->Execute(); in getMainBufferWithPrecompiledPreamble() 1596 Act->EndSourceFile(); in getMainBufferWithPrecompiledPreamble() [all …]
|
D | CompilerInstance.cpp | 824 bool CompilerInstance::ExecuteAction(FrontendAction &Act) { in ExecuteAction() argument 872 if (hasSourceManager() && !Act.isModelParsingAction()) in ExecuteAction() 875 if (Act.BeginSourceFile(*this, FIF)) { in ExecuteAction() 876 Act.Execute(); in ExecuteAction() 877 Act.EndSourceFile(); in ExecuteAction()
|
/external/clang/lib/Sema/ |
D | SemaAttr.cpp | 126 PackStack.Act(PragmaLoc, Action, StringRef(), Alignment); in ActOnPragmaOptionsAlign() 172 PackStack.Act(PragmaLoc, Action, SlotLabel, AlignmentVal); in ActOnPragmaPack() 208 VtorDispStack.Act(PragmaLoc, Action, StringRef(), Mode); in ActOnPragmaMSVtorDisp() 212 void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation, in Act() function in Sema::PragmaStack 312 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName); in ActOnPragmaMSSeg()
|
/external/swiftshader/third_party/LLVM/lib/Support/Unix/ |
D | Program.inc | 304 struct sigaction Act, Old; 316 memset(&Act, 0, sizeof(Act)); 317 Act.sa_handler = TimeOutHandler; 318 sigemptyset(&Act.sa_mask); 319 sigaction(SIGALRM, &Act, &Old);
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Program.inc | 326 struct sigaction Act, Old; 337 memset(&Act, 0, sizeof(Act)); 338 Act.sa_handler = TimeOutHandler; 339 sigemptyset(&Act.sa_mask); 340 sigaction(SIGALRM, &Act, &Old);
|
/external/llvm/lib/Support/Unix/ |
D | Program.inc | 326 struct sigaction Act, Old; 337 memset(&Act, 0, sizeof(Act)); 338 Act.sa_handler = TimeOutHandler; 339 sigemptyset(&Act.sa_mask); 340 sigaction(SIGALRM, &Act, &Old);
|
/external/clang/include/clang/CodeGen/ |
D | CodeGenAction.h | 26 unsigned Act;
|
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/ |
D | tree-construction.txt | 443 Act as if a start tag token with the tag name "head" and no 450 Act as if a start tag token with the tag name "head" and no 540 Act as described in the "anything else" entry below. 547 Act as if an end tag token with the tag name "head" had been 583 Act as described in the "anything else" entry below. 590 Parse error. Act as if an end tag with the tag name "noscript" 637 Act as described in the "anything else" entry below. 644 Act as if a start tag token with the tag name "body" and no 710 Act as if an end tag with tag name "body" had been seen, then, 1106 Act as if a start tag token with the tag name "form" had been [all …]
|
/external/icu/icu4c/source/data/brkitr/ |
D | en.txt | 31 "Act.",
|
/external/clang/lib/CodeGen/ |
D | CodeGenAction.cpp | 661 : Act(_Act), VMContext(_VMContext ? _VMContext : new LLVMContext), in CodeGenAction() 716 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() 787 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction()
|
/external/clang/include/clang/Frontend/ |
D | CompilerInstance.h | 219 bool ExecuteAction(FrontendAction &Act);
|
/external/icu/icu4c/source/samples/ufortune/resources/ |
D | root.txt | 63 Mann Act with an interstate Greyhound bus.",
|
/external/webrtc/webrtc/ |
D | LICENSE_THIRD_PARTY | 305 Act of 2005," which established new daylight savings times (DST) rules for the
|
/external/blktrace/doc/ |
D | blktrace.tex | 631 Act & Description \\ \hline\hline
|