Searched refs:arguments (Results 1 - 25 of 863) sorted by relevance

1234567891011>>

/macosx-10.9.5/AppleRAID-4.0.6/
H A DAppleRAIDUserClient.cpp77 IOExternalMethodArguments * arguments,
148 return super::externalMethod(selector, arguments, dispatch, target, reference);
187 // XXX will need to support larger ool arguments someday
190 AppleRAIDUserClient::mapArguments(IOExternalMethodArguments * arguments, void ** in, uint32_t * inCount, void ** out, uint32_t * outCount)
192 if (arguments->structureInputDescriptor) {
194 IOMemoryDescriptor * mem = arguments->structureInputDescriptor;
201 *in = arguments->structureInput;
202 *inCount = arguments->structureInputSize;
204 if (arguments->structureOutputDescriptor) {
206 IOMemoryDescriptor * mem = arguments
76 externalMethod(uint32_t selector, IOExternalMethodArguments * arguments, IOExternalMethodDispatch * dispatch, OSObject * target, void * reference) argument
227 getListOfSets(IOExternalMethodArguments * arguments) argument
243 getSetProperties(IOExternalMethodArguments * arguments) argument
258 getMemberProperties(IOExternalMethodArguments * arguments) argument
273 updateSet(IOExternalMethodArguments * arguments) argument
289 getVolumesForGroup(IOExternalMethodArguments * arguments) argument
303 getVolumeProperties(IOExternalMethodArguments * arguments) argument
317 getVolumeExtents(IOExternalMethodArguments * arguments) argument
331 updateLogicalVolume(IOExternalMethodArguments * arguments) argument
349 destroyLogicalVolume(IOExternalMethodArguments * arguments) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/tests/qmltests/
H A Dtst_qmltests.cpp30 QVarLengthArray<char*, 8> arguments; local
32 arguments.append(argv[i]);
34 arguments.append(const_cast<char*>("-import"));
35 arguments.append(const_cast<char*>(IMPORT_DIR));
37 argc = arguments.count();
38 argv = arguments.data();
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_5/Regress/
H A Dregress-131510-001.js38 * SUMMARY: Shouldn't crash if define |var arguments| inside a function
44 var summary = "Shouldn't crash if define |var arguments| inside a function";
49 function f() {var arguments;}
56 function g() { function f() {var arguments;}; f();};
63 var s = 'function f() {var arguments;}; f();';
66 s = 'function g() { function f() {var arguments;}; f();}; g();';
/macosx-10.9.5/IOFireWireSBP2-426.4.1/IOFireWireSBP2/
H A DIOFireWireSBP2UserClient.h82 IOReturn open( IOExternalMethodArguments * arguments );
83 IOReturn openWithSessionRef( IOExternalMethodArguments * arguments );
84 IOReturn getSessionRef( IOExternalMethodArguments * arguments );
85 IOReturn close( IOExternalMethodArguments * arguments );
88 IOReturn setMessageCallback( IOExternalMethodArguments * arguments );
94 IOReturn setLoginCallback( IOExternalMethodArguments * arguments );
95 IOReturn setLogoutCallback( IOExternalMethodArguments * arguments );
96 IOReturn setUnsolicitedStatusNotify( IOExternalMethodArguments * arguments );
97 IOReturn setStatusNotify( IOExternalMethodArguments * arguments );
98 IOReturn createLogin( IOExternalMethodArguments * arguments );
[all...]
H A DIOFireWireSBP2UserClient.cpp425 IOReturn IOFireWireSBP2UserClient::open( IOExternalMethodArguments * arguments )
431 status = checkArguments( arguments, 0, 0, 0, 0 );
461 IOReturn IOFireWireSBP2UserClient::openWithSessionRef( IOExternalMethodArguments * arguments )
463 IOReturn status = checkArguments( arguments, 1, 0, 0, 0 );
479 service = (IOService*) exporter->lookupObjectForType( arguments->scalarInput[0], OSTypeID(IOService) );
506 IOReturn IOFireWireSBP2UserClient::getSessionRef( IOExternalMethodArguments * arguments )
508 IOReturn status = checkArguments( arguments, 0, 0, 1, 0 );
520 arguments->scalarOutput[0] = (uint64_t)fSessionRef;
526 IOReturn IOFireWireSBP2UserClient::close( IOExternalMethodArguments * arguments )
532 status = checkArguments( arguments,
[all...]
/macosx-10.9.5/DiskArbitration-266/diskarbitrationd/
H A DDALog.c39 static void __DALog( int level, const char * format, va_list arguments )
43 if ( arguments )
45 message = ___CFStringCreateCStringWithFormatAndArguments( format, arguments );
110 va_list arguments; local
112 va_start( arguments, format );
114 __DALog( LOG_NOTICE, format, arguments );
116 va_end( arguments );
137 va_list arguments; local
139 va_start( arguments, format );
159 __DALog( LOG_DEBUG, format, arguments );
166 va_list arguments; local
211 va_list arguments; local
253 va_list arguments; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/interp/
H A Ddeleg_method.tcl25 # syntax: ?-async? name arguments comm id
39 foreach {name arguments comm rid} $args break
41 if {![llength $arguments]} {
43 } elseif {[string equal args [lindex $arguments end]]} {
44 if {[llength $arguments] == 1} {
47 set delegate "\[linsert \$args 0 [list $name] \$[join [lrange $arguments 0 end-1] " \$"]\]"
50 set delegate "\[list [list $name] \$[join $arguments " \$"]\]"
58 ::method $name $arguments $body
H A Ddeleg_proc.tcl24 # syntax: ?-async? name arguments comm id
41 foreach {name arguments comm rid} $args break
44 if {![llength $arguments]} {
46 } elseif {[string equal args [lindex $arguments end]]} {
47 if {[llength $arguments] == 1} {
50 set delegate "\[linsert \$args 0 [list $base] \$[join [lrange $arguments 0 end-1] " \$"]\]"
53 set delegate "\[list [list $base] \$[join $arguments " \$"]\]"
61 uplevel 1 [list ::proc $name $arguments $body]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/js1_4/Functions/
H A Dfunction-001.js28 * Earlier versions of JavaScript supported access to the arguments property
29 * of the function object. This property held the arguments to the function.
31 * return f.arguments[0]; // deprecated
36 * should simply use just "arguments":
39 * return arguments[0]; // okay
45 * arguments property is not threadsafe, which is of particular concern in
47 * functions because it can tell when the arguments are being accessed only by
48 * name and avoid setting up the arguments object.
55 var TITLE = "Accessing the arguments property of a function object";
64 "return function.arguments",
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DConsole.cpp70 RefPtr<ScriptArguments> arguments = prpArguments; local
75 if (!acceptNoArguments && !arguments->argumentCount())
83 bool gotMessage = arguments->getFirstArgumentAsString(message);
84 InspectorInstrumentation::addMessageToConsole(page, ConsoleAPIMessageSource, type, level, message, state, arguments);
98 for (size_t i = 0; i < arguments->argumentCount(); ++i) {
99 String argAsString = arguments->argumentAt(i).toString(arguments->globalState());
114 void Console::debug(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
116 internalAddMessage(page(), LogMessageType, DebugMessageLevel, state, arguments); local
119 void Console::error(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
121 internalAddMessage(page(), LogMessageType, ErrorMessageLevel, state, arguments); local
124 info(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
129 log(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
131 internalAddMessage(page(), LogMessageType, LogMessageLevel, state, arguments); local
134 warn(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
136 internalAddMessage(page(), LogMessageType, WarningMessageLevel, state, arguments); local
139 dir(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
141 internalAddMessage(page(), DirMessageType, LogMessageLevel, state, arguments); local
144 dirxml(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
146 internalAddMessage(page(), DirXMLMessageType, LogMessageLevel, state, arguments); local
149 table(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
151 internalAddMessage(page(), TableMessageType, LogMessageLevel, state, arguments); local
154 clear(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
156 internalAddMessage(page(), ClearMessageType, LogMessageLevel, state, arguments, true); local
159 trace(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
161 internalAddMessage(page(), TraceMessageType, LogMessageLevel, state, arguments, true, true); local
164 assertCondition(ScriptState* state, PassRefPtr<ScriptArguments> arguments, bool condition) argument
172 count(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
174 InspectorInstrumentation::consoleCount(page(), state, arguments); local
231 timeStamp(PassRefPtr<ScriptArguments> arguments) argument
236 group(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
238 InspectorInstrumentation::addMessageToConsole(page(), ConsoleAPIMessageSource, StartGroupMessageType, LogMessageLevel, String(), state, arguments); local
241 groupCollapsed(ScriptState* state, PassRefPtr<ScriptArguments> arguments) argument
243 InspectorInstrumentation::addMessageToConsole(page(), ConsoleAPIMessageSource, StartGroupCollapsedMessageType, LogMessageLevel, String(), state, arguments); local
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma_3/Function/
H A Dregress-94506.js22 * SUMMARY: When we invoke a function, the arguments object should take
23 * a back seat to any local identifier named "arguments".
30 var summary = 'Testing functions employing identifiers named "arguments"';
38 var arguments = 5555; variable
41 // use a parameter named "arguments"
42 function F1(arguments)
44 return arguments;
48 // use a local variable named "arguments"
51 var arguments = 55;
52 return arguments;
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLTransactionSync.idl37 [Custom] SQLResultSet executeSql(DOMString sqlStatement, ObjectArray arguments);
H A DSQLTransaction.idl36 ObjectArray arguments,
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/diagrams/
H A Dapplication.tcl42 proc ::diagram::application {arguments} {
44 application::ProcessCmdline $arguments
67 # arguments on the command line. The relative path of a file under
86 # arguments on the command line. This value is used during the
100 proc ::diagram::application::ProcessCmdline {arguments} {
109 if {[llength $arguments] < 2} Usage
110 set arguments [lassign $arguments command]
113 show {ProcessShow $arguments}
114 convert {ProcessConvert $arguments}
[all...]
/macosx-10.9.5/xnu-2422.115.4/iokit/Kernel/
H A DRootDomainUserClient.cpp254 IOExternalMethodArguments * arguments,
264 if ((2 == arguments->scalarInputCount)
265 && (1 == arguments->scalarOutputCount))
268 (unsigned long)arguments->scalarInput[0],
269 (unsigned long)arguments->scalarInput[1],
270 (int *)&arguments->scalarOutput[0]);
275 if ((1 == arguments->scalarInputCount)
276 && (1 == arguments->scalarOutputCount))
279 (unsigned long)arguments->scalarInput[0],
280 (unsigned long *)&arguments
252 externalMethod( uint32_t selector, IOExternalMethodArguments * arguments, IOExternalMethodDispatch * dispatch __unused, OSObject * target __unused, void * reference __unused ) argument
[all...]
/macosx-10.9.5/IOFireWireAVC-422.4.0/IOFireWireAVC/
H A DIOFireWireAVCProtocolUserClient.cpp51 IOExternalMethodArguments * arguments,
64 result = sendAVCResponse(arguments->scalarInput[0],arguments->scalarInput[1], (const char*)arguments->structureInput, arguments->structureInputSize);
68 result = freeInputPlug(arguments->scalarInput[0]);
72 result = readInputPlug((UInt32) arguments->scalarInput[0], arguments->scalarOutput);
76 result = updateInputPlug(arguments->scalarInput[0],arguments
50 externalMethod( uint32_t selector, IOExternalMethodArguments * arguments, IOExternalMethodDispatch * dispatch, OSObject * target, void * reference) argument
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/Expressions/
H A D11.2.2-6-n.js42 5. Call the [[Construct]] method on Result(2), providing no arguments
43 (that is, an empty list of arguments).
80 return arguments;
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dfixpaths15 die $0: error in command line arguments.
/macosx-10.9.5/WebCore-7537.78.1/inspector/front-end/
H A DHeapSnapshotWorker.js58 this._postMessage("log", Array.prototype.slice.call(arguments));
64 this._postMessage("error", Array.prototype.slice.call(arguments));
70 this._postMessage("info", Array.prototype.slice.call(arguments));
85 arguments: args
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DViewportStyleResolver.cpp81 ViewportArguments arguments(ViewportArguments::CSSDeviceAdaptation);
83 arguments.userZoom = getViewportArgumentValue(CSSPropertyUserZoom);
84 arguments.zoom = getViewportArgumentValue(CSSPropertyZoom);
85 arguments.minZoom = getViewportArgumentValue(CSSPropertyMinZoom);
86 arguments.maxZoom = getViewportArgumentValue(CSSPropertyMaxZoom);
87 arguments.minWidth = getViewportArgumentValue(CSSPropertyMinWidth);
88 arguments.maxWidth = getViewportArgumentValue(CSSPropertyMaxWidth);
89 arguments.minHeight = getViewportArgumentValue(CSSPropertyMinHeight);
90 arguments.maxHeight = getViewportArgumentValue(CSSPropertyMaxHeight);
91 arguments
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/tests/mozilla/ecma/ExecutionContexts/
H A D10.1.6.js27 If the function object being invoked has an arguments property, let x be
29 property [[OldArguments]] whose initial value is x; otherwise, an arguments
31 not given an [[OldArguments]] property. Next, arguments object described
32 below (the same one stored in the arguments property of the activation
33 object) is used as the new value of the arguments property of the function
34 object. This new value is installed even if the arguments property already
37 program syntax that is now discouraged: to access the arguments object for
38 function f within the body of f by using the expression f.arguments.
39 The recommended way to access the arguments object for function f within
40 the body of f is simply to refer to the variable arguments
55 var arguments = "FAILED!"; variable
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/
H A Dpt_pexpr_op.tcl64 proc ::pt::pe::op::Drop {dropset pe op arguments} {
66 lassign $arguments symbol
77 foreach a $arguments {
95 proc ::pt::pe::op::Rename {nt ntnew pe op arguments} {
96 #puts R($op)/$arguments/
97 if {($op eq "n") && ([lindex $arguments 0] eq $nt)} {
104 proc ::pt::pe::op::Called {pe op arguments} {
105 # arguments = list(set-of-symbols) for operators, and n.
109 #puts -nonewline C|$op|$arguments|=
112 #puts |[lindex $arguments
[all...]
/macosx-10.9.5/PowerManagement-420.90.1/AppleSmartBatteryManager/
H A DAppleSmartBatteryManagerUserClient.cpp181 IOExternalMethodArguments * arguments,
195 return this->secureInflowDisable((int)arguments->scalarInput[0],
196 (int *)&arguments->scalarOutput[0]);
201 return this->secureChargeInhibit((int)arguments->scalarInput[0],
202 (int *)&arguments->scalarOutput[0]);
218 (void *)arguments->structureInput,
219 (void *)arguments->structureOutput,
220 (IOByteCount)arguments->structureInputSize,
221 (IOByteCount *)&arguments->structureOutputSize);
226 return fOwner->requestPoll(arguments
179 externalMethod( uint32_t selector, IOExternalMethodArguments * arguments, IOExternalMethodDispatch * dispatch __unused, OSObject * target __unused, void * reference __unused ) argument
[all...]
/macosx-10.9.5/IONetworkingFamily-100/
H A DIONetworkUserClient.cpp122 uint32_t selector, IOExternalMethodArguments * arguments,
128 if (!arguments)
134 if (arguments->scalarInputCount == 1)
136 (uint32_t) arguments->scalarInput[0]);
140 if ((arguments->scalarInputCount == 1) &&
141 (arguments->structureInputSize > 0))
143 (uint32_t) arguments->scalarInput[0],
144 (void *) arguments->structureInput,
145 arguments->structureInputSize);
149 if ((arguments
121 externalMethod( uint32_t selector, IOExternalMethodArguments * arguments, IOExternalMethodDispatch * dispatch, OSObject * target, void * reference ) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/
H A D33-code.t23 watch { hlagh() } { }, 'call without arguments';
24 is $x, 1, 'code: call without arguments succeeded';
26 watch { hlagh(1, 2, 3) } { }, 'call with arguments';
27 is $x, 2, 'code: call with arguments succeeded';
51 watch { hlagh() } { }, 'call without arguments 2';
52 is $z, 1, 'code: call without arguments 2 succeeded';
53 is $y, 1, 'code: call without arguments 2 didn\'t called the previous code';

Completed in 244 milliseconds

1234567891011>>