/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
hdsmart.h | 81 ata_smart_errorlog_command_struct_t commands[6]; member in struct:ata_smart_errorlog_struct_s
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/ |
nvc0_tex.c | 212 uint32_t commands[32]; local 226 commands[n++] = (i << 1) | 0; 259 commands[n++] = (tic->id << 9) | (i << 1) | 1; 264 commands[n++] = (i << 1) | 0; 270 PUSH_DATAp(push, commands, n); 357 uint32_t commands[16]; local 369 commands[n++] = (i << 4) | 0; 382 commands[n++] = (tsc->id << 12) | (i << 4) | 1; 385 commands[n++] = (i << 4) | 0; 391 PUSH_DATAp(push, commands, n) [all...] |
/external/mesa3d/src/gallium/drivers/nvc0/ |
nvc0_tex.c | 212 uint32_t commands[32]; local 226 commands[n++] = (i << 1) | 0; 259 commands[n++] = (tic->id << 9) | (i << 1) | 1; 264 commands[n++] = (i << 1) | 0; 270 PUSH_DATAp(push, commands, n); 357 uint32_t commands[16]; local 369 commands[n++] = (i << 4) | 0; 382 commands[n++] = (tsc->id << 12) | (i << 4) | 1; 385 commands[n++] = (i << 4) | 0; 391 PUSH_DATAp(push, commands, n) [all...] |
/external/chromium_org/chrome/browser/sessions/ |
session_service.h | 53 // SessionTab and SerializedNavigationEntry). The commands are periodically 225 // Returns true if we have scheduled any commands, or any scheduled commands 248 // Methods to create the various commands. It is up to the caller to delete 283 // Converts |commands| to SessionWindows and notifies the callback. 285 ScopedVector<SessionCommand> commands); 287 // Converts the commands into SessionWindows. On return any valid 292 void RestoreSessionFromCommands(const std::vector<SessionCommand*>& commands, 336 // Creates tabs and windows from the commands specified in |data|. The created 348 // Adds commands to commands that will recreate the state of the specifie [all...] |
session_service.cc | 57 // Identifier for commands written to file. 86 // Every kWritesPerReset commands triggers recreating the file. 844 ScopedVector<SessionCommand> commands) { 849 commands.get(), &valid_windows.get(), &active_window_id); 854 const std::vector<SessionCommand*>& commands, 860 VLOG(1) << "RestoreSessionFromCommands " << commands.size(); 861 if (CreateTabsAndWindows(commands, &tabs, &windows, active_window_id)) { [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/ |
antsupportlib.jar | |
/external/skia/tools/lua/ |
bbh_filter.lua | 8 -- have most commands, and the names of the files that use the least popular commands. 139 "\n-- ================== skps with calling unpopular commands.", 10)
|
/external/chromium_org/chrome/browser/extensions/api/commands/ |
command_service.cc | 5 #include "chrome/browser/extensions/api/commands/command_service.h" 15 #include "chrome/browser/extensions/api/commands/commands.h" 23 #include "chrome/common/extensions/api/commands/commands_handler.h" 182 const extensions::CommandMap* commands = local 184 if (!commands) 187 extensions::CommandMap::const_iterator iter = commands->begin(); 188 for (; iter != commands->end(); ++iter) { 354 const extensions::CommandMap* commands = local 356 if (!commands) [all...] |
/external/chromium_org/chrome/browser/resources/task_manager/ |
commands.js | 7 * Sends commands to kill selected processes.
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/ |
queries_unittest.py | 36 from webkitpy.tool.commands.commandtest import CommandsTest 37 from webkitpy.tool.commands.queries import *
|
rebaselineserver.py | 36 from webkitpy.tool.commands.abstractlocalservercommand import AbstractLocalServerCommand
|
/external/chromium_org/tools/cygprofile/ |
patch_orderfile.py | 6 import commands namespace 13 nmlines_uninstrumented = commands.getoutput ('nm -S -n ' +
|
/external/chromium_org/tools/metrics/histograms/ |
find_unmapped_histograms.py | 13 import commands namespace 144 locations = commands.getoutput('git gs UMA_HISTOGRAM').split('\n')
|
/external/llvm/utils/lit/lit/ |
TestRunner.py | 82 for i,j in enumerate(cmd.commands): 151 if stderr == subprocess.PIPE and j != cmd.commands[-1]: 224 results.append((cmd.commands[i], out, err, res)) 246 def executeScriptInternal(test, litConfig, tmpBase, commands, cwd): 248 for ln in commands: 276 def executeScript(test, litConfig, tmpBase, commands, cwd): 289 f.write('\nif %ERRORLEVEL% NEQ 0 EXIT\n'.join(commands)) 293 f.write('{ ' + '; } &&\n{ '.join(commands) + '; }')
|
/external/smack/src/org/jivesoftware/smackx/commands/ |
AdHocCommandManager.java | 21 package org.jivesoftware.smackx.commands;
34 import org.jivesoftware.smackx.commands.AdHocCommand.Action;
35 import org.jivesoftware.smackx.commands.AdHocCommand.Status;
51 * commands offered by a service and for processing commands requests.
61 private static final String DISCO_NAMESPACE = "http://jabber.org/protocol/commands";
116 private Map<String, AdHocCommandInfo> commands = Collections
field in class:AdHocCommandManager 167 commands.put(node, commandInfo);
202 * Discover the commands of an specific JID. The <code>jid</code> is a
205 * @param jid the full JID to retrieve the commands for. [all...] |