Lines Matching refs:m_pArray
414 m_pArray = pArray; in Attach()
422 if (m_pArray.IsEmpty()) in GetElement()
425 FXJS_GetArrayElement(m_pJSRuntime->GetIsolate(), m_pArray, index); in GetElement()
430 if (m_pArray.IsEmpty()) in SetElement()
431 m_pArray = FXJS_NewArray(m_pJSRuntime->GetIsolate()); in SetElement()
433 FXJS_PutArrayElement(m_pJSRuntime->GetIsolate(), m_pArray, index, in SetElement()
438 if (m_pArray.IsEmpty()) in GetLength()
440 return FXJS_GetArrayLength(m_pArray); in GetLength()
444 if (m_pArray.IsEmpty()) in operator v8::Local<v8::Array>()
445 m_pArray = FXJS_NewArray(m_pJSRuntime->GetIsolate()); in operator v8::Local<v8::Array>()
447 return m_pArray; in operator v8::Local<v8::Array>()