Flutter Engine
The Flutter Engine
Functions
SkSL::String Namespace Reference

Functions

std::string printf (const char *fmt,...) SK_PRINTF_LIKE(1
 
std::string void appendf (std::string *str, const char *fmt,...) SK_PRINTF_LIKE(2
 
std::string void void vappendf (std::string *str, const char *fmt, va_list va) SK_PRINTF_LIKE(2
 
std::string void void auto Separator ()
 

Function Documentation

◆ appendf()

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

Definition at line 92 of file SkSLString.cpp.

92 {
93 va_list args;
95 vappendf(str, fmt, args);
96 va_end(args);
97}
G_BEGIN_DECLS G_MODULE_EXPORT FlValue * args
std::string void void vappendf(std::string *str, const char *fmt, va_list va) SK_PRINTF_LIKE(2
Definition: SkSLString.cpp:99
va_start(args, format)
va_end(args)
static SkString fmt(SkColor4f c)
Definition: p3.cpp:43

◆ printf()

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

Definition at line 83 of file SkSLString.cpp.

83 {
84 va_list args;
86 std::string result;
88 va_end(args);
89 return result;
90}
GAsyncResult * result

◆ Separator()

std::string void void auto SkSL::String::Separator ( )
inline

Definition at line 30 of file SkSLString.h.

30 {
31 // This returns a lambda which emits "" the first time it is called, and ", " every subsequent
32 // time it is called.
33 struct Output {
34 const std::string fSpace, fComma;
35 };
36 static const SkNoDestructor<Output> kOutput(Output{{}, {", "}});
37
38 return [firstSeparator = true]() mutable -> const std::string& {
39 if (firstSeparator) {
40 firstSeparator = false;
41 return kOutput->fSpace;
42 } else {
43 return kOutput->fComma;
44 }
45 };
46}
Output
Definition: SkSLBench.cpp:61

◆ vappendf()

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

Definition at line 99 of file SkSLString.cpp.

99 {
100 #define BUFFER_SIZE 256
101 char buffer[BUFFER_SIZE];
102 va_list reuse;
103 va_copy(reuse, args);
104 size_t size = vsnprintf(buffer, BUFFER_SIZE, fmt, args);
105 if (BUFFER_SIZE >= size + 1) {
106 str->append(buffer, size);
107 } else {
108 auto newBuffer = std::unique_ptr<char[]>(new char[size + 1]);
109 vsnprintf(newBuffer.get(), size + 1, fmt, reuse);
110 str->append(newBuffer.get(), size);
111 }
112 va_end(reuse);
113}
#define BUFFER_SIZE
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified vm service A custom Dart VM Service port The default is to pick a randomly available open port disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode disable vm service Disable mDNS Dart VM Service publication Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set endless trace buffer
Definition: switches.h:126
it will be possible to load the file into Perfetto s trace viewer disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
Definition: switches.h:259