chromium/third_party/skia/src/sksl/SkSLString.cpp

/*
 * Copyright 2017 Google Inc.
 *
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

#include "src/base/SkStringView.h"
#include "src/sksl/SkSLDefines.h"
#include "src/sksl/SkSLString.h"

#include <cerrno>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <locale>
#include <memory>
#include <sstream>
#include <string>
#include <string_view>

template <typename RoundtripType, int kFullPrecision>
static std::string to_string_impl(RoundtripType value) {}

std::string skstd::to_string(float value) {}

std::string skstd::to_string(double value) {}

bool SkSL::stod(std::string_view s, SKSL_FLOAT* value) {}

bool SkSL::stoi(std::string_view s, SKSL_INT* value) {}

std::string SkSL::String::printf(const char* fmt, ...) {}

void SkSL::String::appendf(std::string *str, const char* fmt, ...) {}

void SkSL::String::vappendf(std::string *str, const char* fmt, va_list args) {}