Lines Matching refs:pObj
361 v8::Local<v8::Object> pObj = pRuntime->ToObject(params[8]); in print() local
362 if (CFXJS_Engine::GetObjDefnID(pObj) == in print()
364 v8::Local<v8::Object> pObj = pRuntime->ToObject(params[8]); in print() local
366 static_cast<CJS_Object*>(pRuntime->GetObjectPrivate(pObj)); in print()
544 v8::Local<v8::Object> pObj = pRuntime->ToObject(params[0]); in submitForm() local
545 v8::Local<v8::Value> pValue = pRuntime->GetObjectProperty(pObj, L"cURL"); in submitForm()
549 bFDF = pRuntime->ToBoolean(pRuntime->GetObjectProperty(pObj, L"bFDF")); in submitForm()
550 bEmpty = pRuntime->ToBoolean(pRuntime->GetObjectProperty(pObj, L"bEmpty")); in submitForm()
551 aFields = pRuntime->ToArray(pRuntime->GetObjectProperty(pObj, L"aFields")); in submitForm()
625 v8::Local<v8::Object> pObj = pRuntime->ToObject(params[0]); in mailDoc() local
626 bUI = pRuntime->ToBoolean(pRuntime->GetObjectProperty(pObj, L"bUI")); in mailDoc()
627 cTo = pRuntime->ToWideString(pRuntime->GetObjectProperty(pObj, L"cTo")); in mailDoc()
628 cCc = pRuntime->ToWideString(pRuntime->GetObjectProperty(pObj, L"cCc")); in mailDoc()
629 cBcc = pRuntime->ToWideString(pRuntime->GetObjectProperty(pObj, L"cBcc")); in mailDoc()
631 pRuntime->ToWideString(pRuntime->GetObjectProperty(pObj, L"cSubject")); in mailDoc()
632 cMsg = pRuntime->ToWideString(pRuntime->GetObjectProperty(pObj, L"cMsg")); in mailDoc()
670 v8::Local<v8::Object> pObj = pRuntime->NewFxDynamicObj(-1); in get_info() local
671 pRuntime->PutObjectProperty(pObj, L"Author", in get_info()
673 pRuntime->PutObjectProperty(pObj, L"Title", in get_info()
675 pRuntime->PutObjectProperty(pObj, L"Subject", in get_info()
677 pRuntime->PutObjectProperty(pObj, L"Keywords", in get_info()
679 pRuntime->PutObjectProperty(pObj, L"Creator", in get_info()
681 pRuntime->PutObjectProperty(pObj, L"Producer", in get_info()
684 pObj, L"CreationDate", in get_info()
686 pRuntime->PutObjectProperty(pObj, L"ModDate", in get_info()
688 pRuntime->PutObjectProperty(pObj, L"Trapped", in get_info()
698 pObj, wsKey, in get_info()
701 pRuntime->PutObjectProperty(pObj, wsKey, in get_info()
705 pObj, wsKey, pRuntime->NewBoolean(!!pValueObj->GetInteger())); in get_info()
708 return CJS_Return(pObj); in get_info()
1020 v8::Local<v8::Object> pObj = in getAnnot() local
1022 if (pObj.IsEmpty()) in getAnnot()
1026 static_cast<CJS_Annot*>(pRuntime->GetObjectPrivate(pObj)); in getAnnot()
1057 v8::Local<v8::Object> pObj = in getAnnots() local
1059 if (pObj.IsEmpty()) in getAnnots()
1063 static_cast<CJS_Annot*>(pRuntime->GetObjectPrivate(pObj)); in getAnnots()
1115 v8::Local<v8::Object> pObj = pRuntime->ToObject(params[1]); in addIcon() local
1116 CJS_Object* obj = static_cast<CJS_Object*>(pRuntime->GetObjectPrivate(pObj)); in addIcon()
1131 v8::Local<v8::Object> pObj = in get_icons() local
1133 if (pObj.IsEmpty()) in get_icons()
1137 static_cast<CJS_Icon*>(pRuntime->GetObjectPrivate(pObj)); in get_icons()
1162 v8::Local<v8::Object> pObj = in getIcon() local
1164 if (pObj.IsEmpty()) in getIcon()
1167 CJS_Icon* pJS_Icon = static_cast<CJS_Icon*>(pRuntime->GetObjectPrivate(pObj)); in getIcon()