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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/skiaserve/urlhandlers/
ImgHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() > 3) {
34 if (commands.count() == 1) {
36 } else if (commands.count() == 2) {
37 sscanf(commands[1].c_str(), "%d", &n);
39 sscanf(commands[1].c_str(), "%d", &n);
40 sscanf(commands[2].c_str(), "%d", &m);
InfoHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || 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->hasPicture() || commands.count() > 3) {
34 if (commands.count() == 1) {
37 sscanf(commands[1].c_str(), "%d", &n);
45 if (commands.count() == 2 && 0 == strcmp(method, MHD_HTTP_METHOD_DELETE)) {
47 sscanf(commands[1].c_str(), "%d", &n);
53 if (commands.count() == 3 && 0 == strcmp(method, MHD_HTTP_METHOD_POST)) {
55 sscanf(commands[1].c_str(), "%d", &n);
56 sscanf(commands[2].c_str(), "%d", &toggle)
    [all...]
ClipAlphaHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &alpha);
ColorModeHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 if (1 != sscanf(commands[1].c_str(), "%d", &mode)) {
EnableGPUHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &enable);
OpBoundsHandler.cpp 24 SkTArray<SkString> commands; local
25 SkStrSplit(url, "/", &commands);
27 if (!request->hasPicture() || commands.count() != 2) {
32 sscanf(commands[1].c_str(), "%d", &enabled);
OverdrawHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &enable);
  /external/skqp/tools/skiaserve/urlhandlers/
ImgHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() > 3) {
34 if (commands.count() == 1) {
36 } else if (commands.count() == 2) {
37 sscanf(commands[1].c_str(), "%d", &n);
39 sscanf(commands[1].c_str(), "%d", &n);
40 sscanf(commands[2].c_str(), "%d", &m);
InfoHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || 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->hasPicture() || commands.count() > 3) {
34 if (commands.count() == 1) {
37 sscanf(commands[1].c_str(), "%d", &n);
45 if (commands.count() == 2 && 0 == strcmp(method, MHD_HTTP_METHOD_DELETE)) {
47 sscanf(commands[1].c_str(), "%d", &n);
53 if (commands.count() == 3 && 0 == strcmp(method, MHD_HTTP_METHOD_POST)) {
55 sscanf(commands[1].c_str(), "%d", &n);
56 sscanf(commands[2].c_str(), "%d", &toggle)
    [all...]
ClipAlphaHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (!request->hasPicture() || commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &alpha);
ColorModeHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 if (1 != sscanf(commands[1].c_str(), "%d", &mode)) {
EnableGPUHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &enable);
OpBoundsHandler.cpp 24 SkTArray<SkString> commands; local
25 SkStrSplit(url, "/", &commands);
27 if (!request->hasPicture() || commands.count() != 2) {
32 sscanf(commands[1].c_str(), "%d", &enabled);
OverdrawHandler.cpp 25 SkTArray<SkString> commands; local
26 SkStrSplit(url, "/", &commands);
28 if (commands.count() != 2) {
33 sscanf(commands[1].c_str(), "%d", &enable);
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyEventSource.java 17 package com.android.commands.monkey;
MonkeyViewException.java 16 package com.android.commands.monkey;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AOptimizedMultipleCommand.java 18 private final PCommand[] commands; field in class:AOptimizedMultipleCommand
22 commands = new PCommand[originalChildCommands.size()];
23 originalChildCommands.toArray(commands);
24 for (int i = 0; i < commands.length; i++) {
25 commands[i].parent(this); // set parent.
45 for (int i = 0; i < commands.length; i++) {
46 if (commands[i] == oldChild) {
47 commands[i] = (PCommand) newChild;
58 for (int i = 0; i < commands.length; i++) {
59 commands[i].apply(sw)
    [all...]
  /external/autotest/client/common_lib/cros/fake_device_server/
commands_unittest.py 7 """Unit tests for commands.py."""
14 from fake_device_server import commands
21 """Tests for the Commands class.
26 # commands.devices_commands[(id, api_key)] = dict of commands by command id.
33 # module bypass cherrypy by directly invoking commands.GET.
36 self.commands = commands.Commands(self.oauth, self.fail_control)
53 self.commands.new_device(DEVICE_ID
    [all...]
  /cts/libs/vogar-expect/src/vogar/commands/
Mkdir.java 17 package vogar.commands;
  /external/mesa3d/src/gallium/drivers/svga/svgadump/
svga_dump.h 35 svga_dump_commands(const void *commands, uint32_t size);
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 

Completed in 330 milliseconds

1 2 3 4 5 6 7 8 91011>>