HomeSort by relevance Sort by last modified time
    Searched defs:Commands (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionAPI.js 73 apiPrivate.Commands = {
117 var commands = apiPrivate.Commands;
143 extensionServer.sendRequest({ command: commands.Subscribe, type: this._type });
159 extensionServer.sendRequest({ command: commands.Unsubscribe, type: this._type });
205 extensionServer.sendRequest({ command: commands.GetConsoleMessages }, callback);
210 extensionServer.sendRequest({ command: commands.AddConsoleMessage, severity: severity, text: text, url: url, line: line });
250 extensionServer.sendRequest({ command: commands.GetHAR }, callback && callbackWrapper);
255 extensionServer.sendRequest({ command: commands.AddRequestHeaders, headers: headers, extensionId: window.location.hostname });
274 extensionServer.sendRequest({ command: commands.GetRequestContent, id: this._id }, callback && callbackWrapper)
    [all...]
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 98 std::vector<CompileCommand> Commands = getAllCompileCommands(
106 EXPECT_EQ(2U, Commands.size()) << ErrorMessage;
107 EXPECT_EQ(Directory1, Commands[0].Directory) << ErrorMessage;
108 ASSERT_EQ(1u, Commands[0].CommandLine.size());
109 EXPECT_EQ(Command1, Commands[0].CommandLine[0]) << ErrorMessage;
110 EXPECT_EQ(Directory2, Commands[1].Directory) << ErrorMessage;
111 ASSERT_EQ(1u, Commands[1].CommandLine.size());
112 EXPECT_EQ(Command2, Commands[1].CommandLine[0]) << ErrorMessage;
122 std::vector<CompileCommand> Commands = Database->getCompileCommands(FileName);
123 EXPECT_LE(Commands.size(), 1u)
    [all...]
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_interstitial.cc 225 enum Commands {
  /external/chromium_org/tools/telemetry/telemetry/core/
bitmaptools.cc 14 enum Commands {
  /external/clang/lib/Tooling/
JSONCompilationDatabase.cpp 186 std::vector<CompileCommand> Commands;
187 getCommands(CommandsRefI->getValue(), Commands);
188 return Commands;
208 std::vector<CompileCommand> Commands;
212 getCommands(CommandsRefI->getValue(), Commands);
214 return Commands;
219 std::vector<CompileCommand> &Commands) const {
223 Commands.push_back(CompileCommand(
  /external/lzma/CPP/7zip/UI/Common/
Update.h 95 CObjectVector<CUpdateArchiveCommand> Commands;
128 Commands.Clear();
131 Commands.Add(c);
  /external/iproute2/doc/
ip-cref.tex 33 This document is split into sections explaining \verb|ip| commands
130 do not allow all of these operations or have some additional commands.
132 out a list of available commands and argument syntax conventions.
229 commands display and change the state of devices.
231 \paragraph{Commands:} \verb|set| and \verb|show| (or \verb|list|).
560 \paragraph{Commands:} \verb|add|, \verb|delete|, \verb|flush| and \verb|show|
797 \paragraph{Warning:} This command (and other \verb|flush| commands
842 The corresponding commands display neighbour bindings
845 \paragraph{Commands:} \verb|add|, \verb|change|, \verb|replace|,
859 \paragraph{Description:} These commands create new neighbour record
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
pprof     [all...]
  /external/jemalloc/bin/
pprof     [all...]
  /external/llvm/utils/TableGen/
AsmWriterEmitter.cpp 450 std::vector<std::string> &Commands = TableDrivenOperandPrinters[i];
454 unsigned NumBits = Log2_32_Ceil(Commands.size());
459 << " bits for " << Commands.size() << " unique commands.\n";
461 if (Commands.size() == 2) {
466 << Commands[1]
468 << Commands[0]
470 } else if (Commands.size() == 1) {
472 O << Commands[0] << "\n\n";
480 for (unsigned i = 0, e = Commands.size(); i != e; ++i)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 38 # Commands
40 Commands = {
108 All IMAP4rev1 commands are supported by methods of the same
111 All arguments to commands are converted to strings, except for
142 most IMAP servers implement a sub-set of the commands available here.
155 self.tagged_commands = {} # Tagged commands awaiting response
212 if attr in Commands:
301 # IMAP4 commands
752 if not command in Commands:
754 if self.state not in Commands[command]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 38 # Commands
40 Commands = {
108 All IMAP4rev1 commands are supported by methods of the same
111 All arguments to commands are converted to strings, except for
142 most IMAP servers implement a sub-set of the commands available here.
155 self.tagged_commands = {} # Tagged commands awaiting response
212 if attr in Commands:
301 # IMAP4 commands
752 if not command in Commands:
754 if self.state not in Commands[command]
    [all...]

Completed in 299 milliseconds