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

  /external/pdfium/fpdfsdk/src/javascript/
Consts.cpp 133 int CJS_GlobalConsts::Init(IJS_Runtime* pRuntime)
135 DEFINE_GLOBAL_CONST(pRuntime, IDS_GREATER_THAN , Invalid value: must be greater than or equal to %s.);
136 DEFINE_GLOBAL_CONST(pRuntime, IDS_GT_AND_LT,Invalid value: must be greater than or equal to %s and less than or equal to %s.);
137 DEFINE_GLOBAL_CONST(pRuntime, IDS_LESS_THAN,Invalid value: must be less than or equal to %s.);
138 DEFINE_GLOBAL_CONST(pRuntime, IDS_INVALID_MONTH,** Invalid **);
139 DEFINE_GLOBAL_CONST(pRuntime, IDS_INVALID_DATE,Invalid date/time: please ensure that the date/time exists. Field);
140 DEFINE_GLOBAL_CONST(pRuntime, IDS_INVALID_VALUE,The value entered does not match the format of the field);
141 DEFINE_GLOBAL_CONST(pRuntime, IDS_AM,am);
142 DEFINE_GLOBAL_CONST(pRuntime, IDS_PM,pm);
143 DEFINE_GLOBAL_CONST(pRuntime, IDS_MONTH_INFO,January[1]February[2]March[3]April[4]May[5]June[6]July[7]August[8]September[9]Octo (…)
    [all...]
app.cpp 25 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
26 ASSERT(pRuntime != NULL);
28 return pRuntime->GetIsolate();
148 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
149 ASSERT(pRuntime != NULL);
153 CJS_Array aDocs(pRuntime->GetIsolate());
165 JSFXObject pObj = JS_GetThisObj(*pRuntime);
167 if (JS_GetObjDefnID(pObj) == JS_GetObjDefnID(*pRuntime, L"Document"))
169 pJSDocument = (CJS_Document*)JS_GetPrivate(pRuntime->GetIsolate(),pObj);
174 JSFXObject pObj = JS_NewFxDynamicObj(*pRuntime, pContext, JS_GetObjDefnID(*pRuntime,L"Document"));
    [all...]
Document.cpp 26 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
27 ASSERT(pRuntime != NULL);
29 return pRuntime->GetIsolate();
445 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
446 ASSERT(pRuntime != NULL);
448 JSFXObject pFieldObj = JS_NewFxDynamicObj(*pRuntime, pContext, JS_GetObjDefnID(*pRuntime, L"Field"));
602 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
603 ASSERT(pRuntime != NULL);
605 pRuntime->BeginBlock();
    [all...]
JS_EventHandler.cpp 601 CJS_Runtime* pRuntime = m_pJSContext->GetJSRuntime();
603 JSFXObject pDocObj = JS_NewFxDynamicObj(*pRuntime, m_pJSContext, JS_GetObjDefnID(*pRuntime, L"Document"));
605 JSFXObject pFieldObj = JS_NewFxDynamicObj(*pRuntime, m_pJSContext, JS_GetObjDefnID(*pRuntime, L"Field"));
635 CJS_Runtime* pRuntime = m_pJSContext->GetJSRuntime();
637 JSFXObject pDocObj = JS_NewFxDynamicObj(*pRuntime, m_pJSContext, JS_GetObjDefnID(*pRuntime, L"Document"));
639 JSFXObject pFieldObj = JS_NewFxDynamicObj(*pRuntime, m_pJSContext, JS_GetObjDefnID(*pRuntime, L"Field"));
    [all...]
color.cpp 22 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
23 ASSERT(pRuntime != NULL);
25 return pRuntime->GetIsolate();
JS_Runtime.cpp 63 void CJS_RuntimeFactory::DeleteJSRuntime(IFXJS_Runtime* pRuntime)
65 if(pRuntime)
66 delete (CJS_Runtime*)pRuntime;
global.cpp 257 IJS_Runtime* pRuntime = JS_GetRuntime((JSFXObject)(*m_pJSObject));
258 v8::Handle<v8::Object> pObj = JS_NewFxDynamicObj(pRuntime, NULL, -1);
421 IJS_Runtime* pRuntime = JS_GetRuntime((JSFXObject)(*m_pJSObject));
422 v8::Handle<v8::Object> pNewObj = JS_NewFxDynamicObj(pRuntime, NULL, -1);
util.cpp 28 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
29 ASSERT(pRuntime != NULL);
31 return pRuntime->GetIsolate();
JS_Context.cpp 17 CJS_Context::CJS_Context(CJS_Runtime* pRuntime) :
18 m_pRuntime(pRuntime),
Field.cpp     [all...]
PublicMethods.cpp 27 CJS_Runtime* pRuntime = pContext->GetJSRuntime();
28 ASSERT(pRuntime != NULL);
30 return pRuntime->GetIsolate();
    [all...]
  /external/pdfium/fpdfsdk/include/javascript/
JS_Define.h 104 IFXJS_Runtime* pRuntime = (IFXJS_Runtime*)field->Value();\
105 IFXJS_Context* cc = pRuntime->GetCurrentContext();\
150 IFXJS_Runtime* pRuntime = (IFXJS_Runtime*)field->Value();\
151 IFXJS_Context* cc = pRuntime->GetCurrentContext();\
201 IFXJS_Runtime* pRuntime = (IFXJS_Runtime*)field->Value();\
202 IFXJS_Context* cc = pRuntime->GetCurrentContext();\
247 static int Init(IJS_Runtime* pRuntime, FXJSOBJTYPE eObjType);\
276 int js_class_name::Init(IJS_Runtime* pRuntime, FXJSOBJTYPE eObjType)\
278 int nObjDefnID = JS_DefineObj(pRuntime, js_class_name::m_pClassName, eObjType, JSConstructor, JSDestructor, 0);\
283 if (JS_DefineObjProperty(pRuntime, nObjDefnID, JS_Class_Properties[j].pName, JS_Class_Properties[j].pPropGet, JS_Class_Properties[j] (…)
    [all...]
Consts.h 114 static int Init(IJS_Runtime* pRuntime);
122 static int Init(IJS_Runtime* pRuntime);
JS_Object.h 236 void SetRuntime(CJS_Runtime* pRuntime)
238 m_pRuntime = pRuntime;
IJavaScript.h 98 void DeleteJSRuntime(IFXJS_Runtime* pRuntime);
JS_Context.h 16 CJS_Context(CJS_Runtime* pRuntime);
app.h 150 void RunJsScript(CJS_Runtime * pRuntime,const CFX_WideString & wsScript);
  /external/pdfium/fpdfsdk/src/
fsdk_actionhandler.cpp 193 IFXJS_Runtime* pRuntime = pDocument->GetJsRuntime(); //????
194 ASSERT(pRuntime != NULL);
196 pRuntime->SetReaderDocument(pDocument);
198 IFXJS_Context* pContext = pRuntime->NewContext();
210 pRuntime->ReleaseContext(pContext);
349 IFXJS_Runtime* pRuntime = pDocument->GetJsRuntime();
350 ASSERT(pRuntime != NULL);
352 pRuntime->SetReaderDocument(pDocument);
354 IFXJS_Context* pContext = pRuntime->NewContext();
401 pRuntime->ReleaseContext(pContext);
    [all...]
fsdk_baseform.cpp     [all...]

Completed in 480 milliseconds