/external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/ |
commands.html | 1 {{+partials.standard_extensions_api api:apis.commands intro:intros.commands/}}
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
__init__.py | 3 from webkitpy.tool.commands.commitannouncer import CommitAnnouncerCommand 4 from webkitpy.tool.commands.flakytests import FlakyTests 5 from webkitpy.tool.commands.gardenomatic import GardenOMatic 6 from webkitpy.tool.commands.prettydiff import PrettyDiff 7 from webkitpy.tool.commands.queries import * 8 from webkitpy.tool.commands.rebaseline import Rebaseline 9 from webkitpy.tool.commands.rebaselineserver import RebaselineServer
|
/external/chromium_org/tools/gyp/test/variables/commands/ |
update_golden | 7 python ../../../gyp --debug variables --format gypd --depth . commands.gyp > commands.gyp.stdout 8 python ../../../gyp --ignore-environment --debug variables --format gypd --depth . commands.gyp > commands.gyp.ignore-env.stdout 9 cp -f commands.gypd commands.gypd.golden 10 python ../../../gyp --debug variables --format gypd --depth . commands-repeated.gyp > commands-repeated.gyp.stdout 11 cp -f commands-repeated.gypd commands-repeated.gypd.golde [all...] |
gyptest-commands-repeated.py | 8 Test variable expansion of '<!()' syntax commands where they are evaluated 16 expect = test.read('commands-repeated.gyp.stdout').replace('\r\n', '\n') 18 test.run_gyp('commands-repeated.gyp', 22 # Verify the commands-repeated.gypd against the checked-in expected contents. 31 contents = test.read('commands-repeated.gypd').replace('\r\n', '\n') 32 expect = test.read('commands-repeated.gypd.golden').replace('\r\n', '\n') 34 print "Unexpected contents of `commands-repeated.gypd'" 35 test.diff(expect, contents, 'commands-repeated.gypd ')
|
gyptest-commands.py | 8 Test variable expansion of '<!()' syntax commands. 17 expect = test.read('commands.gyp.stdout').replace('\r', '') 19 test.run_gyp('commands.gyp', 23 # Verify the commands.gypd against the checked-in expected contents. 32 contents = test.read('commands.gypd').replace('\r', '') 33 expect = test.read('commands.gypd.golden').replace('\r', '') 35 print "Unexpected contents of `commands.gypd'" 36 test.diff(expect, contents, 'commands.gypd ')
|
/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/chromium_org/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/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/chromium_org/tools/cr/cr/commands/ |
__init__.py | 5 """A package for all the built in commands. 7 This package has all the standard commands built in to the cr tool. 8 Most commands use actions to perform the real work.
|
/external/chromium_org/tools/cr/cr/targets/ |
__init__.py | 5 """A package for all the built in commands. 7 This package has all the standard commands built in to the cr tool. 8 Most commands use actions to perform the real work.
|
/external/clang/test/Driver/ |
fcomment-block-commands.c | 1 // Check that we pass -fcomment-block-commands to frontend. 4 // RUN: %clang -c %s -fcomment-block-commands=Foo -### 2>&1 | FileCheck %s --check-prefix=CHECK-ARG 6 // CHECK-ARG: -fcomment-block-commands=Foo 8 // CHECK-NO-ARG-NOT: -fcomment-block-commands=
|
/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 | |
/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...] |
/external/chromium_org/chrome/browser/resources/extensions/ |
extension_commands_overlay.js | 10 // The Extension Commands list object that will be used to show the commands 16 * Encapsulated handling of the 'Extension Commands' overlay page. 34 $('extension-commands-dismiss').addEventListener('click', 53 * the current state of extension commands. 60 // Make sure the config link is visible, since there are commands to show 62 document.querySelector('.extension-commands-config').hidden = 63 extensionsData.commands.length == 0; 65 $('no-commands').hidden = extensionsData.commands.length > 0 [all...] |
/external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/ |
__init__.py | 5 """Package for all sdk_update commands."""
|
/frameworks/base/cmds/bu/ |
bu | 5 exec app_process $base/bin com.android.commands.bu.Backup "$@"
|
/frameworks/base/cmds/requestsync/ |
requestsync | 5 exec app_process $base/bin com.android.commands.requestsync.RequestSync "$@"
|
/frameworks/base/cmds/settings/ |
settings | 5 exec app_process $base/bin com.android.commands.settings.SettingsCmd "$@"
|
/external/chromium_org/chrome/test/security_tests/ |
security_tests.gyp | 14 '../../../sandbox/win/tests/validation_tests/commands.cc', 15 '../../../sandbox/win/tests/validation_tests/commands.h',
|
/external/chromium_org/tools/cr/cr/actions/ |
__init__.py | 7 This package holds the standard actions used by the commands in the cr tool. 9 run in sequences by 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) {
|