/ndk/sources/host-tools/make-3.81/ |
commands.h | 1 /* Definition of data structures describing shell commands for GNU Make. 19 /* Structure that gives the commands to make a file 20 and information about where these commands came from. */ 22 struct commands struct 24 struct floc fileinfo; /* Where commands were defined. */ 25 char *commands; /* Commands text. */ member in struct:commands 27 char **command_lines; /* Commands chopped up into lines. */ 39 extern void print_commands PARAMS ((struct commands *cmds)); 41 extern void chop_commands PARAMS ((struct commands *cmds)) [all...] |
rule.h | 28 struct commands *cmds; /* Commands to execute. */ 36 char *target, *dep, *commands; member in struct:pspec 59 struct commands *commands,
|
/external/chromium/chrome/browser/sessions/ |
session_backend_unittest.cc | 57 std::vector<SessionCommand*> commands; local 58 commands.push_back(CreateCommandFromData(data)); 59 backend->AppendCommands(new SessionCommands(commands), false); 60 commands.clear(); 65 backend->ReadLastSessionCommandsImpl(&commands); 67 ASSERT_EQ(1U, commands.size()); 68 AssertCommandEqualsData(data, commands[0]); 70 STLDeleteElements(&commands); 74 backend->ReadLastSessionCommandsImpl(&commands); 76 ASSERT_EQ(0U, commands.size()) 104 std::vector<SessionCommand*> commands; local 129 std::vector<SessionCommand*> commands; local 169 std::vector<SessionCommand*> commands; local 182 std::vector<SessionCommand*> commands; local [all...] |
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
__init__.py | 3 from webkitpy.tool.commands.bugsearch import BugSearch 4 from webkitpy.tool.commands.bugfortest import BugForTest 5 from webkitpy.tool.commands.download import * 6 from webkitpy.tool.commands.earlywarningsystem import * 7 from webkitpy.tool.commands.openbugs import OpenBugs 8 from webkitpy.tool.commands.prettydiff import PrettyDiff 9 from webkitpy.tool.commands.queries import * 10 from webkitpy.tool.commands.queues import * 11 from webkitpy.tool.commands.rebaseline import Rebaseline 12 from webkitpy.tool.commands.rebaselineserver import RebaselineServe [all...] |
prettydiff.py | 29 from webkitpy.tool.commands.abstractsequencedcommand import AbstractSequencedCommand
|
openbugs_unittest.py | 29 from webkitpy.tool.commands.commandtest import CommandsTest 30 from webkitpy.tool.commands.openbugs import OpenBugs
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyEventSource.java | 17 package com.android.commands.monkey;
|
MonkeyViewException.java | 16 package com.android.commands.monkey;
|
MonkeyTouchEvent.java | 17 package com.android.commands.monkey;
|
MonkeyTrackballEvent.java | 17 package com.android.commands.monkey;
|
/external/smack/src/org/jivesoftware/smackx/commands/ |
LocalCommandFactory.java | 20 package org.jivesoftware.smackx.commands; 23 * A factory for creating local commands. It's useful in cases where instantiation
|
/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...] |
/cts/libs/vogar-expect/src/vogar/commands/ |
Mkdir.java | 17 package vogar.commands;
|
Rm.java | 17 package vogar.commands;
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/ |
AbstractApplication.java | 58 protected void processCommandLine(List commands) { 66 protected String[] getArguments(List commands, String param) { 67 int index = commands.indexOf(param); 70 commands.remove(index); 71 if (index == commands.size()) // if this is the last command 73 List args = new ArrayList(commands.size()); 74 while (index < commands.size()) { // while not the last command 75 String command = (String) commands.get(index); 79 commands.remove(index);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.commands_3.6.0.I20100512-1500.jar | |
/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 | |
org.eclipse.core.commands_3.4.0.I20080509-2000.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 | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
AndroidNature.java | 181 ICommand[] commands = desc.getBuildSpec(); local 184 for (int i = 0; i < commands.length; ++i) { 185 if (ResourceManagerBuilder.ID.equals(commands[i].getBuilderName())) { 191 ICommand[] newCommands = new ICommand[commands.length + 1]; 192 System.arraycopy(commands, 0, newCommands, 1, commands.length); 210 ICommand[] commands = desc.getBuildSpec(); local 213 for (int i = 0; i < commands.length; ++i) { 214 if (PreCompilerBuilder.ID.equals(commands[i].getBuilderName())) { 222 for (int i = 0; i < commands.length; ++i) 255 ICommand[] commands = desc.getBuildSpec(); local 281 ICommand[] commands = description.getBuildSpec(); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/handlers/ |
StaticPortConfigHandler.java | 21 import org.eclipse.core.commands.AbstractHandler; 22 import org.eclipse.core.commands.ExecutionEvent; 23 import org.eclipse.core.commands.ExecutionException;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/binding/editors/controls/ |
DefaultControlActionsManager.java | 13 import org.eclipse.core.commands.AbstractHandler; 14 import org.eclipse.core.commands.ExecutionEvent; 15 import org.eclipse.core.commands.ExecutionException; 16 import org.eclipse.core.commands.IHandler; 21 * Default manager for installing/unistalling global handlers for {@link Control} actions 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) {
|
/external/skia/tools/ |
filtermain.cpp | 60 const SkTDArray<SkDrawCommand*>& commands = debugCanvas.getDrawCommands(); local 62 for (int i = 0; i < commands.count(); ++i) { 68 if (SAVE_LAYER == commands[i]->getType() && commands.count() > i+2) { 69 if (DRAW_BITMAP_RECT_TO_RECT == commands[i+1]->getType() && 70 RESTORE == commands[i+2]->getType()) { 71 SaveLayer* sl = (SaveLayer*) commands[i]; 72 DrawBitmapRect* dbmr = (DrawBitmapRect*) commands[i+1]; 78 commands[i]->setVisible(false); 79 commands[i+2]->setVisible(false) [all...] |