Searched refs:parameterCount (Results 1 - 19 of 19) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DParsedContentType.h54 size_t parameterCount() const;
H A DParsedContentType.cpp240 size_t ParsedContentType::parameterCount() const function in class:WebCore::ParsedContentType
/macosx-10.9.5/JavaScriptCore-7537.78.1/parser/
H A DNodes.cpp158 unsigned parameterCount = 0; local
160 ++parameterCount;
162 size_t objectSize = sizeof(FunctionParameters) - sizeof(void*) + sizeof(StringImpl*) * parameterCount;
164 return adoptRef(new (slot) FunctionParameters(firstParameter, parameterCount));
H A DNodes.h1486 size_t parameterCount() const { return m_parameters->size(); }
/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DArguments.h246 size_t count = std::min<unsigned>(m_numArguments, symbolTable->parameterCount());
253 if (m_isStrictMode || !callee->jsExecutable()->parameterCount())
274 if (m_isStrictMode || !callee->jsExecutable()->parameterCount())
H A DJSFunction.cpp207 return jsNumber(thisObj->jsExecutable()->parameterCount());
305 descriptor.setDescriptor(jsNumber(thisObject->jsExecutable()->parameterCount()), ReadOnly | DontEnum | DontDelete);
427 valueCheck = !descriptor.value() || sameValue(exec, descriptor.value(), jsNumber(thisObject->jsExecutable()->parameterCount()));
H A DSymbolTable.h374 int parameterCount() { return m_parameterCountIncludingThis - 1; } function in class:JSC::SharedSymbolTable
378 // 0 if we don't capture any arguments; parameterCount() in length if we do.
H A DExecutable.h733 size_t parameterCount() const { return m_unlinkedExecutable->parameterCount(); } // Excluding 'this'! function in class:JSC::FunctionExecutable
/macosx-10.9.5/JavaScriptCore-7537.78.1/API/
H A DJSObjectRef.h484 @param parameterCount An integer count of the number of parameter names in parameterNames.
485 @param parameterNames A JSString array containing the names of the function's parameters. Pass NULL if parameterCount is 0.
493 JS_EXPORT JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRef body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception);
H A DJSObjectRef.cpp129 JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef name, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRef body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exception) argument
141 for (unsigned i = 0; i < parameterCount; i++)
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DUnlinkedCodeBlock.cpp103 size_t UnlinkedFunctionExecutable::parameterCount() const function in class:JSC::UnlinkedFunctionExecutable
H A DUnlinkedCodeBlock.h99 size_t parameterCount() const;
H A DCodeBlock.h1414 if (argument >= static_cast<size_t>(symbolTable()->parameterCount()))
/macosx-10.9.5/WebCore-7537.78.1/bridge/qt/
H A Dqt_instance.cpp263 && m.parameterCount() == 0
H A Dqt_runtime.cpp1571 int argc = qMax(method.parameterCount(), receiverLength);
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecompiler/
H A DBytecodeGenerator.cpp294 size_t parameterCount = m_symbolTable->parameterCount(); local
295 OwnArrayPtr<SlowArgument> slowArguments = adoptArrayPtr(new SlowArgument[parameterCount]);
296 for (size_t i = 0; i < parameterCount; ++i) {
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT32_64.cpp4765 Imm32(m_jit.symbolTableFor(node->codeOrigin)->parameterCount())));
4842 Imm32(m_jit.symbolTableFor(node->codeOrigin)->parameterCount())));
H A DDFGSpeculativeJIT64.cpp4608 Imm32(m_jit.symbolTableFor(node->codeOrigin)->parameterCount())));
4673 Imm32(m_jit.symbolTableFor(node->codeOrigin)->parameterCount())));
H A DDFGByteCodeParser.cpp1268 if (static_cast<int>(executable->parameterCount()) + 1 > argumentCountIncludingThis)

Completed in 413 milliseconds