HomeSort by relevance Sort by last modified time
    Searched defs:commands (Results 1 - 25 of 319) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/skiaserve/urlhandlers/
DataHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->fPicture.get() || commands.count() != 2) {
ClipAlphaHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->fPicture.get() || commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &alpha);
ImgHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->fPicture.get() || commands.count() > 2) {
34 if (commands.count() == 1) {
37 sscanf(commands[1].c_str(), "%d", &n);
CmdHandler.cpp 24 SkTArray<SkString> commands; local
25 SkStrSplit(url, "/", &commands);
27 if (!request->fPicture.get() || commands.count() > 3) {
34 if (commands.count() == 1) {
37 sscanf(commands[1].c_str(), "%d", &n);
43 if (commands.count() == 2 && 0 == strcmp(method, MHD_HTTP_METHOD_DELETE)) {
45 sscanf(commands[1].c_str(), "%d", &n);
51 if (commands.count() == 3 && 0 == strcmp(method, MHD_HTTP_METHOD_POST)) {
53 sscanf(commands[1].c_str(), "%d", &n);
54 sscanf(commands[2].c_str(), "%d", &toggle)
    [all...]
EnableGPUHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &enable);
  /cts/libs/vogar-expect/src/vogar/commands/
Mkdir.java 17 package vogar.commands;
Rm.java 17 package vogar.commands;
CommandFailedException.java 17 package vogar.commands;
  /external/clang/utils/perf-training/
perf-helper.py 39 commands = {'clean' : clean, 'merge' : merge} variable
42 f = commands[sys.argv[1]]
  /external/libweave/src/commands/
schema_constants.h 11 namespace commands { namespace in namespace:weave::errors
22 } // namespace commands
25 namespace commands { namespace in namespace:weave
44 } // namespace commands
  /external/vogar/src/vogar/commands/
Mkdir.java 17 package vogar.commands;
Rm.java 17 package vogar.commands;
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_commands.py 2 Tests for commands module
12 commands = import_module('commands', deprecated=True) variable
27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
28 self.assertEqual(commands.getstatusoutput('echo xyzzy'), (0, 'xyzzy'))
38 status, output = commands.getstatusoutput('cat ' + name)
63 with check_warnings((".*commands.getstatus.. is deprecated",
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_commands.py 2 Tests for commands module
12 commands = import_module('commands', deprecated=True) variable
27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
28 self.assertEqual(commands.getstatusoutput('echo xyzzy'), (0, 'xyzzy'))
38 status, output = commands.getstatusoutput('cat ' + name)
63 with check_warnings((".*commands.getstatus.. is deprecated",
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_commands.py 2 Tests for commands module
12 commands = import_module('commands', deprecated=True) variable
27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
28 self.assertEqual(commands.getstatusoutput('echo xyzzy'), (0, 'xyzzy'))
38 status, output = commands.getstatusoutput('cat ' + name)
63 with check_warnings((".*commands.getstatus.. is deprecated",
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_commands.py 2 Tests for commands module
12 commands = import_module('commands', deprecated=True) variable
27 self.assertEqual(commands.getoutput('echo xyzzy'), 'xyzzy')
28 self.assertEqual(commands.getstatusoutput('echo xyzzy'), (0, 'xyzzy'))
38 status, output = commands.getstatusoutput('cat ' + name)
63 with check_warnings((".*commands.getstatus.. is deprecated",
65 self.assertTrue(re.match(pat, commands.getstatus("/."), re.VERBOSE))
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyNoopEvent.java 17 package com.android.commands.monkey;
MonkeyTouchEvent.java 17 package com.android.commands.monkey;
MonkeyTrackballEvent.java 17 package com.android.commands.monkey;
MonkeyViewException.java 16 package com.android.commands.monkey;
MonkeyEventSource.java 17 package com.android.commands.monkey;
MonkeyThrottleEvent.java 17 package com.android.commands.monkey;
  /external/autotest/client/bin/
os_dep.py 19 def commands(*cmds): function
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/commands/
OSUCommandData.java 1 package com.android.hotspot2.osu.commands;
  /frameworks/base/core/java/android/nfc/
ApduList.java 14 private ArrayList<byte[]> commands = new ArrayList<byte[]>(); field in class:ApduList
20 commands.add(command);
24 return commands;
48 commands.add(cmd);
59 dest.writeInt(commands.size());
61 for (byte[] cmd : commands) {

Completed in 281 milliseconds

1 2 3 4 5 6 7 8 91011>>