Searched defs:argCount (Results 1 - 17 of 17) sorted by relevance

/external/webkit/WebCore/xml/
H A DXPathFunctions.h45 unsigned int argCount() const { return subExprCount(); } function in class:WebCore::XPath::Function
/external/webkit/JavaScriptCore/interpreter/
H A DCachedCall.h37 CachedCall(CallFrame* callFrame, JSFunction* function, int argCount, JSValue* exception) argument
44 m_closure = m_interpreter->prepareForRepeatCall(function->jsExecutable(), callFrame, function, argCount, function->scope().node(), exception);
H A DInterpreter.cpp700 CallFrameClosure Interpreter::prepareForRepeatCall(FunctionExecutable* FunctionExecutable, CallFrame* callFrame, JSFunction* function, int argCount, ScopeChainNode* scopeChain, JSValue* exception) argument
712 int argc = 1 + argCount; // implicit "this" parameter
1185 /* new_array dst(r) firstArg(r) argCount(n)
1189 The array will contain argCount elements with values
1194 int argCount = vPC[3].u.operand;
1195 ArgList args(callFrame->registers() + firstArg, argCount);
3000 /* call_eval dst(r) func(r) argCount(n) registerOffset(n)
3013 int argCount = vPC[3].u.operand;
3019 Register* argv = newCallFrame - RegisterFile::CallFrameHeaderSize - argCount;
3024 JSValue result = callEval(callFrame, registerFile, argv, argCount, registerOffse
[all...]
/external/webkit/WebCore/bridge/jni/v8/
H A DJavaNPObjectV8.cpp107 bool JavaNPObjectInvoke(NPObject* obj, NPIdentifier identifier, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
117 bool r = instance->invokeMethod(name, args, argCount, result);
/external/webkit/JavaScriptCore/runtime/
H A DArgList.h190 ArgList(JSValue* args, unsigned argCount) argument
192 , m_argCount(argCount)
195 for (size_t i = 0; i < argCount; i++)
200 ArgList(Register* args, int argCount) argument
202 , m_argCount(argCount)
204 ASSERT(argCount >= 0);
H A DStringPrototype.cpp340 int argCount = reg->numSubpatterns() + 1 + 2; local
342 CachedCall cachedCall(exec, func, argCount, exec->exceptionSlot());
/external/webkit/JavaScriptGlue/
H A DJSValueWrapper.cpp157 CFIndex argCount = args ? CFArrayGetCount(args) : 0; local
158 for (CFIndex i = 0; i < argCount; i++)
H A DUserObjectImp.cpp64 CFIndex argCount = args.size(); local
69 for (CFIndex i = 0; i < argCount; i++) {
/external/webkit/JavaScriptCore/jit/
H A DJITCall.cpp52 // regT0 holds callee, regT1 holds argCount
64 int argCount = instruction[3].u.operand; local
69 emitPutJITStubArgConstant(argCount, 2);
74 int argCount = instruction[3].u.operand; local
81 emitPutJITStubArgConstant(argCount, 2);
90 emitPutJITStubArg(regT2, 2); // argCount
101 emitLoadPayload(argCountRegister, regT2); // argCount
109 // Speculatively roll the callframe, assuming argCount will match the arity.
115 move(regT2, regT1); // argCount
236 int argCount local
302 int argCount = instruction[3].u.operand; local
376 int argCount = instruction[3].u.operand; local
[all...]
H A DJITStubs.cpp1655 int argCount = stackFrame.args[2].int32(); local
1657 ASSERT(argCount != newCodeBlock->m_numParameters);
1661 if (argCount > newCodeBlock->m_numParameters) {
1665 Register* argv = r - RegisterFile::CallFrameHeaderSize - numParameters - argCount;
1667 argv[i + argCount] = argv[i];
1672 size_t omittedArgCount = newCodeBlock->m_numParameters - argCount;
1738 int argCount = stackFrame.args[2].int32(); local
1742 callFrame->init(0, static_cast<Instruction*>((STUB_RETURN_ADDRESS).value()), previousCallFrame->scopeChain(), previousCallFrame, 0, argCount, 0);
1745 Register* argv = stackFrame.callFrame->registers() - RegisterFile::CallFrameHeaderSize - argCount;
1746 ArgList argList(argv + 1, argCount
1902 int argCount = stackFrame.args[2].int32(); local
2156 uint32_t argCount = 0; local
2747 int argCount = stackFrame.args[2].int32(); local
[all...]
/external/webkit/WebCore/bridge/
H A DNP_jsobject.cpp54 static void getListFromVariantArgs(ExecState* exec, const NPVariant* args, unsigned argCount, RootObject* rootObject, MarkedArgumentBuffer& aList) argument
56 for (unsigned i = 0; i < argCount; ++i)
102 bool _NPN_InvokeDefault(NPP, NPObject* o, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
125 getListFromVariantArgs(exec, args, argCount, rootObject, argList);
138 return o->_class->invokeDefault(o, args, argCount, result);
143 bool _NPN_Invoke(NPP npp, NPObject* o, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
154 if (argCount != 1)
175 getListFromVariantArgs(exec, args, argCount, rootObject, argList);
188 return o->_class->invoke(o, methodName, args, argCount, result);
426 bool _NPN_Construct(NPP, NPObject* o, const NPVariant* args, uint32_t argCount, NPVarian argument
[all...]
H A Dtestbindings.cpp246 void myInvoke (MyObject *obj, NPIdentifier name, NPVariant *args, unsigned argCount, NPVariant *result) argument
249 if (argCount == 1 && NPN_VariantIsString(&args[0]))
254 if (argCount == 1 && NPN_VariantIsDouble (&args[0]))
259 if (argCount == 1 && (NPN_VariantIsDouble (&args[0]) || NPN_VariantIsInt32 (&args[0])))
264 if (argCount == 1 && NPN_VariantIsString (&args[0]))
269 if (argCount == 1 && NPN_VariantIsBool (&args[0]))
/external/webkit/WebKit/chromium/src/
H A DWebBindings.cpp65 bool WebBindings::construct(NPP npp, NPObject *npobj, const NPVariant *args, uint32_t argCount, NPVariant* result) argument
67 return _NPN_Construct(npp, npobj, args, argCount, result);
/external/webkit/JavaScriptCore/bytecode/
H A DCodeBlock.cpp971 int argCount = (++it)->u.operand; local
973 printf("[%4d] call\t\t %s, %s, %d, %d\n", location, registerName(exec, dst).c_str(), registerName(exec, func).c_str(), argCount, registerOffset);
979 int argCount = (++it)->u.operand; local
981 printf("[%4d] call_eval\t %s, %s, %d, %d\n", location, registerName(exec, dst).c_str(), registerName(exec, func).c_str(), argCount, registerOffset);
987 int argCount = (++it)->u.operand; local
989 printf("[%4d] call_varargs\t %s, %s, %s, %d\n", location, registerName(exec, dst).c_str(), registerName(exec, func).c_str(), registerName(exec, argCount).c_str(), registerOffset);
1013 int argCount = (++it)->u.operand; local
1017 printf("[%4d] construct\t %s, %s, %d, %d, %s, %s\n", location, registerName(exec, dst).c_str(), registerName(exec, func).c_str(), argCount, registerOffset, registerName(exec, proto).c_str(), registerName(exec, thisRegister).c_str());
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/
H A DPluginObject.cpp100 static bool pluginInvoke(NPObject*, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result);
101 static bool pluginInvokeDefault(NPObject*, const NPVariant* args, uint32_t argCount, NPVariant* result);
359 static bool testIdentifierToString(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
361 if (argCount != 1)
373 static bool testIdentifierToInt(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
375 if (argCount != 1)
385 static bool testCallback(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
387 if (argCount == 0 || !NPVARIANT_IS_STRING(args[0]))
407 static bool getURL(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
409 if (argCount
429 removeDefaultMethod(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
436 getURLNotify(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
458 testInvokeDefault(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
478 destroyStream(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
485 destroyNullStream(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
492 testEnumerate(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
524 testGetIntIdentifier(PluginObject*, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
534 testGetProperty(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
568 testHasProperty(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
583 testHasMethod(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
598 testEvaluate(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
612 testGetPropertyReturnValue(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
639 testPostURLFile(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
672 testConstruct(PluginObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
750 pluginInvoke(NPObject* header, NPIdentifier name, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
815 pluginInvokeDefault(NPObject* obj, const NPVariant* args, uint32_t argCount, NPVariant* result) argument
[all...]
/external/webkit/WebKitTools/android/webkitmerge/
H A Dwebkitmerge.cpp1606 bool ReadArgs(char* const args[], int argCount) argument
1613 for (; index < argCount; index++) {
1712 int main (int argCount, char* const args[]) argument
1714 if (ReadArgs(args, argCount) == false)
/external/webkit/WebCore/css/
H A DCSSParser.cpp4535 unsigned argCount() const { return m_argCount; } function in class:WebCore::TransformOperationInfo
4539 bool hasCorrectArgCount(unsigned argCount) { return m_argCount == argCount || (m_allowSingleArgument && argCount == 1); } argument

Completed in 227 milliseconds