/external/clang/lib/FrontendTool/ |
D | ExecuteCompilerInvocation.cpp | 118 FrontendAction *Act = CreateFrontendBaseAction(CI); in CreateFrontendAction() local 119 if (!Act) in CreateFrontendAction() 125 Act = new FixItRecompile(Act); in CreateFrontendAction() 136 Act = new arcmt::CheckAction(Act); in CreateFrontendAction() 139 Act = new arcmt::ModifyAction(Act); in CreateFrontendAction() 142 Act = new arcmt::MigrateAction(Act, in CreateFrontendAction() 150 Act = new arcmt::ObjCMigrateAction(Act, FEOpts.MTMigrateDir, in CreateFrontendAction() 159 Act = new ASTMergeAction(Act, FEOpts.ASTMergeFiles); in CreateFrontendAction() 161 return Act; in CreateFrontendAction() 219 std::unique_ptr<FrontendAction> Act(CreateFrontendAction(*Clang)); in ExecuteCompilerInvocation() local [all …]
|
/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 | 157 virtual void Act() = 0; 161 Act(); in ActN() 300 void Act() override { in Act() function 310 void Act() override { in Act() function 329 void Act() override { in Act() function 372 void Act() override { in Act() function 419 void Act() override { in Act() function 429 void Act() override { in Act() function 441 void Act() override { in Act() function 470 void Act() override { in Act() function [all …]
|
/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() 1147 if (!Act->Execute()) in Parse() 1152 Act->EndSourceFile(); in Parse() 1568 std::unique_ptr<PrecompilePreambleAction> Act; in getMainBufferWithPrecompiledPreamble() local 1569 Act.reset(new PrecompilePreambleAction(*this)); in getMainBufferWithPrecompiledPreamble() 1570 if (!Act->BeginSourceFile(*Clang.get(), Clang->getFrontendOpts().Inputs[0])) { in getMainBufferWithPrecompiledPreamble() 1578 Act->Execute(); in getMainBufferWithPrecompiledPreamble() 1588 Act->EndSourceFile(); in getMainBufferWithPrecompiledPreamble() [all …]
|
D | CompilerInstance.cpp | 789 bool CompilerInstance::ExecuteAction(FrontendAction &Act) { in ExecuteAction() argument 836 if (hasSourceManager() && !Act.isModelParsingAction()) in ExecuteAction() 839 if (Act.BeginSourceFile(*this, FIF)) { in ExecuteAction() 840 Act.Execute(); in ExecuteAction() 841 Act.EndSourceFile(); in ExecuteAction()
|
/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 | 37 "Act.",
|
/external/clang/lib/CodeGen/ |
D | CodeGenAction.cpp | 629 : Act(_Act), VMContext(_VMContext ? _VMContext : new LLVMContext), in CodeGenAction() 684 BackendAction BA = static_cast<BackendAction>(Act); in CreateASTConsumer() 739 BackendAction BA = static_cast<BackendAction>(Act); in ExecuteAction()
|
/external/clang/lib/Sema/ |
D | SemaAttr.cpp | 329 void Sema::PragmaStack<ValueType>::Act(SourceLocation PragmaLocation, in Act() function in Sema::PragmaStack 428 Stack->Act(PragmaLocation, Action, StackSlotLabel, SegmentName); in ActOnPragmaMSSeg()
|
/external/clang/lib/Driver/ |
D | Driver.cpp | 1040 for (Action* Act : SingleActions) { in BuildUniversalActions() 1047 if (Archs.size() > 1 && !types::canLipoType(Act->getType())) in BuildUniversalActions() 1049 << types::getTypeName(Act->getType()); in BuildUniversalActions() 1054 new BindArchAction(std::unique_ptr<Action>(Act), Archs[i])); in BuildUniversalActions() 1061 if (Inputs.size() == 1 || Act->getType() == types::TY_Nothing) in BuildUniversalActions() 1064 Actions.push_back(new LipoJobAction(Inputs, Act->getType())); in BuildUniversalActions() 1076 if (Act->getType() == types::TY_Image) { in BuildUniversalActions()
|
D | Tools.cpp | 2474 for (const auto &Act : *A) in ContainsCompileAction() 2475 if (ContainsCompileAction(Act)) in ContainsCompileAction() 2491 for (const auto &Act : C.getActions()) { in UseRelaxAll() local 2492 if (ContainsCompileAction(Act)) { in UseRelaxAll()
|
/external/clang/include/clang/Frontend/ |
D | CompilerInstance.h | 219 bool ExecuteAction(FrontendAction &Act);
|
/external/icu/icu4c/source/samples/ufortune/resources/ |
D | root.txt | 60 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/dbus/ |
D | NOTICE | 135 requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101
|
D | COPYING | 136 requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101
|
/external/dbus/tools/ |
D | NOTICE | 135 requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101
|
/external/dbus/dbus/ |
D | NOTICE | 135 requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101
|
/external/blktrace/doc/ |
D | blktrace.tex | 631 Act & Description \\ \hline\hline
|
/external/dbus/bus/ |
D | NOTICE | 135 requirements and penalties of the U.S. Copyright Act, 17 U.S.C. § 101
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 373 void Act(SourceLocation PragmaLocation,
|
/external/bison/doc/ |
D | bison.texi | 9312 Act more like the traditional Yacc command. This can cause different
|