Home
last modified time | relevance | path

Searched refs:CJS_Object (Results 1 – 25 of 27) sorted by relevance

12

/external/pdfium/fpdfsdk/include/javascript/
DConsts.h12 class CJS_Border : public CJS_Object
15 CJS_Border(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Border()
23 class CJS_Display : public CJS_Object
26 CJS_Display(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Display()
34 class CJS_Font : public CJS_Object
37 CJS_Font(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Font()
45 class CJS_Highlight : public CJS_Object
48 CJS_Highlight(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Highlight()
56 class CJS_Position : public CJS_Object
59 CJS_Position(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Position()
[all …]
DJS_Object.h10 class CJS_Object; variable
17 CJS_EmbedObj(CJS_Object* pJSObject);
25 CJS_Object* GetJSObject(){return m_pJSObject;}; in GetJSObject()
26 operator CJS_Object* (){return m_pJSObject;};
35 CJS_Object* m_pJSObject;
38 class CJS_Object : public CFX_Object
41 CJS_Object(JSFXObject pObject);
42 virtual ~CJS_Object(void);
Dapp.h19 TimerObj(CJS_Object* pJSObject);
30 class CJS_TimerObj : public CJS_Object
33 CJS_TimerObj(JSFXObject pObject) : CJS_Object(pObject) {} in CJS_TimerObj()
107 app(CJS_Object * pJSObject);
180 class CJS_App : public CJS_Object
183 CJS_App(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_App()
Dreport.h13 Report(CJS_Object * pJSObject);
21 class CJS_Report : public CJS_Object
24 CJS_Report(JSFXObject pObject) : CJS_Object(pObject){}; in CJS_Report()
DIcon.h13 Icon(CJS_Object* pJSObject);
29 class CJS_Icon : public CJS_Object
32 CJS_Icon(JSFXObject pObject) : CJS_Object(pObject){}; in CJS_Icon()
Dconsole.h13 console(CJS_Object* pJSObject);
23 class CJS_Console : public CJS_Object
26 CJS_Console(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Console()
Dutil.h13 util(CJS_Object * pJSObject);
29 class CJS_Util : public CJS_Object
32 CJS_Util(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Util()
DJS_Value.h23 CJS_Value(v8::Isolate* isolate, CJS_Object *);
40 operator CJS_Object *() const;
53 void operator = (CJS_Object *);
99 void operator<<(CJS_Object *pObj);
100 void operator>>(CJS_Object *&ppObj) const;
Dglobal.h40 global_alternate(CJS_Object* pJSObject);
71 class CJS_Global : public CJS_Object
74 CJS_Global(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Global()
DJS_Define.h108 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
154 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
209 CJS_Object* pJSObj = (CJS_Object *)JS_GetPrivate(isolate,info.Holder());\
260 CJS_Object* pObj = FX_NEW js_class_name(obj);\
372 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
413 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
461 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
506 CJS_Object* pJSObj = (CJS_Object*)JS_GetPrivate(isolate,info.Holder());\
538 CJS_Object* pObj = FX_NEW js_class_name(obj);\
610 CJS_Object* pJSObj = (CJS_Object *)JS_GetPrivate(isolate, info.Holder());\
Devent.h13 event(CJS_Object * pJSObject);
40 class CJS_Event : public CJS_Object
43 CJS_Event(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Event()
Dcolor.h13 color(CJS_Object* pJSObject);
51 class CJS_Color : public CJS_Object
54 CJS_Color(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Color()
DDocument.h15 PrintParamsObj(CJS_Object* pJSObject);
29 class CJS_PrintParamsObj : public CJS_Object
32 CJS_PrintParamsObj(JSFXObject pObject) : CJS_Object(pObject) {} in CJS_PrintParamsObj()
85 Document(CJS_Object* pJSObject);
197 class CJS_Document : public CJS_Object
200 CJS_Document(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Document()
DPublicMethods.h10 class CJS_PublicMethods : public CJS_Object
13 CJS_PublicMethods(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_PublicMethods()
DField.h98 Field(CJS_Object* pJSObject);
263 class CJS_Field : public CJS_Object
266 CJS_Field(JSFXObject pObject) : CJS_Object(pObject) {}; in CJS_Field()
/external/pdfium/fpdfsdk/src/javascript/
DJS_Object.cpp42 CJS_EmbedObj::CJS_EmbedObj(CJS_Object* pJSObject) : in CJS_EmbedObj()
65 CJS_Object::Alert(pContext, swMsg); in Alert()
91 void FreeObject(const v8::WeakCallbackData<v8::Object, CJS_Object>& data) in FreeObject()
93 CJS_Object* pJSObj = data.GetParameter(); in FreeObject()
103 CJS_Object::CJS_Object(JSFXObject pObject) :m_pEmbedObj(NULL) in CJS_Object() function in CJS_Object
110 CJS_Object::~CJS_Object(void) in ~CJS_Object()
118 void CJS_Object::MakeWeak() in MakeWeak()
123 CPDFSDK_PageView* CJS_Object::JSGetPageView(IFXJS_Context* cc) in JSGetPageView()
128 int CJS_Object::MsgBox(CPDFDoc_Environment* pApp, CPDFSDK_PageView* pPageView, FX_LPCWSTR swMsg, FX… in MsgBox()
133 void CJS_Object::Alert(CJS_Context* pContext, FX_LPCWSTR swMsg) in Alert()
DJS_Value.cpp46 CJS_Value::CJS_Value(v8::Isolate* isolate, CJS_Object * pJsObj):m_isolate(isolate) in CJS_Value()
118 CJS_Value::operator CJS_Object *() const in operator CJS_Object*()
122 return (CJS_Object*)JS_GetPrivate(m_isolate, pObj); in operator CJS_Object*()
190 void CJS_Value::operator =(CJS_Object * pObj) in operator =()
357 void CJS_PropValue::operator <<(CJS_Object *pObj) in operator <<()
363 void CJS_PropValue::operator >>(CJS_Object *&ppObj) const in operator >>()
366 ppObj = CJS_Value::operator CJS_Object *(); in operator >>()
Dreport.cpp29 Report::Report(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject) in END_JS_STATIC_CONST()
Dconsole.cpp37 console::console(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject) in END_JS_STATIC_CONST()
DIcon.cpp28 Icon::Icon(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject), in END_JS_STATIC_CONST()
Dapp.cpp44 TimerObj::TimerObj(CJS_Object* pJSObject) in END_JS_STATIC_CONST()
121 app::app(CJS_Object * pJSObject) : CJS_EmbedObj(pJSObject) , in END_JS_STATIC_CONST()
622 if (CJS_Object* pJSObj = (CJS_Object*)params[0]) in clearTimeOut()
670 if (CJS_Object* pJSObj = (CJS_Object*)params[0]) in clearInterval()
Dcolor.cpp54 color::color(CJS_Object* pJSObject): CJS_EmbedObj(pJSObject) in END_JS_STATIC_CONST()
Devent.cpp51 event::event(CJS_Object * pJsObject) : CJS_EmbedObj(pJsObject) in END_JS_STATIC_CONST()
DDocument.cpp43 PrintParamsObj::PrintParamsObj(CJS_Object* pJSObject) in END_JS_STATIC_CONST()
158 Document::Document(CJS_Object* pJSObject) : CJS_EmbedObj(pJSObject), in Document()
636 if (CJS_Object* pJSObj = (CJS_Object*)params[8]) in print()
1662 CJS_EmbedObj* pEmbedObj = ((CJS_Object*)params[1])->GetEmbedObject(); in addIcon()
Dglobal.cpp44 global_alternate::global_alternate(CJS_Object* pJSObject) in global_alternate()

12