Searched defs:m_argCount (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DArgList.h187 , m_argCount(0)
193 , m_argCount(exec->argumentCount())
199 , m_argCount(argCount)
209 , m_argCount(argCount)
216 , m_argCount(args.size())
222 if (idx < m_argCount)
227 bool isEmpty() const { return !m_argCount; }
229 size_t size() const { return m_argCount; }
232 iterator end() { return m_args + m_argCount; }
235 const_iterator end() const { return m_args + m_argCount; }
240 size_t m_argCount; member in class:JSC::ArgList
[all...]
/external/webkit/Source/WebCore/css/
H A DCSSParser.cpp5585 , m_argCount(1)
5601 m_argCount = 5;
5618 m_argCount = 7;
5640 m_argCount = 5;
5644 m_argCount = 11;
5648 m_argCount = 31;
5657 m_argCount = 3;
5662 unsigned argCount() const { return m_argCount; }
5666 bool hasCorrectArgCount(unsigned argCount) { return m_argCount == argCount || (m_allowSingleArgument && argCount == 1); }
5670 unsigned m_argCount; member in class:WebCore::TransformOperationInfo
[all...]

Completed in 360 milliseconds