• Home
  • Raw
  • Download

Lines Matching refs:szPropName

84   v8::String::Utf8Value szPropName(info.GetIsolate(), hPropName);  in DynPropGetterAdapter_MethodCallback()  local
85 WideString szFxPropName = WideString::FromUTF8(*szPropName); in DynPropGetterAdapter_MethodCallback()
89 WideString err = JSFormatErrorString(*szPropName, "", result.Error()); in DynPropGetterAdapter_MethodCallback()
102 const ByteStringView& szPropName, in DynPropGetterAdapter() argument
109 : lpClass->dynPropTypeGetter(pObject, szPropName, false); in DynPropGetterAdapter()
112 lpClass->dynPropGetter(pObject, szPropName, pValue); in DynPropGetterAdapter()
126 pIsolate, reinterpret_cast<const char*>(szPropName.raw_str()), in DynPropGetterAdapter()
127 v8::String::kNormalString, szPropName.GetLength())); in DynPropGetterAdapter()
139 const ByteStringView& szPropName, in DynPropSetterAdapter() argument
145 : lpClass->dynPropTypeGetter(pObject, szPropName, false); in DynPropSetterAdapter()
148 lpClass->dynPropSetter(pObject, szPropName, pValue); in DynPropSetterAdapter()
154 const ByteStringView& szPropName) { in DynPropQueryAdapter() argument
159 : lpClass->dynPropTypeGetter(pObject, szPropName, true); in DynPropQueryAdapter()
171 v8::String::Utf8Value szPropName(pIsolate, property); in NamedPropertyQueryCallback() local
172 ByteStringView szFxPropName(*szPropName, szPropName.length()); in NamedPropertyQueryCallback()
189 v8::String::Utf8Value szPropName(info.GetIsolate(), property); in NamedPropertyGetterCallback() local
190 ByteStringView szFxPropName(*szPropName, szPropName.length()); in NamedPropertyGetterCallback()
206 v8::String::Utf8Value szPropName(info.GetIsolate(), property); in NamedPropertySetterCallback() local
207 ByteStringView szFxPropName(*szPropName, szPropName.length()); in NamedPropertySetterCallback()