/external/deqp/scripts/egl/ |
call_log_wrapper.py | 51 def prefixedParams (command): 52 if len(command.params) > 0: 53 return ", ".join(eglwPrefix(param.declaration) for param in command.params) 57 def commandLogWrapperMemberDecl (command): 58 return "%s\t%s\t(%s);" % (eglwPrefix(command.type), command.name, prefixedParams(command)) 70 def commandLogWrapperMemberDef (command): 73 logSpec = CALL_LOG_SPECS[command.name] 78 src += "%s CallLogWrapper::%s (%s)\n{\n" % (eglwPrefix(command.type), command.name, ", ".join(eglwPrefix(p.declaration) for p in command.params) [all...] |
/external/iproute2/man/man8/ |
ip-addrlabel.8 | 12 .RI " { " COMMAND " | " 42 the command adds an address label entry to the kernel. 53 the command deletes an address label entry in the kernel. 59 the command show contents of address labels. 61 the command flushes the contents of address labels and it does not restore default settings.
|
/external/linux-tools-perf/src/tools/perf/Documentation/ |
perf-help.txt | 10 'perf help' [-a|--all] [COMMAND] 15 With no options and no COMMAND given, the synopsis of the 'perf' 16 command and a list of the most commonly used perf commands are printed 22 If a perf command is named, a manual page for that command is brought
|
/external/lldb/test/functionalities/command_script/import/rdar-12586188/ |
TestRdar12586188.py | 1 """Check that we handle an ImportError in a special way when command script importing files.""" 14 """Check that we handle an ImportError in a special way when command script importing files.""" 22 """Check that we handle an ImportError in a special way when command script importing files.""" 24 self.expect("command script import ./fail12586188.py --allow-reload", 26 self.expect("command script import ./fail212586188.py --allow-reload",
|
/external/lldb/test/functionalities/command_source/ |
TestCommandSource.py | 2 Test that lldb command "command source" works correctly. 17 """Test that lldb command "command source" works correctly.""" 21 self.runCmd("command source .lldb")
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/ |
ConnectCommandHandler.java | 16 package org.mockftpserver.core.command;
25 * client, rather than an explicit FTP command.
42 * @see AbstractTrackingCommandHandler#handleCommand(Command, org.mockftpserver.core.session.Session, InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
|
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
TestCommandHandler.groovy | 18 import org.mockftpserver.core.command.Command
20 import org.mockftpserver.fake.command.AbstractFakeCommandHandler
31 protected void handle(Command command, Session session) {
|
TestCommandHandlerNotServerConfigurationAware.groovy | 18 import org.mockftpserver.core.command.Command
19 import org.mockftpserver.core.command.CommandHandler
31 public void handleCommand(Command command, Session session) {
|
/external/toybox/toys/posix/ |
time.c | 1 /* time.c - time a simple command 14 usage: time [-p] COMMAND [ARGS...] 16 Run command line and report real, user, and system time elapsed in seconds. 17 (real = clock on the wall, user = cpu used by command's code, 18 system = cpu used by OS on behalf of command.)
|
/external/wpa_supplicant_8/wpa_supplicant/doc/docbook/ |
wpa_passphrase.sgml | 14 <command>wpa_passphrase</command> 23 <para><command>wpa_passphrase</command> pre-computes PSK entries for 42 <para>The passphrase to use. If not included on the command line,
|
/system/extras/simpleperf/ |
cmd_dumprecord_test.cpp | 19 #include "command.h" 24 record_cmd = Command::FindCommandByName("record"); 26 dumprecord_cmd = Command::FindCommandByName("dump"); 30 Command* record_cmd; 31 Command* dumprecord_cmd;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
config-keys.def | 113 copy=<Command-Key-c> 114 cut=<Command-Key-x> 115 paste=<Command-Key-v> 118 close-all-windows=<Command-Key-q> 119 close-window=<Command-Key-w> 129 open-class-browser=<Command-Key-b> 130 open-module=<Command-Key-m> 131 open-new-window=<Command-Key-n> 132 open-window-from-file=<Command-Key-o> 134 print-window=<Command-Key-p [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
config-keys.def | 113 copy=<Command-Key-c> 114 cut=<Command-Key-x> 115 paste=<Command-Key-v> 118 close-all-windows=<Command-Key-q> 119 close-window=<Command-Key-w> 129 open-class-browser=<Command-Key-b> 130 open-module=<Command-Key-m> 131 open-new-window=<Command-Key-n> 132 open-window-from-file=<Command-Key-o> 134 print-window=<Command-Key-p [all...] |
/external/clang/include/clang/Basic/ |
DiagnosticCommentKinds.td | 51 "empty paragraph passed to '%select{\\|@}0%1' command">, 55 "duplicated command '%select{\\|@}0%1'">, 59 "previous command '%select{\\|@}0%1' here">; 62 "previous command '%select{\\|@}0%1' (an alias of '\\%2') here">; 64 // \param command 76 "'%select{\\|@}0param' command used in a comment that is not attached to " 82 "command should be used in a comment attached to " 89 "command should not be used in a comment attached to a " 96 "command should not be used in a comment attached to a non-container declaration">, 113 // tparam command [all...] |
/external/libavc/encoder/ |
ive2.h | 111 /** API command type */ 124 /** Video Control API command type */ 252 /** Command type */ 426 /** Command : IVE_CMD_QUEUE_INPUT */ 482 /** Command: IVE_CMD_DEQUEUE_INPUT */ 539 /** Command : IVE_CMD_QUEUE_OUTPUT */ 575 /** Command : IVE_CMD_DEQUEUE_OUTPUT */ 615 /** Command : IVE_CMD_GET_RECON */ 659 /** Command type : IVE_CMD_VIDEO_CTL */ 662 /** Sub command type : IVE_CMD_CTL_FLUSH * [all...] |
/external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/ |
_AbstractTrackingCommandHandlerTest.java | 16 package org.mockftpserver.core.command;
41 private static final Command COMMAND = new Command(COMMAND_NAME, EMPTY);
42 private static final Command COMMAND_WITH_ARGS = new Command(COMMAND_NAME, EMPTY);
57 * Test the handleCommand(Command,Session) method
61 commandHandler.handleCommand(COMMAND, session);
67 * Test the handleCommand(Command,Session) method, passing in a null Command
[all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/ |
_AbstractStubDataCommandHandlerTest.java | 16 package org.mockftpserver.stub.command;
22 import org.mockftpserver.core.command.Command;
23 import org.mockftpserver.core.command.InvocationRecord;
26 import org.mockftpserver.stub.command.AbstractStubDataCommandHandler;
40 private static final Command COMMAND = new Command("command", EMPTY);
41 private static final InvocationRecord INVOCATION_RECORD = new InvocationRecord(COMMAND, DEFAULT_HOST); [all...] |
/cts/libs/vogar-expect/src/vogar/commands/ |
Rm.java | 22 * A rm command. 27 new Command("rm", "-f", file.getPath()).execute(); 31 new Command("rm", "-rf", directory.getPath()).execute();
|
/development/samples/JetBoy/ |
JETBOY_content_README.txt | 5 1. Open a command prompt and go to the directory where the JetCreator tool is located.
9 3. Select the IMPORT command and import JETBOY.zip.
11 4. After importing the first time, you can use the OPEN command to open the .jtc file in the folder you selected as the target for import.
|
/external/clang/bindings/python/tests/cindex/INPUTS/ |
compile_commands.json | 4 "command": "clang++ -o project.o -c /home/john.doe/MyProject/project.cpp", 9 "command": "clang++ -o project2.o -c /home/john.doe/MyProject/project2.cpp", 14 "command": "clang++ -DFEATURE=1 -o project2-feature.o -c /home/john.doe/MyProject/project2.cpp",
|
/external/clang/lib/AST/ |
CommentCommandTraits.cpp | 1 //===--- CommentCommandTraits.cpp - Comment command properties --*- C++ -*-===// 48 // Single-character command impostures, such as \t or \n, should not go 59 auto ConsiderCorrection = [&](const CommandInfo *Command) { 60 StringRef Name = Command->Name; 70 BestCommand.push_back(Command); 74 for (const auto &Command : Commands) 75 ConsiderCorrection(&Command); 77 for (const auto *Command : RegisteredCommands) 78 if (!Command->IsUnknownCommand) 79 ConsiderCorrection(Command); [all...] |
/external/kernel-headers/original/uapi/linux/ |
reboot.h | 18 * RESTART Restart system using default command and mode. 20 * CAD_ON Ctrl-Alt-Del sequence causes RESTART command. 23 * RESTART2 Restart system using given command string.
|
/external/llvm/test/Transforms/LoopUnswitch/ |
2011-06-02-CritSwitch.ll | 4 define i32 @test(i32 %command) { 12 switch i32 %command, label %sw.bb [ 21 switch i32 %command, label %tailrecurse [
|
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/ |
PasvCommandHandler.java | 16 package org.mockftpserver.stub.command;
23 import org.mockftpserver.core.command.Command;
24 import org.mockftpserver.core.command.CommandHandler;
25 import org.mockftpserver.core.command.InvocationRecord;
26 import org.mockftpserver.core.command.ReplyCodes;
31 * CommandHandler for the PASV (Passove Mode) command. Request the Session to switch to passive
57 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(Command, Session, InvocationRecord)
59 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) [all...] |
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/ |
StaticReplyCommandHandlerTest.java | 16 package org.mockftpserver.core.command;
19 import org.mockftpserver.core.command.Command;
20 import org.mockftpserver.core.command.StaticReplyCommandHandler;
22 import org.mockftpserver.stub.command.AbstractCommandHandlerTest;
36 private static final Command COMMAND = new Command("ANY", EMPTY);
90 commandHandler.handleCommand(COMMAND, session);
108 commandHandler.handleCommand(COMMAND, session); [all...] |