• 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()
87 v8::Local<v8::FunctionTemplate> hClass = in SetObject()
88 v8::Local<v8::FunctionTemplate>::New(m_pIsolate, pClass->m_hTemplate); in SetObject()
89 v8::Local<v8::Object> hObject = hClass->InstanceTemplate()->NewInstance(); in SetObject()
97 v8::Local<v8::Array> hArrayObject = v8::Array::New(m_pIsolate, values.size()); in SetArray()
100 hArrayObject->Set(count++, v8::Local<v8::Value>::New( in SetArray()
108 v8::Local<v8::Value> hDate = v8::Date::New(m_pIsolate, dDouble); in SetDate()
114 v8::Local<v8::Value> pValue = v8::Number::New(m_pIsolate, ftod(fFloat)); in SetFloat()
122 v8::Local<v8::Value> hObject = in SetObjectProperty()
123 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
127 v8::Local<v8::Value> hPropValue = in SetObjectProperty()
128 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->DirectGetValue()); in SetObjectProperty()
140 v8::Local<v8::Value> hObject = in GetObjectProperty()
141 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectProperty()
145 v8::Local<v8::Value> hPropValue = in GetObjectProperty()
156 v8::Local<v8::Value> hObject = in SetObjectProperty()
157 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectProperty()
161 v8::Local<v8::Value> hPropValue = in SetObjectProperty()
162 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->DirectGetValue()); in SetObjectProperty()
169 v8::Local<v8::Value> hObject = in GetObjectPropertyByIdx()
170 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in GetObjectPropertyByIdx()
174 v8::Local<v8::Value> hPropValue = hObject.As<v8::Object>()->Get(uPropIdx); in GetObjectPropertyByIdx()
181 v8::Local<v8::Value> hObject = in DeleteObjectProperty()
182 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in DeleteObjectProperty()
195 v8::Local<v8::Value> hObject = in HasObjectOwnProperty()
196 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in HasObjectOwnProperty()
200 v8::Local<v8::String> hKey = v8::String::NewFromUtf8( in HasObjectOwnProperty()
214 v8::Local<v8::Value> hObject = in SetObjectOwnProperty()
215 v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in SetObjectOwnProperty()
219 v8::Local<v8::Value> pValue = in SetObjectOwnProperty()
220 v8::Local<v8::Value>::New(m_pIsolate, lpPropValue->m_hValue); in SetObjectOwnProperty()
236 v8::Local<v8::Value> rgArgs[2]; in SetFunctionBind()
237 v8::Local<v8::Value> hOldFunction = in SetFunctionBind()
238 v8::Local<v8::Value>::New(m_pIsolate, lpOldFunction->DirectGetValue()); in SetFunctionBind()
243 v8::Local<v8::Value> hNewThis = in SetFunctionBind()
244 v8::Local<v8::Value>::New(m_pIsolate, lpNewThis->DirectGetValue()); in SetFunctionBind()
249 v8::Local<v8::String> hBinderFuncSource = in SetFunctionBind()
253 v8::Local<v8::Function> hBinderFunc = in SetFunctionBind()
255 v8::Local<v8::Value> hBoundFunction = in SetFunctionBind()
269 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsUndefined()
278 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNull()
287 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsBoolean()
296 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsString()
305 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsNumber()
314 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsInteger()
323 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsObject()
332 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsArray()
341 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsFunction()
350 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in IsDate()
357 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToBoolean()
364 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToFloat()
371 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToDouble()
378 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToInteger()
385 v8::Local<v8::Value> hValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue); in ToString()
386 v8::Local<v8::String> hString = hValue->ToString(); in ToString()
393 v8::Local<v8::Value> hValue = v8::Undefined(m_pIsolate); in SetUndefined()
399 v8::Local<v8::Value> hValue = v8::Null(m_pIsolate); in SetNull()
405 v8::Local<v8::Value> hValue = v8::Boolean::New(m_pIsolate, bBoolean != false); in SetBoolean()
411 v8::Local<v8::Value> hValue = v8::Integer::New(m_pIsolate, nInteger); in SetInteger()
417 v8::Local<v8::Value> hValue = v8::Number::New(m_pIsolate, dDouble); in SetDouble()
423 v8::Local<v8::Value> hValue = v8::String::NewFromUtf8( in SetString()