• Home
  • Raw
  • Download

Lines Matching full:local

60   v8::Local<v8::String> hMessage = v8::String::NewFromUtf8(  in FXJSE_ThrowMessage()
63 v8::Local<v8::Value> hError = v8::Exception::Error(hMessage); in FXJSE_ThrowMessage()
75 v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToHostObject()
98 v8::Local<v8::FunctionTemplate> hClass = in SetHostObject()
99 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, lpClass->m_hTemplate); in SetHostObject()
100 v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance(); in SetHostObject()
108 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, values.size()); in SetArray()
111 hArrayObject->Set(count++, v8::Local<v8::Value>::New( in SetArray()
119 v8::Local<v8::Value> hDate = v8::Date::New(m_pIsolate, dDouble); in SetDate()
125 v8::Local<v8::Value> pValue = v8::Number::New(m_pIsolate, ftod(fFloat)); in SetFloat()
133 v8::Local<v8::Value> hObject = in SetObjectProperty()
134 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
138 v8::Local<v8::Value> hPropValue = in SetObjectProperty()
139 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->DirectGetValue()); in SetObjectProperty()
151 v8::Local<v8::Value> hObject = in GetObjectProperty()
152 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectProperty()
156 v8::Local<v8::Value> hPropValue = in GetObjectProperty()
167 v8::Local<v8::Value> hObject = in SetObjectProperty()
168 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
172 v8::Local<v8::Value> hPropValue = in SetObjectProperty()
173 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->DirectGetValue()); in SetObjectProperty()
180 v8::Local<v8::Value> hObject = in GetObjectPropertyByIdx()
181 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectPropertyByIdx()
185 v8::Local<v8::Value> hPropValue = hObject.As<v8::Object>()->Get(uPropIdx); in GetObjectPropertyByIdx()
192 v8::Local<v8::Value> hObject = in DeleteObjectProperty()
193 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in DeleteObjectProperty()
206 v8::Local<v8::Value> hObject = in HasObjectOwnProperty()
207 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in HasObjectOwnProperty()
211 v8::Local<v8::String> hKey = v8::String::NewFromUtf8( in HasObjectOwnProperty()
225 v8::Local<v8::Value> hObject = in SetObjectOwnProperty()
226 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectOwnProperty()
230 v8::Local<v8::Value> pValue = in SetObjectOwnProperty()
231 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->m_hValue); in SetObjectOwnProperty()
247 v8::Local<v8::Value> rgArgs[2]; in SetFunctionBind()
248 v8::Local<v8::Value> hOldFunction = in SetFunctionBind()
249 v8::Local<v8::Value>::New(m_pIsolate, lpOldFunction->DirectGetValue()); in SetFunctionBind()
254 v8::Local<v8::Value> hNewThis = in SetFunctionBind()
255 v8::Local<v8::Value>::New(m_pIsolate, lpNewThis->DirectGetValue()); in SetFunctionBind()
260 v8::Local<v8::String> hBinderFuncSource = in SetFunctionBind()
264 v8::Local<v8::Function> hBinderFunc = in SetFunctionBind()
266 v8::Local<v8::Value> hBoundFunction = in SetFunctionBind()
281 v8::Local<v8::Value> hFunctionValue = in Call()
282 v8::Local<v8::Value>::New(m_pIsolate, DirectGetValue()); in Call()
283 v8::Local<v8::Object> hFunctionObject = in Call()
286 : v8::Local<v8::Object>(); in Call()
295 v8::Local<v8::Value> hReturnValue; in Call()
296 v8::Local<v8::Value>* lpLocalArgs = NULL; in Call()
298 lpLocalArgs = FX_Alloc(v8::Local<v8::Value>, nArgCount); in Call()
300 new (lpLocalArgs + i) v8::Local<v8::Value>; in Call()
304 v8::Local<v8::Value>::New(m_pIsolate, lpArg->DirectGetValue()); in Call()
317 hReturnValue = maybe_retvalue.FromMaybe(v8::Local<v8::Value>()); in Call()
319 v8::Local<v8::Value> hReceiver; in Call()
322 v8::Local<v8::Value>::New(m_pIsolate, lpReceiver->DirectGetValue()); in Call()
329 hReturnValue = maybe_retvalue.FromMaybe(v8::Local<v8::Value>()); in Call()
342 lpLocalArgs[i].~Local(); in Call()
353 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsUndefined()
362 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNull()
371 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsBoolean()
380 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsString()
389 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNumber()
398 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsInteger()
407 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsObject()
416 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsArray()
425 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsFunction()
434 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsDate()
441 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToBoolean()
448 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToFloat()
455 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToDouble()
462 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToInteger()
469 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToString()
470 v8::Local<v8::String> hString = hValue->ToString(); in ToString()
477 v8::Local<v8::Value> hValue = v8::Undefined(m_pIsolate); in SetUndefined()
483 v8::Local<v8::Value> hValue = v8::Null(m_pIsolate); in SetNull()
489 v8::Local<v8::Value> hValue = v8::Boolean::New(m_pIsolate, bBoolean != false); in SetBoolean()
495 v8::Local<v8::Value> hValue = v8::Integer::New(m_pIsolate, nInteger); in SetInteger()
501 v8::Local<v8::Value> hValue = v8::Number::New(m_pIsolate, dDouble); in SetDouble()
507 v8::Local<v8::Value> hValue = v8::String::NewFromUtf8( in SetString()
515 v8::Local<v8::Value> hValue = v8::Object::New(m_pIsolate); in SetJSObject()