|   /external/ltp/include/mk/ | 
| module.mk  | 52 # Ignoring the exit status of commands is done to be forward compatible with
  | 
|   /external/python/cpython3/Lib/distutils/ | 
| cygwinccompiler.py  | 399     commands = ['gcc -dumpversion', 'ld -v', 'dllwrap --version'] 400     return tuple([_find_exe_version(cmd) for cmd in commands])
  | 
|   /external/toolchain-utils/automation/server/monitor/ | 
| dashboard.py  | 59     commands = enumerate(job.PrettyFormatCommand().split('\n'), start=1) 65             'code': [('Command', commands)]}
  | 
|   /external/vogar/src/vogar/ | 
| Run.java  | 36 import vogar.commands.Mkdir; 37 import vogar.commands.Rm;
  | 
|   /external/walt/docs/ | 
| ScreenLatency.md  | 7 Because the screen refreshes at predefined intervals (typically 60 Hz), most drawing commands do not take effect immediately but are processes during the next frame render event. See [Choreographer.FrameCallback](https://developer.android.com/reference/android/view/Choreographer.FrameCallback.html). An in-depth explanation about Android graphics can be found in [this video](https://www.youtube.com/watch?v=Q8m9sHdyXnE).
  | 
|   /frameworks/av/packages/MediaComponents/src/com/android/media/update/ | 
| ApiFactory.java  | 128     public SessionCommandGroup2 fromBundle_MediaSession2CommandGroup(Bundle commands) { 129         return MediaSession2Impl.CommandGroupImpl.fromBundle_impl(commands);
  | 
|   /packages/apps/Camera2/src/com/android/camera/one/v2/ | 
| SimpleOneCameraFactory.java  | 44 import com.android.camera.one.v2.commands.CameraCommandExecutor; 45 import com.android.camera.one.v2.commands.BasicPreviewCommandFactory; 147                                 // allow any number of commands to execute
  | 
|   /external/scapy/scapy/layers/ | 
| l2.py  | 59 @conf.commands.register 464 @conf.commands.register 491 @conf.commands.register 509 @conf.commands.register 517 @conf.commands.register 596 @conf.commands.register
  | 
|   /frameworks/support/media/src/main/java/androidx/media/ | 
| MediaSession2Stub.java  | 151         Set<SessionCommand2> commands = group.getCommands();  external variable declarations  152         for (SessionCommand2 command : commands) { 421     void setAllowedCommands(ControllerInfo controller, final SessionCommandGroup2 commands) { 423             mAllowedCommandGroupMap.put(controller, commands); 548                         // For trusted apps, send non-null allowed commands to keep     [all...] | 
|   /build/kati/ | 
| dep.go  | 194 		// If none of the explicit rules for a target has commands, 196 		// find some commands. 418 		warn(r.cmdpos(), "overriding commands for target %q", output) 419 		warn(oldRule.cmdpos(), "ignoring old commands for target %q", output) 430 	// commands in oldRule), inputs in the latter rule has a
  | 
| ninja.cc  | 173   vector<Command*> commands;  member in struct:NinjaNode  247     ce_.Eval(node, &nn->commands); 248     nn->rule_id = nn->commands.empty() ? -1 : rule_id_++; 399                       const vector<Command*>& commands, 404     auto command_count = commands.size(); 405     for (const Command* c : commands) { 481     const vector<Command*>& commands = nn->commands;  local  492     if (!commands.empty()) { 498       use_local_pool |= GenShellScript(node->output.c_str(), commands, &cmd_buf     [all...] | 
|   /external/mesa3d/src/gallium/drivers/nouveau/nvc0/ | 
| nvc0_tex.c  | 474    uint32_t commands[32];  local  487             commands[n++] = (i << 1) | 0; 516       commands[n++] = (tic->id << 9) | (i << 1) | 1; 524       commands[n++] = (i << 1) | 0; 533       PUSH_DATAp(push, commands, n); 618    uint32_t commands[16];  local  630          commands[n++] = (i << 4) | 0; 644       commands[n++] = (tsc->id << 12) | (i << 4) | 1; 647       commands[n++] = (i << 4) | 0; 656       PUSH_DATAp(push, commands, n)     [all...] | 
| nve4_compute.c  | 121        * disabled because our firmware doesn't support these commands and the 705    uint32_t commands[2][32];  local  734          commands[0][n[0]++] = (tic->id << 4) | 1; 737          commands[1][n[1]++] = (tic->id << 4) | 1; 756       PUSH_DATAp(push, commands[0], n[0]); 760       PUSH_DATAp(push, commands[1], n[1]);
  | 
|   /external/ltp/android/ | 
| Android.ltp.mk  | 109 module_src_files := testcases/commands/file/datafiles/in.zip 137 module_src_files := testcases/commands/ld/datafiles/d1.c 165 module_src_files := testcases/commands/ar/datafiles/file2.in 193 module_src_files := testcases/commands/file/datafiles/in.sh 305 module_src_files := testcases/commands/file/datafiles/in.bash 321 module_src_files := testcases/commands/ld/datafiles/f1.c 505 module_src_files := testcases/commands/unzip/datafiles/dir.out 569 module_src_files := testcases/commands/ld/datafiles/rd1.c 721 module_src_files := testcases/commands/file/datafiles/in.ar 789 module_src_files := testcases/commands/ld/datafiles/rf1.     [all...] | 
|   /external/mesa3d/src/intel/tools/ | 
| decoder.c  | 50    struct gen_group *commands[256];  member in struct:gen_spec  438          spec->commands[spec->ncommands++] = group; 621       uint32_t opcode = *p & spec->commands[i]->opcode_mask; 622       if (opcode == spec->commands[i]->opcode) 623          return spec->commands[i];
  | 
|   /external/python/cpython2/Lib/test/ | 
| test_gdb.py  | 70     # -nx: Do not execute commands from any .gdbinit initialization files 128         Support injecting commands after the breakpoint is reached 132         cmds_after_breakpoint: if provided, a list of strings: gdb commands 147         # Generate a list of commands in gdb's language: 148         commands = ['set breakpoint pending yes', 170             commands += ['set print entry-values no'] 173             commands += cmds_after_breakpoint 175             commands += ['backtrace'] 177         # print commands 179         # Use "commands" to generate the arguments with which to invoke "gdb"     [all...] | 
|   /external/python/cpython3/Lib/test/ | 
| test_gdb.py  | 72     # -nx: Do not execute commands from any .gdbinit initialization files 125         Support injecting commands after the breakpoint is reached 129         cmds_after_breakpoint: if provided, a list of strings: gdb commands 144         # Generate a list of commands in gdb's language: 145         commands = ['set breakpoint pending yes', 167             commands += ['set print entry-values no'] 170             commands += cmds_after_breakpoint 172             commands += ['backtrace'] 174         # print commands 176         # Use "commands" to generate the arguments with which to invoke "gdb"     [all...] | 
|   /tools/tradefederation/core/src/com/android/tradefed/targetprep/ | 
| DeviceSetup.java  | 297     @Option(name = "force-skip-run-commands", 298             description = "Force setup to not run any additional commands. All other commands " + 430         // Convert options into settings and run commands 436         // Run commands designated to be run before changing settings 444         // Run commands designated to be run after changing settings 545      * Process all the {@link Option}s and turn them into system props, settings, or run commands. 546      * Does not run any commands on the device at this time.     [all...] | 
|   /prebuilts/go/darwin-x86/src/os/exec/ | 
| lp_windows_test.go  | 380 	// testing commands with no slash, like `a.exe` 401 	// testing commands with slash, like `.\a.exe` 422 		// like above, but make sure .exe is tried even for commands with slash 428 	// tests commands, like `a.exe`, with c.Dir set 480 	// tests commands, like `.\a.exe`, with c.Dir set 497 		// like above, but make sure .exe is tried even for commands with slash
  | 
|   /prebuilts/go/linux-x86/src/os/exec/ | 
| lp_windows_test.go  | 380 	// testing commands with no slash, like `a.exe` 401 	// testing commands with slash, like `.\a.exe` 422 		// like above, but make sure .exe is tried even for commands with slash 428 	// tests commands, like `a.exe`, with c.Dir set 480 	// tests commands, like `.\a.exe`, with c.Dir set 497 		// like above, but make sure .exe is tried even for commands with slash
  | 
|   /frameworks/av/packages/MediaComponents/src/com/android/media/ | 
| MediaSession2Impl.java  | 447             @NonNull SessionCommandGroup2 commands) { 451         if (commands == null) { 452             throw new IllegalArgumentException("commands shouldn't be null"); 454         mSessionStub.setAllowedCommands(controller, commands);     [all...] | 
|   /build/soong/genrule/ | 
| genrule.go  | 371 		commands := []string{} 398 			commands = append(commands, command) 400 		fullCommand := strings.Join(commands, " && ")
  | 
|   /device/google/cuttlefish_common/host/libs/ivserver/ | 
| README.md  | 62   Please run the following commands and retry launching.
  | 
|   /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ | 
| cmd.py  | 15    commands, miscellaneous help topics, and undocumented commands.
 18 7. If completion is enabled, completing commands will be done automatically,
 19    and completing of commands args is done by calling complete_foo() with
 26 The `default' method may be overridden to intercept commands for which there
 30 commands that have no complete_ method.
 73     doc_header = "Documented commands (type help <topic>):"
 75     undoc_header = "Undocumented commands:"
 203         commands by the interpreter should stop.
 291         commands = set(self.completenames(*args))     [all...] | 
|   /external/autotest/server/cros/servo/ | 
| chrome_cr50.py  | 30     provides many interfaces to set and get its behavior via console commands. 78     def send_command(self, commands): 87         super(ChromeCr50, self).send_command(commands)
  |