Searched refs:argument (Results 51 - 75 of 980) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSGeolocationCustom.cpp104 RefPtr<PositionCallback> positionCallback = createFunctionOnlyCallback<JSPositionCallback>(exec, globalObject(), exec->argument(0));
109 RefPtr<PositionErrorCallback> positionErrorCallback = createFunctionOnlyCallback<JSPositionErrorCallback>(exec, globalObject(), exec->argument(1), CallbackAllowUndefined | CallbackAllowNull);
113 RefPtr<PositionOptions> positionOptions = createPositionOptions(exec, exec->argument(2));
126 RefPtr<PositionCallback> positionCallback = createFunctionOnlyCallback<JSPositionCallback>(exec, globalObject(), exec->argument(0));
131 RefPtr<PositionErrorCallback> positionErrorCallback = createFunctionOnlyCallback<JSPositionErrorCallback>(exec, globalObject(), exec->argument(1), CallbackAllowUndefined | CallbackAllowNull);
135 RefPtr<PositionOptions> positionOptions = createPositionOptions(exec, exec->argument(2));
H A DJSHTMLSelectElementCustom.cpp40 if (HTMLOptionElement* option = toHTMLOptionElement(exec->argument(0)))
43 select.remove(exec->argument(0).toInt32(exec));
H A DJSMessagePortCustom.h54 fillMessagePortArray(exec, exec->argument(1), portArray, arrayBufferArray);
55 RefPtr<SerializedScriptValue> message = SerializedScriptValue::create(exec, exec->argument(0), &portArray, &arrayBufferArray);
H A DJSDataViewCustom.cpp50 if (exec->argument(0).isNull() || !exec->argument(0).isObject())
68 unsigned byteOffset = exec->argument(0).toUInt32(exec);
74 littleEndian = exec->argument(1).toBoolean(exec);
H A DJSIDBObjectStoreCustom.cpp54 String name = exec->argument(0).toString(exec)->value(exec);
58 IDBKeyPath keyPath = idbKeyPathFromValue(exec, exec->argument(1));
62 JSValue optionsValue = exec->argument(2);
H A DJSSQLTransactionSyncCustom.cpp52 String sqlStatement = exec->argument(0).toString(exec)->value(exec);
58 if (!exec->argument(1).isUndefinedOrNull()) {
59 JSObject* object = exec->argument(1).getObject();
82 // Convert the argument to a string and append it
H A DJSArrayBufferViewHelper.h105 RefPtr<ArrayBufferView> array = toArrayBufferView(exec->argument(0));
115 offset = exec->argument(1).toInt32(exec);
117 uint32_t length = asObject(exec->argument(0))->get(exec, exec->vm().propertyNames->length).toUInt32(exec);
135 if (exec->argument(0).isObject()) {
137 JSC::JSObject* array = JSC::asObject(exec->argument(0));
140 offset = exec->argument(1).toInt32(exec);
156 return JSC::throwTypeError(exec, "Invalid argument");
164 RefPtr<ArrayBufferView> source = toArrayBufferView(exec->argument(0));
172 uint32_t length = asObject(exec->argument(0))->get(exec, exec->vm().propertyNames->length).toUInt32(exec);
192 RefPtr<ArrayBuffer> buffer = toArrayBuffer(exec->argument(
[all...]
H A DJSWebGLRenderingContextCustom.cpp164 unsigned target = exec->argument(0).toInt32(exec);
167 unsigned pname = exec->argument(1).toInt32(exec);
254 if (exec->argumentCount() > 0 && !exec->argument(0).isUndefinedOrNull() && !exec->argument(0).inherits(&JSWebGLProgram::s_info))
256 WebGLProgram* program = toWebGLProgram(exec->argument(0));
279 const String name = exec->argument(0).toString(exec)->value(exec);
298 unsigned target = exec->argument(0).toInt32(exec);
301 unsigned attachment = exec->argument(1).toInt32(exec);
304 unsigned pname = exec->argument(2).toInt32(exec);
322 unsigned pname = exec->argument(
[all...]
H A DJSNodeCustom.cpp146 bool ok = imp->insertBefore(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, AttachLazily);
149 return exec->argument(0);
157 bool ok = imp->replaceChild(toNode(exec->argument(0)), toNode(exec->argument(1)), ec, AttachLazily);
160 return exec->argument(1);
168 bool ok = imp->removeChild(toNode(exec->argument(0)), ec);
171 return exec->argument(0);
179 bool ok = imp->appendChild(toNode(exec->argument(0)), ec, AttachLazily);
182 return exec->argument(
[all...]
H A DJSHTMLAllCollectionCustom.cpp72 String string = exec->argument(0).toString(exec)->value(exec);
82 String string = exec->argument(0).toString(exec)->value(exec);
83 unsigned index = toUInt32FromStringImpl(exec->argument(1).toWTFString(exec).impl());
111 uint32_t index = toUInt32FromStringImpl(exec->argument(0).toString(exec)->value(exec).impl());
114 return getNamedItems(exec, this, Identifier(exec, exec->argument(0).toString(exec)->value(exec)));
119 JSValue value = getNamedItems(exec, this, Identifier(exec, exec->argument(0).toString(exec)->value(exec)));
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_threading.py30 def run_(self, argument):
32 self.storage.append(argument)
45 def run_(self, argument):
48 argument.append(i)
67 def run_(self, argument):
69 argument.append(i)
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_threading.py37 def run_(self, argument):
39 self.storage.append(argument)
52 def run_(self, argument):
55 argument.append(i)
74 def run_(self, argument):
76 argument.append(i)
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DObjCCallbackFunction.mm58 virtual void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef*) override
60 bool value = JSValueToBoolean([context JSGlobalContextRef], argument);
67 virtual void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override
69 T value = (T)JSC::toInt32(JSValueToNumber([context JSGlobalContextRef], argument, exception));
76 virtual void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef* exception) override
78 T value = (T)JSValueToNumber([context JSGlobalContextRef], argument, exception);
84 virtual void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef*) override
86 JSValue *value = [JSValue valueWithJSValueRef:argument inContext:context];
92 virtual void set(NSInvocation *invocation, NSInteger argumentNumber, JSContext *context, JSValueRef argument, JSValueRef*) override
94 id value = valueToObject(context, argument);
[all...]
/macosx-10.9.5/ruby-104/ruby/lib/
H A Dgetoptlong.rb67 # puts "Missing dir argument (try --help)"
119 # GetoptLong::NO_ARGUMENT :: Option does not take an argument.
121 # GetoptLong::REQUIRED_ARGUMENT :: Option always takes an argument.
123 # GetoptLong::OPTIONAL_ARGUMENT :: Option may or may not take an argument.
146 # Hash table of argument flags.
147 # Keys of the table are option names, and their values are argument
216 # without argument) is treated as an option; non-option words are skipped.
218 # For example, if -a does not require an argument and -b optionally takes
219 # an argument, parsing '-a one -b two three' would result in ('-a','') and
233 # For example, if -a requires an argument bu
[all...]
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/Modules/objc/test/
H A Dstructs.m20 -(NSObject*)arrayOf4Structs:(struct FooStruct[4])argument;
50 -(NSObject*)arrayOf4Structs:(struct FooStruct[4])argument;
52 return [NSData dataWithBytes:(void*)argument length:sizeof(argument)];
/macosx-10.9.5/libclosure-63/objectTests/
H A Ddispatch_call_Block_with_release.c13 void callsomething(const char *format __unused, int argument __unused) {
/macosx-10.9.5/WebCore-7537.78.1/Modules/notifications/
H A DNotification.cpp113 String argument; local
114 if (options.get("body", argument))
115 notification->setBody(argument);
116 if (options.get("tag", argument))
117 notification->setTag(argument);
118 if (options.get("lang", argument))
119 notification->setLang(argument);
120 if (options.get("dir", argument))
121 notification->setDir(argument);
122 if (options.get("icon", argument)) {
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DObjectConstructor.cpp139 if (!exec->argument(0).isObject())
141 JSObject* object = asObject(exec->argument(0));
149 if (!exec->argument(0).isObject())
151 String propertyName = exec->argument(1).toString(exec)->value(exec);
154 JSObject* object = asObject(exec->argument(0));
181 if (!exec->argument(0).isObject())
184 asObject(exec->argument(0))->methodTable()->getOwnPropertyNames(asObject(exec->argument(0)), exec, properties, IncludeDontEnumProperties);
195 if (!exec->argument(0).isObject())
198 asObject(exec->argument(
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/itcl/tests/
H A Dbody.test57 test body-1.5a {members without an argument list can have any args} {
62 test body-1.5b {members without an argument list can have any args} {
67 test body-1.5c {members without an argument list can have any args} {
72 test body-1.6a {an empty argument list must stay empty} {
74 } {1 {argument list changed for function "::test_body::zero": should be ""}}
76 test body-1.6b {an empty argument list must stay empty} {
80 test body-1.7a {preserve argument list: fixed arguments} {
82 } {1 {argument list changed for function "::test_body::one": should be "x"}}
84 test body-1.7b {preserve argument list: fixed arguments} {
88 test body-1.7c {preserve argument lis
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/jit/
H A DJITStubCall.h114 void addArgument(JIT::TrustedImm32 argument) argument
116 m_jit->poke(argument, m_stackIndex);
120 void addArgument(JIT::Imm32 argument) argument
122 m_jit->poke(argument, m_stackIndex);
126 void addArgument(JIT::TrustedImmPtr argument) argument
128 m_jit->poke(argument, m_stackIndex);
132 void addArgument(JIT::ImmPtr argument) argument
134 m_jit->poke(argument, m_stackIndex);
138 void addArgument(JIT::RegisterID argument) argument
141 m_jit->poke(argument, m_stackInde
156 addArgument(JIT::TrustedImm64 argument) argument
162 addArgument(JIT::Imm64 argument) argument
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum/
H A DBignum.pm172 This method returns the sum of this object and the first argument. If
173 only one argument is passed, a new Crypt::OpenSSL::Bignum object is
174 created for the return value; otherwise, the value of second argument
180 argument. If only one argument is passed, a new
182 otherwise, the value of second argument is set to the result and
187 This method returns the product of this object and the first argument,
188 using the second argument, a Crypt::OpenSSL::Bignum::CTX object, as a
191 otherwise, the value of third argument is set to the result and
197 obtained by dividing this object by the first argument, usin
[all...]
/macosx-10.9.5/CPANInternal-140/Crypt-OpenSSL-Bignum-0.04/
H A DBignum.pm172 This method returns the sum of this object and the first argument. If
173 only one argument is passed, a new Crypt::OpenSSL::Bignum object is
174 created for the return value; otherwise, the value of second argument
180 argument. If only one argument is passed, a new
182 otherwise, the value of second argument is set to the result and
187 This method returns the product of this object and the first argument,
188 using the second argument, a Crypt::OpenSSL::Bignum::CTX object, as a
191 otherwise, the value of third argument is set to the result and
197 obtained by dividing this object by the first argument, usin
[all...]
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Drmt.h85 #define rmtioctl(fd, request, argument) \
86 (_isrmt (fd) ? rmt_ioctl__ (fd - __REM_BIAS, request, argument) \
87 : ioctl (fd, request, argument))
95 #define rmtfcntl(cd, command, argument) \
96 (_isrmt (fd) ? (errno = EOPNOTSUPP), -1 : fcntl (fd, command, argument))
/macosx-10.9.5/remote_cmds-41.90.1/rpc_yppasswdd.tproj/
H A Drpc.yppasswdd.c155 } argument; local
173 bzero((char *) &argument, sizeof(argument));
174 if (!svc_getargs(transp, xdr_argument, (caddr_t) & argument)) {
178 result = (*local) (&argument, rqstp, transp);
/macosx-10.9.5/NFS-81/rpc.lockd/
H A Dnlm_prot_svc.c77 } argument; local
100 (void) memset((char *)&argument, 0, sizeof (argument));
101 if (!svc_getargs(transp, xdr_argument, (caddr_t) &argument)) {
106 result = (*local)((char *)&argument, rqstp);
110 if (!svc_freeargs(transp, xdr_argument, (caddr_t) &argument)) {
139 } argument; local
246 (void) memset((char *)&argument, 0, sizeof (argument));
247 if (!svc_getargs(transp, xdr_argument, (caddr_t) &argument)) {
299 } argument; local
483 } argument; local
[all...]

Completed in 404 milliseconds

1234567891011>>