Lines Matching defs:infos

107     FunctionRef::SendablePropertiesInfos infos;
113 infos.instancePropertiesInfo.keys.push_back(tempStr);
114 infos.instancePropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
115 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true));
116 infos.staticPropertiesInfo.keys.push_back(tempStr);
117 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
118 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true));
119 infos.nonStaticPropertiesInfo.keys.push_back(tempStr);
120 infos.nonStaticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
121 infos.nonStaticPropertiesInfo.attributes.push_back(PropertyAttribute(tempStr, true, true, true));
136 infos.instancePropertiesInfo.keys.push_back(instanceStr);
137 infos.instancePropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
138 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(instanceStr, true, true, true));
141 infos.staticPropertiesInfo.keys.push_back(staticStr);
142 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
143 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(staticStr, true, true, true));
146 infos.nonStaticPropertiesInfo.keys.push_back(nonStaticStr);
147 infos.nonStaticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
148 infos.nonStaticPropertiesInfo.attributes.push_back(PropertyAttribute(nonStaticStr, true, true, true));
153 infos.instancePropertiesInfo.keys.push_back(duplicatedKey);
154 infos.instancePropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
155 infos.instancePropertiesInfo.attributes.push_back(PropertyAttribute(duplicatedValue, true, true, true));
159 vm, FunctionCallback, nullptr, nullptr, StringRef::NewFromUtf8(vm, "name"), infos, parent);
431 FunctionRef::SendablePropertiesInfos infos;
441 infos.staticPropertiesInfo.keys.push_back(staticKey);
442 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::OBJECT);
443 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(func, true, true, true));
446 vm_, FunctionCallback, nullptr, nullptr, StringRef::NewFromUtf8(vm_, "name"), infos, FunctionRef::Null(vm_));
458 FunctionRef::SendablePropertiesInfos infos;
461 infos.staticPropertiesInfo.keys.push_back(getterSetter);
462 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::NONE);
463 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(getterSetter, true, true, true));
484 infos.staticPropertiesInfo.keys.push_back(staticKey);
485 infos.staticPropertiesInfo.types.push_back(FunctionRef::SendableType::OBJECT);
486 infos.staticPropertiesInfo.attributes.push_back(PropertyAttribute(staticValue, true, true, true));
489 vm_, FunctionCallback, nullptr, nullptr, StringRef::NewFromUtf8(vm_, "name"), infos, FunctionRef::Null(vm_));