Home
last modified time | relevance | path

Searched refs:Commands (Results 1 – 25 of 255) sorted by relevance

1234567891011

/external/autotest/client/site_tests/network_FirewallHolePunch/src/tcpserver/commands/
DBrowserCommands.js21 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/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp104 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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-registry.cpp23 ManagedStatic<std::unordered_map<cl::SubCommand *, HandlerType>> Commands; variable
27 assert(Commands->count(SC) == 0 && in CommandRegistration()
30 (*Commands)[SC] = Command; in CommandRegistration()
34 auto It = Commands->find(SC); in dispatch()
35 assert(It != Commands->end() && in dispatch()
/external/clang/lib/AST/
DCommentCommandTraits.cpp20 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/Tooling/
DJSONCompilationDatabase.cpp186 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()
DCommonOptionsParser.cpp86 adjustCommands(std::vector<CompileCommand> Commands) const { in adjustCommands()
87 for (CompileCommand &Command : Commands) in adjustCommands()
90 return Commands; in adjustCommands()
/external/lzma/CPP/7zip/UI/Common/
DUpdate.cpp406 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 …]
DUpdate.h86 CObjectVector<CUpdateArchiveCommand> Commands; member
142 Commands.Clear(); in SetActionCommand_Add()
145 Commands.Add(c); in SetActionCommand_Add()
/external/icu/icu4c/source/config/
Dmh-mpras15 ## Commands to generate dependency files
19 ## Commands to link
23 ## Commands to make a shared library
Dmh-irix13 ## Commands to generate dependency files
17 ## Commands to link
24 ## Commands to make a shared library
Dmh-alpha-osf8 ## Commands to generate dependency files
25 ## Commands to compile
30 ## Commands to link
Dmh-alpha-linux-cc8 ## Commands to generate dependency files
25 ## Commands to compile
30 ## Commands to link
Dmh-hpux-acc8 ## Commands to generate dependency files
54 ## Commands to compile
65 ## Commands to link
79 ## Commands to make a shared library
Dmh-hpux-gcc8 ## Commands to generate dependency files
28 ## Commands to link
36 ## Commands to make a shared library
Dmh-solaris17 ## Commands to generate dependency files
43 ## Commands to link
48 ## Commands to make a shared library
/external/llvm/utils/TableGen/
DAsmWriterEmitter.cpp413 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i]; in EmitPrintInstruction() local
417 unsigned NumBits = Log2_32_Ceil(Commands.size()); in EmitPrintInstruction()
422 << " bits for " << Commands.size() << " unique commands.\n"; in EmitPrintInstruction()
424 if (Commands.size() == 2) { in EmitPrintInstruction()
429 << Commands[1] in EmitPrintInstruction()
431 << Commands[0] in EmitPrintInstruction()
433 } else if (Commands.size() == 1) { in EmitPrintInstruction()
435 O << Commands[0] << "\n\n"; in EmitPrintInstruction()
443 for (unsigned j = 0, e = Commands.size(); j != e; ++j) { in EmitPrintInstruction()
445 O << Commands[j]; in EmitPrintInstruction()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DAsmWriterEmitter.cpp431 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i]; in EmitPrintInstruction() local
435 unsigned NumBits = Log2_32_Ceil(Commands.size()); in EmitPrintInstruction()
440 << " bits for " << Commands.size() << " unique commands.\n"; in EmitPrintInstruction()
442 if (Commands.size() == 2) { in EmitPrintInstruction()
447 << Commands[1] in EmitPrintInstruction()
449 << Commands[0] in EmitPrintInstruction()
451 } else if (Commands.size() == 1) { in EmitPrintInstruction()
453 O << Commands[0] << "\n\n"; in EmitPrintInstruction()
461 for (unsigned j = 0, e = Commands.size(); j != e; ++j) { in EmitPrintInstruction()
463 O << Commands[j]; in EmitPrintInstruction()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DAsmWriterEmitter.cpp390 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i]; in EmitPrintInstruction() local
394 unsigned NumBits = Log2_32_Ceil(Commands.size()); in EmitPrintInstruction()
401 << " bits for " << Commands.size() << " unique commands.\n"; in EmitPrintInstruction()
403 if (Commands.size() == 2) { in EmitPrintInstruction()
407 << Commands[1] in EmitPrintInstruction()
409 << Commands[0] in EmitPrintInstruction()
411 } else if (Commands.size() == 1) { in EmitPrintInstruction()
413 O << Commands[0] << "\n\n"; in EmitPrintInstruction()
420 for (unsigned i = 0, e = Commands.size(); i != e; ++i) { in EmitPrintInstruction()
422 O << Commands[i]; in EmitPrintInstruction()
/external/u-boot/doc/
DREADME.t1040-l2switch24 Commands Overview:
26 Commands supported
36 Commands syntax
/external/mockftpserver/branches/1.x_Branch/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers
/external/mockftpserver/tags/2.0-rc1/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers
/external/mockftpserver/tags/1.2/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers
/external/mockftpserver/tags/2.x_Before_IDEA/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers
/external/mockftpserver/tags/1.2.1/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers
/external/mockftpserver/tags/2.0/src/site/apt/
Dstubftpserver-commandhandlers.apt2 StubFtpServer FTP Commands and CommandHandlers
5 StubFtpServer - FTP Commands and CommandHandlers

1234567891011