HomeSort by relevance Sort by last modified time
    Searched refs:CJS_EmbedObj (Results 1 - 25 of 28) sorted by null

1 2

  /external/pdfium/fxjs/
cjs_embedobj.cpp 7 #include "fxjs/cjs_embedobj.h"
11 CJS_EmbedObj::CJS_EmbedObj(CJS_Object* pJSObject) : m_pJSObject(pJSObject) {}
13 CJS_EmbedObj::~CJS_EmbedObj() {}
cjs_embedobj.h 14 class CJS_EmbedObj {
16 explicit CJS_EmbedObj(CJS_Object* pJSObject);
17 virtual ~CJS_EmbedObj();
cjs_printparamsobj.cpp 25 : CJS_EmbedObj(pJSObject) {
cjs_printparamsobj.h 12 class PrintParamsObj : public CJS_EmbedObj {
cjs_timerobj.cpp 26 : CJS_EmbedObj(pJSObject), m_nTimerID(0) {}
cjs_timerobj.h 14 class TimerObj : public CJS_EmbedObj {
cjs_object.h 13 #include "fxjs/cjs_embedobj.h"
60 void SetEmbedObject(CJS_EmbedObj* pObj) { m_pEmbedObj.reset(pObj); }
61 CJS_EmbedObj* GetEmbedObject() const { return m_pEmbedObj.get(); }
66 std::unique_ptr<CJS_EmbedObj> m_pEmbedObj;
cjs_icon.cpp 28 : CJS_EmbedObj(pJSObject), m_swIconName(L"") {}
cjs_icon.h 12 class Icon : public CJS_EmbedObj {
cjs_report.cpp 28 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {}
cjs_report.h 14 class Report : public CJS_EmbedObj {
cjs_annot.h 13 class Annot : public CJS_EmbedObj {
cjs_console.cpp 31 console::console(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {}
cjs_console.h 14 class console : public CJS_EmbedObj {
cjs_util.h 20 class util : public CJS_EmbedObj {
cjs_annot.cpp 42 Annot::Annot(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {}
cjs_color.h 15 class color : public CJS_EmbedObj {
cjs_event.h 12 class event : public CJS_EmbedObj {
cjs_app.h 19 class app : public CJS_EmbedObj {
111 // CJS_EmbedObj
cjs_color.cpp 124 color::color(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {
cjs_event.cpp 47 event::event(CJS_Object* pJsObject) : CJS_EmbedObj(pJsObject) {}
cjs_util.cpp 77 util::util(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) {}
cjs_global.cpp 139 class JSGlobalAlternate : public CJS_EmbedObj {
255 : CJS_EmbedObj(pJSObject), m_pFormFillEnv(nullptr) {}
cjs_document.h 21 class Document : public CJS_EmbedObj {
cjs_app.cpp 88 : CJS_EmbedObj(pJSObject), m_bCalculate(true), m_bRuntimeHighLight(false) {}

Completed in 108 milliseconds

1 2