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

/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Runtime.cpp351 void CJS_Runtime::GetObjectConsts(const CFX_WideString& sObjName, CFX_WideStringArray& array) argument
356 if (sObjName == CJS_Border::m_pClassName)
358 else if (sObjName == CJS_Display::m_pClassName)
360 else if (sObjName == CJS_Font::m_pClassName)
362 else if (sObjName == CJS_Highlight::m_pClassName)
364 else if (sObjName == CJS_Position::m_pClassName)
366 else if (sObjName == CJS_ScaleHow::m_pClassName)
368 else if (sObjName == CJS_ScaleWhen::m_pClassName)
370 else if (sObjName == CJS_Style::m_pClassName)
372 else if (sObjName
401 GetObjectProps(const CFX_WideString& sObjName, CFX_WideStringArray& array) argument
430 GetObjectMethods(const CFX_WideString& sObjName, CFX_WideStringArray& array) argument
[all...]
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp40 CJS_ObjDefintion(v8::Isolate* isolate, const wchar_t* sObjName, FXJSOBJTYPE eObjType, LP_CONSTRUCTOR pConstructor, LP_DESTRUCTOR pDestructor, unsigned bApplyNew): argument
41 objName(sObjName), objType(eObjType), m_pConstructor(pConstructor), m_pDestructor(pDestructor),m_bApplyNew(bApplyNew),m_bSetAsGlobalObject(FALSE)
51 if(FXSYS_wcscmp(sObjName, L"Document") == 0)
74 int JS_DefineObj(IJS_Runtime* pJSRuntime, const wchar_t* sObjName, FXJSOBJTYPE eObjType, LP_CONSTRUCTOR pConstructor, LP_DESTRUCTOR pDestructor, unsigned bApplyNew) argument
85 CJS_ObjDefintion* pObjDef = FX_NEW CJS_ObjDefintion(isolate, sObjName, eObjType, pConstructor, pDestructor, bApplyNew);

Completed in 47 milliseconds