HomeSort by relevance Sort by last modified time
    Searched refs:m_pJSRuntime (Results 1 - 4 of 4) sorted by null

  /external/pdfium/fpdfsdk/javascript/
JS_Value.cpp 193 : m_bIsSetting(0), m_Value(pRuntime), m_pJSRuntime(pRuntime) {}
196 : m_bIsSetting(0), m_Value(value), m_pJSRuntime(pRuntime) {}
202 m_Value = CJS_Value(m_pJSRuntime, iValue);
207 iValue = m_Value.ToInt(m_pJSRuntime);
212 m_Value = CJS_Value(m_pJSRuntime, bValue);
217 bValue = m_Value.ToBool(m_pJSRuntime);
222 m_Value = CJS_Value(m_pJSRuntime, dValue);
227 dValue = m_Value.ToDouble(m_pJSRuntime);
232 m_Value = CJS_Value(m_pJSRuntime, pObj);
237 ppObj = m_Value.ToCJSObject(m_pJSRuntime);
    [all...]
JS_Value.h 92 CJS_Runtime* GetJSRuntime() const { return m_pJSRuntime; }
121 CJS_Runtime* const m_pJSRuntime;
  /external/pdfium/fpdfsdk/
cpdfsdk_formfillenvironment.h 208 std::unique_ptr<IJS_Runtime> m_pJSRuntime;
cpdfsdk_formfillenvironment.cpp 211 if (!m_pJSRuntime)
212 m_pJSRuntime.reset(IJS_Runtime::Create(this));
213 return m_pJSRuntime.get();

Completed in 574 milliseconds