/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/commands/ |
D | BrowserCommands.js | 21 function Commands() { class 25 Commands.prototype.addCommand=function(name, help, runnable) { class 33 Commands.prototype.help=function(name, args) { 46 Commands.prototype.run=function(name, args) { 57 exports.Commands=new Commands(); 62 Commands.addCommand("echo", 68 Commands.addCommand("open",
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-registry.cpp | 22 ManagedStatic<std::unordered_map<cl::SubCommand *, HandlerType>> Commands; variable 26 assert(Commands->count(SC) == 0 && in CommandRegistration() 29 (*Commands)[SC] = Command; in CommandRegistration() 33 auto It = Commands->find(SC); in dispatch() 34 assert(It != Commands->end() && in dispatch()
|
/external/clang/unittests/Tooling/ |
D | CompilationDatabaseTest.cpp | 104 std::vector<CompileCommand> Commands = getAllCompileCommands( in TEST() local 112 EXPECT_EQ(2U, Commands.size()) << ErrorMessage; in TEST() 113 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage; in TEST() 114 EXPECT_EQ(FileName1, Commands[0].Filename) << ErrorMessage; in TEST() 115 ASSERT_EQ(1u, Commands[0].CommandLine.size()); in TEST() 116 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage; in TEST() 117 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage; in TEST() 118 EXPECT_EQ(FileName2, Commands[1].Filename) << ErrorMessage; in TEST() 119 ASSERT_EQ(1u, Commands[1].CommandLine.size()); in TEST() 120 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage; in TEST() [all …]
|
/external/llvm-project/clang/unittests/Tooling/ |
D | CompilationDatabaseTest.cpp | 125 std::vector<CompileCommand> Commands = getAllCompileCommands( in TEST() local 138 EXPECT_EQ(2U, Commands.size()) << ErrorMessage; in TEST() 139 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage; in TEST() 140 EXPECT_EQ(FileName1, Commands[0].Filename) << ErrorMessage; in TEST() 141 EXPECT_EQ(Output1, Commands[0].Output) << ErrorMessage; in TEST() 142 ASSERT_EQ(1u, Commands[0].CommandLine.size()); in TEST() 143 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage; in TEST() 144 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage; in TEST() 145 EXPECT_EQ(FileName2, Commands[1].Filename) << ErrorMessage; in TEST() 146 EXPECT_EQ(Output2, Commands[1].Output) << ErrorMessage; in TEST() [all …]
|
/external/llvm-project/clang/lib/AST/ |
D | CommentCommandTraits.cpp | 20 NextID(llvm::array_lengthof(Commands)), Allocator(Allocator) { in CommandTraits() 74 for (const auto &Command : Commands) in getTypoCorrectCommandInfo() 118 if (CommandID < llvm::array_lengthof(Commands)) in getBuiltinCommandInfo() 119 return &Commands[CommandID]; in getBuiltinCommandInfo() 134 return RegisteredCommands[CommandID - llvm::array_lengthof(Commands)]; in getRegisteredCommandInfo()
|
/external/clang/lib/AST/ |
D | CommentCommandTraits.cpp | 20 NextID(llvm::array_lengthof(Commands)), Allocator(Allocator) { in CommandTraits() 74 for (const auto &Command : Commands) in getTypoCorrectCommandInfo() 118 if (CommandID < llvm::array_lengthof(Commands)) in getBuiltinCommandInfo() 119 return &Commands[CommandID]; in getBuiltinCommandInfo() 134 return RegisteredCommands[CommandID - llvm::array_lengthof(Commands)]; in getRegisteredCommandInfo()
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_canvas/ |
D | perf_puppeteer_canvas_test.go | 36 require.Len(t, mock.Commands(), 1) 37 cmd := mock.Commands()[0] 69 require.Len(t, mock.Commands(), 1) 70 cmd := mock.Commands()[0] 105 require.Len(t, mock.Commands(), 1) 106 cmd := mock.Commands()[0]
|
/external/llvm-project/clang-tools-extra/clang-query/tool/ |
D | ClangQuery.cpp | 52 static cl::list<std::string> Commands("c", cl::desc("Specify command to run"), variable 99 if (!Commands.empty() && !CommandFiles.empty()) { in main() 104 if ((!Commands.empty() || !CommandFiles.empty()) && !PreloadFile.empty()) { in main() 131 if (!Commands.empty()) { in main() 132 for (auto &Command : Commands) { in main()
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/ |
D | perf_puppeteer_render_skps_test.go | 36 cmds := mock.Commands() 80 require.Len(t, mock.Commands(), 1) 81 cmd := mock.Commands()[0] 122 require.Len(t, mock.Commands(), 0) 154 require.Len(t, mock.Commands(), 1) 155 cmd := mock.Commands()[0] 197 require.Len(t, mock.Commands(), 1) 198 cmd := mock.Commands()[0]
|
/external/clang/lib/Tooling/ |
D | JSONCompilationDatabase.cpp | 186 std::vector<CompileCommand> Commands; in getCompileCommands() local 187 getCommands(CommandsRefI->getValue(), Commands); in getCompileCommands() 188 return Commands; in getCompileCommands() 208 std::vector<CompileCommand> Commands; in getAllCompileCommands() local 209 getCommands(AllCommands, Commands); in getAllCompileCommands() 210 return Commands; in getAllCompileCommands() 228 std::vector<CompileCommand> &Commands) const { in getCommands() 232 Commands.emplace_back( in getCommands()
|
D | CommonOptionsParser.cpp | 86 adjustCommands(std::vector<CompileCommand> Commands) const { in adjustCommands() 87 for (CompileCommand &Command : Commands) in adjustCommands() 90 return Commands; in adjustCommands()
|
/external/llvm-project/clang/lib/Tooling/ |
D | JSONCompilationDatabase.cpp | 241 std::vector<CompileCommand> Commands; in getCompileCommands() local 242 getCommands(CommandsRefI->getValue(), Commands); in getCompileCommands() 243 return Commands; in getCompileCommands() 256 std::vector<CompileCommand> Commands; in getAllCompileCommands() local 257 getCommands(AllCommands, Commands); in getAllCompileCommands() 258 return Commands; in getAllCompileCommands() 318 std::vector<CompileCommand> &Commands) const { in getCommands() 324 Commands.emplace_back( in getCommands()
|
D | CommonOptionsParser.cpp | 76 std::vector<CompileCommand> Commands) const { in adjustCommands() 77 for (CompileCommand &Command : Commands) in adjustCommands() 80 return Commands; in adjustCommands()
|
/external/llvm-project/debuginfo-tests/dexter/ |
D | Commands.md | 3 * [DexExpectProgramState](Commands.md#DexExpectProgramState) 4 * [DexExpectStepKind](Commands.md#DexExpectStepKind) 5 * [DexExpectStepOrder](Commands.md#DexExpectStepOrder) 6 * [DexExpectWatchType](Commands.md#DexExpectWatchType) 7 * [DexExpectWatchValue](Commands.md#DexExpectWatchValue) 8 * [DexUnreachable](Commands.md#DexUnreachable) 9 * [DexLimitSteps](Commands.md#DexLimitSteps) 10 * [DexLabel](Commands.md#DexLabel) 11 * [DexWatch](Commands.md#DexWatch)
|
/external/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/ |
D | perf_puppeteer_skottie_frames_test.go | 36 require.Len(t, mock.Commands(), 1) 37 cmd := mock.Commands()[0] 75 require.Len(t, mock.Commands(), 1) 76 cmd := mock.Commands()[0] 116 require.Len(t, mock.Commands(), 1) 117 cmd := mock.Commands()[0]
|
/external/icu/icu4c/source/config/ |
D | mh-mpras | 15 ## Commands to generate dependency files 19 ## Commands to link 23 ## Commands to make a shared library
|
D | mh-alpha-linux-cc | 8 ## Commands to generate dependency files 25 ## Commands to compile 30 ## Commands to link
|
D | mh-irix | 13 ## Commands to generate dependency files 17 ## Commands to link 24 ## Commands to make a shared library
|
D | mh-alpha-osf | 8 ## Commands to generate dependency files 25 ## Commands to compile 30 ## Commands to link
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Update.cpp | 406 FOR_VECTOR (i, Commands) in SetArcPath() 408 CUpdateArchiveCommand &uc = Commands[i]; in SetArcPath() 1068 if (options.Commands.Size() != 1) in UpdateArchive() 1074 if (options.Commands.Size() != 1) in UpdateArchive() 1076 const CActionSet &as = options.Commands[0].ActionSet; in UpdateArchive() 1277 FOR_VECTOR (i, options.Commands) in UpdateArchive() 1278 if (options.Commands[i].ActionSet.NeedScanning()) in UpdateArchive() 1362 CArchivePath &ap = options.Commands[0].ArchivePath; in UpdateArchive() 1383 for (ci = 0; ci < options.Commands.Size(); ci++) in UpdateArchive() 1385 CArchivePath &ap = options.Commands[ci].ArchivePath; in UpdateArchive() [all …]
|
D | Update.h | 86 CObjectVector<CUpdateArchiveCommand> Commands; member 142 Commands.Clear(); in SetActionCommand_Add() 145 Commands.Add(c); in SetActionCommand_Add()
|
/external/expat/cmake/autotools/ |
D | expat-noconfig.cmake.in | 5 # Commands may need to know the format version. 18 # Commands beyond this point should not need to know the version.
|
/external/llvm-project/lldb/tools/lldb-vscode/ |
D | README.md | 85 …mands executed upon debugger startup prior to creating the LLDB target. Commands and command outpu… 86 … executed just before launching after the LLDB target has been created. Commands and command outpu… 87 |**stopCommands** |[string]| | LLDB commands executed just after each stop. Commands and command … 88 |**exitCommands** |[string]| | LLDB commands executed when the program exits. Commands and comman… 89 …** |[string]| | LLDB commands executed when the debugging session ends. Commands and command outpu… 112 …mands executed upon debugger startup prior to creating the LLDB target. Commands and command outpu… 113 … executed just before launching after the LLDB target has been created. Commands and command outpu… 114 |**stopCommands** |[string]| | LLDB commands executed just after each stop. Commands and command … 115 |**exitCommands** |[string]| | LLDB commands executed when the program exits. Commands and comman… 116 …** |[string]| | LLDB commands executed when the debugging session ends. Commands and command outpu…
|
/external/llvm-project/clang/unittests/Driver/ |
D | SanitizerArgsTest.cpp | 74 const auto &Commands = CompilationJob->getJobs().getJobs(); in emulateSingleCompilation() local 75 assert(Commands.size() == 1); in emulateSingleCompilation() 76 return *Commands.front(); in emulateSingleCompilation()
|
/external/mtools/ |
D | mkmanpages | 50 -e "/^@node [^,]*, [^,]*, $command, Commands$/,/^@bye/d" \ 51 -e "/^@node [^,]*, [^,]*, Commands/,/^@bye/d" \
|