Lines Matching refs:value
138 static int callbackInteger(const char* propertyName, int64_t value, in callbackInteger() argument
144 params->output->append(std::to_string(value)); in callbackInteger()
157 static int callbackEnum(const char* propertyName, const char* value, in callbackEnum() argument
164 params->output->append(value); in callbackEnum()
178 static int callbackString(const char* propertyName, const char* value, in callbackString() argument
185 params->output->append(value); in callbackString()
199 static int callbackReal(const char* propertyName, const struct BejReal* value, in callbackReal() argument
206 params->output->append(std::to_string(value->whole)); in callbackReal()
208 params->output->insert(params->output->cend(), value->zeroCount, '0'); in callbackReal()
209 params->output->append(std::to_string(value->fract)); in callbackReal()
210 if (value->expLen != 0) in callbackReal()
213 params->output->append(std::to_string(value->exp)); in callbackReal()
227 static int callbackBool(const char* propertyName, bool value, void* dataPtr) in callbackBool() argument
232 params->output->append(value ? "true" : "false"); in callbackBool()