Lines Matching refs:ConverterObject
393 void ConverterObject::Has(const FunctionCallbackInfo<Value>& args) {
404 void ConverterObject::Create(const FunctionCallbackInfo<Value>& args) {
428 auto converter = new ConverterObject(env, obj, conv, flags);
436 void ConverterObject::Decode(const FunctionCallbackInfo<Value>& args) {
441 ConverterObject* converter;
549 ConverterObject::ConverterObject(
875 // ConverterObject
880 ConverterObject::kInternalFieldCount);
887 SetMethod(context, target, "getConverter", ConverterObject::Create);
888 SetMethod(context, target, "decode", ConverterObject::Decode);
889 SetMethod(context, target, "hasConverter", ConverterObject::Has);
898 registry->Register(ConverterObject::Create);
899 registry->Register(ConverterObject::Decode);
900 registry->Register(ConverterObject::Has);