Lines Matching full:local

17 typedef v8::Local<v8::Object>	JSObject;
18 typedef v8::Local<v8::Object> JSFXObject;
52 typedef void (*LP_CONSTRUCTOR)(IFXJS_Context* cc, v8::Local<v8::Object> obj, v8::Local<v8::Object> …
53 typedef void (*LP_DESTRUCTOR)(v8::Local<v8::Object> obj);
60 …t(IJS_Runtime* pJSRuntime, int nObjDefnID, const wchar_t* sConstName, v8::Local<v8::Value> pDefaul…
62 int JS_DefineGlobalConst(IJS_Runtime* pJSRuntime, const wchar_t* sConstName, v8::Local<v8::V…
70 v8::Local<v8::Object> JS_NewFxDynamicObj(IJS_Runtime* pJSRuntime, IFXJS_Context* pJSContext, int …
71 v8::Local<v8::Object> JS_GetStaticObj(IJS_Runtime* pJSRuntime, int nObjDefnID);
73 v8::Local<v8::Object> JS_GetThisObj(IJS_Runtime * pJSRuntime);
74 int JS_GetObjDefnID(v8::Local<v8::Object> pObj);
75 IJS_Runtime* JS_GetRuntime(v8::Local<v8::Object> pObj);
80 const wchar_t* JS_GetTypeof(v8::Local<v8::Value> pObj);
81 void JS_SetPrivate(IJS_Runtime* pJSRuntime, v8::Local<v8::Object> pObj, void* p);
82 void* JS_GetPrivate(IJS_Runtime* pJSRuntime, v8::Local<v8::Object> pObj);
83 void JS_SetPrivate(v8::Local<v8::Object> pObj, void* p);
84 void* JS_GetPrivate(v8::Local<v8::Object> pObj);
86 void JS_FreePrivate(v8::Local<v8::Object> pObj);
87 v8::Local<v8::Value> JS_GetObjectValue(v8::Local<v8::Object> pObj);
88 v8::Local<v8::Value> JS_GetObjectElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Object> pObj,cons…
89 v8::Local<v8::Array> JS_GetObjectElementNames(IJS_Runtime* pJSRuntime, v8::Local<v8::Object> pObj…
90 void JS_PutObjectString(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* Pr…
91 void JS_PutObjectNumber(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* Pr…
92 void JS_PutObjectNumber(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* Pr…
93 void JS_PutObjectNumber(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* Pr…
94 void JS_PutObjectBoolean(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* P…
95 …_PutObjectObject(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* PropertyName, …
96 void JS_PutObjectNull(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj, const wchar_t* Prop…
97 … JS_PutArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsigned index,v8::Loc…
98 v8::Local<v8::Value> JS_GetArrayElement(IJS_Runtime* pJSRuntime, v8::Local<v8::Array> pArray,unsi…
99 unsigned JS_GetArrayLength(v8::Local<v8::Array> pArray);
100 v8::Local<v8::Value> JS_GetListValue(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pList, int ind…
103 v8::Local<v8::Array> JS_NewArray(IJS_Runtime* pJSRuntime);
104 v8::Local<v8::Value> JS_NewNumber(IJS_Runtime* pJSRuntime,int number);
105 v8::Local<v8::Value> JS_NewNumber(IJS_Runtime* pJSRuntime,double number);
106 v8::Local<v8::Value> JS_NewNumber(IJS_Runtime* pJSRuntime,float number);
107 v8::Local<v8::Value> JS_NewBoolean(IJS_Runtime* pJSRuntime,bool b);
108 v8::Local<v8::Value> JS_NewObject(IJS_Runtime* pJSRuntime,v8::Local<v8::Object> pObj);
109 v8::Local<v8::Value> JS_NewObject2(IJS_Runtime* pJSRuntime,v8::Local<v8::Array> pObj);
110 v8::Local<v8::Value> JS_NewString(IJS_Runtime* pJSRuntime,const wchar_t* string);
111 v8::Local<v8::Value> JS_NewString(IJS_Runtime* pJSRuntime,const wchar_t* string, unsigned nLen);
112 v8::Local<v8::Value> JS_NewNull();
113 v8::Local<v8::Value> JS_NewDate(IJS_Runtime* pJSRuntime,double d);
114 v8::Local<v8::Value> JS_NewValue(IJS_Runtime* pJSRuntime);
117 int JS_ToInt32(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
118 bool JS_ToBoolean(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
119 double JS_ToNumber(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
120 v8::Local<v8::Object> JS_ToObject(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
121 CFX_WideString JS_ToString(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
122 v8::Local<v8::Array> JS_ToArray(IJS_Runtime* pJSRuntime, v8::Local<v8::Value> pValue);
123 void JS_ValueCopy(v8::Local<v8::Value>& pTo, v8::Local<v8::Value> pFrom);