Home
last modified time | relevance | path

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

123456

/external/clang/lib/AST/
DCommentCommandTraits.cpp20 NextID(llvm::array_lengthof(Commands)), Allocator(Allocator) { in CommandTraits()
74 for (const auto &Command : Commands) in getTypoCorrectCommandInfo()
114 if (CommandID < llvm::array_lengthof(Commands)) in getBuiltinCommandInfo()
115 return &Commands[CommandID]; in getBuiltinCommandInfo()
130 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
212 getCommands(CommandsRefI->getValue(), Commands); in getAllCompileCommands()
214 return Commands; in getAllCompileCommands()
219 std::vector<CompileCommand> &Commands) const { in getCommands()
223 Commands.push_back(CompileCommand( in getCommands()
/external/clang/unittests/Tooling/
DCompilationDatabaseTest.cpp98 std::vector<CompileCommand> Commands = getAllCompileCommands( in TEST() local
106 EXPECT_EQ(2U, Commands.size()) << ErrorMessage; in TEST()
107 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage; in TEST()
108 ASSERT_EQ(1u, Commands[0].CommandLine.size()); in TEST()
109 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage; in TEST()
110 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage; in TEST()
111 ASSERT_EQ(1u, Commands[1].CommandLine.size()); in TEST()
112 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage; in TEST()
122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName); in findCompileArgsInJsonDatabase() local
123 EXPECT_LE(Commands.size(), 1u); in findCompileArgsInJsonDatabase()
[all …]
/external/chromium_org/third_party/icu/source/config/
Dmh-mpras13 ## Commands to generate dependency files
17 ## Commands to link
21 ## Commands to make a shared library
Dmh-alpha-osf6 ## Commands to generate dependency files
23 ## Commands to compile
28 ## Commands to link
Dmh-irix11 ## Commands to generate dependency files
15 ## Commands to link
22 ## Commands to make a shared library
Dmh-alpha-linux-cc6 ## Commands to generate dependency files
23 ## Commands to compile
28 ## Commands to link
Dmh-solaris11 ## Commands to generate dependency files
37 ## Commands to link
42 ## Commands to make a shared library
Dmh-hpux-gcc6 ## Commands to generate dependency files
26 ## Commands to link
34 ## Commands to make a shared library
Dmh-hpux-acc6 ## Commands to generate dependency files
52 ## Commands to compile
63 ## Commands to link
77 ## Commands to make a shared library
Dmh-aix-va6 ## Commands to generate dependency files
45 ## Commands to link
51 ## Commands to make a shared library
Dmh-aix-gcc12 ## Commands to generate dependency files
16 ## Commands to link
25 ## Commands to make a shared library
/external/icu/icu4c/source/config/
Dmh-mpras13 ## Commands to generate dependency files
17 ## Commands to link
21 ## Commands to make a shared library
Dmh-irix11 ## Commands to generate dependency files
15 ## Commands to link
22 ## Commands to make a shared library
Dmh-alpha-osf6 ## Commands to generate dependency files
23 ## Commands to compile
28 ## Commands to link
Dmh-alpha-linux-cc6 ## Commands to generate dependency files
23 ## Commands to compile
28 ## Commands to link
Dmh-hpux-gcc6 ## Commands to generate dependency files
26 ## Commands to link
34 ## Commands to make a shared library
Dmh-solaris11 ## Commands to generate dependency files
37 ## Commands to link
42 ## Commands to make a shared library
Dmh-hpux-acc6 ## Commands to generate dependency files
52 ## Commands to compile
63 ## Commands to link
77 ## Commands to make a shared library
Dmh-aix-gcc12 ## Commands to generate dependency files
16 ## Commands to link
25 ## Commands to make a shared library
Dmh-aix-va6 ## Commands to generate dependency files
45 ## Commands to link
51 ## Commands to make a shared library
/external/lzma/CPP/7zip/UI/Common/
DUpdate.cpp274 for (int i = 0; i < Commands.Size(); i++) in Init()
276 CUpdateArchiveCommand &uc = Commands[i]; in Init()
574 for(int i = 0; i < options.Commands.Size(); i++) in UpdateWithItemLists()
576 CUpdateArchiveCommand &command = options.Commands[i]; in UpdateWithItemLists()
733 for(int i = 0; i < options.Commands.Size(); i++) in UpdateArchive()
734 if (options.Commands[i].ActionSet.NeedScanning()) in UpdateArchive()
780 CArchivePath &ap = options.Commands[0].ArchivePath; in UpdateArchive()
795 for(int i = 0; i < options.Commands.Size(); i++) in UpdateArchive()
797 CArchivePath &ap = options.Commands[i].ArchivePath; in UpdateArchive()
841 CArchivePath &ap = options.Commands[0].ArchivePath; in UpdateArchive()
[all …]
DUpdate.h95 CObjectVector<CUpdateArchiveCommand> Commands; member
128 Commands.Clear(); in SetAddActionCommand()
131 Commands.Add(c); in SetAddActionCommand()
/external/llvm/utils/TableGen/
DAsmWriterEmitter.cpp450 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i]; in EmitPrintInstruction() local
454 unsigned NumBits = Log2_32_Ceil(Commands.size()); in EmitPrintInstruction()
459 << " bits for " << Commands.size() << " unique commands.\n"; in EmitPrintInstruction()
461 if (Commands.size() == 2) { in EmitPrintInstruction()
466 << Commands[1] in EmitPrintInstruction()
468 << Commands[0] in EmitPrintInstruction()
470 } else if (Commands.size() == 1) { in EmitPrintInstruction()
472 O << Commands[0] << "\n\n"; in EmitPrintInstruction()
480 for (unsigned i = 0, e = Commands.size(); i != e; ++i) { in EmitPrintInstruction()
482 O << Commands[i]; in EmitPrintInstruction()
/external/chromium_org/chrome/test/mini_installer/config/
Dchrome_user_not_installed.prop6 "HKEY_CURRENT_USER\\$CHROME_UPDATE_REGISTRY_SUBKEY\\Commands":

123456