/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/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/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/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/icu/icu4c/source/config/ |
D | mh-mpras | 13 ## Commands to generate dependency files 17 ## Commands to link 21 ## Commands to make a shared library
|
D | mh-alpha-osf | 6 ## Commands to generate dependency files 23 ## Commands to compile 28 ## Commands to link
|
D | mh-irix | 11 ## Commands to generate dependency files 15 ## Commands to link 22 ## Commands to make a shared library
|
D | mh-alpha-linux-cc | 6 ## Commands to generate dependency files 23 ## Commands to compile 28 ## Commands to link
|
D | mh-solaris | 11 ## Commands to generate dependency files 37 ## Commands to link 42 ## Commands to make a shared library
|
D | mh-hpux-gcc | 6 ## Commands to generate dependency files 26 ## Commands to link 34 ## Commands to make a shared library
|
D | mh-hpux-acc | 6 ## Commands to generate dependency files 52 ## Commands to compile 63 ## Commands to link 77 ## Commands to make a shared library
|
/external/tpm2/generator/ |
D | raw_commands.txt | 2 Part 3: Commands 14 Part 3: Commands 85 Part 3: Commands 156 Session Commands ..................................................................................… 193 Object Commands....................................................................................… 204 Part 3: Commands 222 Attestation Commands ..............................................................................… 297 Duplication Commands ..............................................................................… 343 Enhanced Authorization (EA) Commands ..............................................................… 404 Part 3: Commands [all …]
|
D | raw_commands_fixed.txt | 2 Part 3: Commands 14 Part 3: Commands 85 Part 3: Commands 156 Session Commands ..................................................................................… 193 Object Commands....................................................................................… 204 Part 3: Commands 222 Attestation Commands ..............................................................................… 297 Duplication Commands ..............................................................................… 343 Enhanced Authorization (EA) Commands ..............................................................… 404 Part 3: Commands [all …]
|
/external/lzma/CPP/7zip/UI/Common/ |
D | Update.h | 84 CObjectVector<CUpdateArchiveCommand> Commands; member 138 Commands.Clear(); in SetActionCommand_Add() 141 Commands.Add(c); in SetActionCommand_Add()
|
D | Update.cpp | 382 FOR_VECTOR (i, Commands) in SetArcPath() 384 CUpdateArchiveCommand &uc = Commands[i]; in SetArcPath() 939 if (options.Commands.Size() != 1) in UpdateArchive() 945 if (options.Commands.Size() != 1) in UpdateArchive() 947 const CActionSet &as = options.Commands[0].ActionSet; in UpdateArchive() 1127 FOR_VECTOR (i, options.Commands) in UpdateArchive() 1128 if (options.Commands[i].ActionSet.NeedScanning()) in UpdateArchive() 1213 CArchivePath &ap = options.Commands[0].ArchivePath; in UpdateArchive() 1229 for (i = 0; i < options.Commands.Size(); i++) in UpdateArchive() 1231 CArchivePath &ap = options.Commands[i].ArchivePath; in UpdateArchive() [all …]
|
/external/tpm2/ |
D | part3.txt | 2 Part 3: Commands 25 …Part 3: Commands Trusted Platform Mo… 69 … Part 3: Commands 110 11 Session Commands ............................................................................… 113 12 Object Commands..............................................................................… 119 …Part 3: Commands … 128 13 Duplication Commands .........................................................................… 155 18 Attestation Commands .........................................................................… 170 … Part 3: Commands 192 23 Enhanced Authorization (EA) Commands .........................................................… [all …]
|
/external/llvm/utils/TableGen/ |
D | AsmWriterEmitter.cpp | 446 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i]; in EmitPrintInstruction() local 450 unsigned NumBits = Log2_32_Ceil(Commands.size()); in EmitPrintInstruction() 455 << " bits for " << Commands.size() << " unique commands.\n"; in EmitPrintInstruction() 457 if (Commands.size() == 2) { in EmitPrintInstruction() 462 << Commands[1] in EmitPrintInstruction() 464 << Commands[0] in EmitPrintInstruction() 466 } else if (Commands.size() == 1) { in EmitPrintInstruction() 468 O << Commands[0] << "\n\n"; in EmitPrintInstruction() 476 for (unsigned i = 0, e = Commands.size(); i != e; ++i) { in EmitPrintInstruction() 478 O << Commands[i]; in EmitPrintInstruction()
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/ |
D | bs.py | 34 Commands = {'reset' : 'Clear input queue and output bucket', variable in BS 67 for key in self.Commands.keys(): 68 print(' %s\t\t%s' % (key, self.Commands[key]))
|
/external/mockftpserver/branches/1.x_Branch/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|
/external/mockftpserver/tags/2.0.1/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|
/external/mockftpserver/tags/1.2.4/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|
/external/mockftpserver/tags/2.0.2/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|
/external/mockftpserver/tags/1.1/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/site/apt/ |
D | stubftpserver-commandhandlers.apt | 2 StubFtpServer FTP Commands and CommandHandlers 5 StubFtpServer - FTP Commands and CommandHandlers
|