Lines Matching refs:nativePoint
310 Local<NativePointerRef> nativePoint = NativePointerRef::New(
319 NativePointerTestClass *yourClassPtr = static_cast<NativePointerTestClass *>(nativePoint->Value());
323 GTEST_LOG_(INFO) << "sample_NativePointer Value : " << nativePoint->Value();
330 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vps);
331 std::string *p = (std::string *)nativePoint->Value();
335 GTEST_LOG_(INFO) << "sample_NativePointerRef_String ChangeValue : " << *((std::string *)nativePoint->Value());
342 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpd);
343 double *p = (double *)nativePoint->Value();
347 GTEST_LOG_(INFO) << "sample_NativePointerRef_Double ChangeValue: " << *((double *)nativePoint->Value());
354 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpc);
355 char *p = (char *)nativePoint->Value();
358 GTEST_LOG_(INFO) << "sample_NativePointerRef_Char ChangeValue: " << *((char *)nativePoint->Value());
365 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpl);
366 long *p = (long *)nativePoint->Value();
370 GTEST_LOG_(INFO) << "sample_NativePointerRef_Long ChangeValue: " << *((long *)nativePoint->Value());
377 Local<NativePointerRef> nativePoint = NativePointerRef::New(vm_, vpi);
378 int *p = (int *)nativePoint->Value();
382 GTEST_LOG_(INFO) << "sample_NativePointerRef_Int ChangeValue: " << *((int *)nativePoint->Value());