OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 Google Inc. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #include "SkSLUtil.h" | 8 #include "SkSLUtil.h" |
9 | 9 |
10 namespace SkSL { | 10 namespace SkSL { |
11 | 11 |
12 std::string to_string(double value) { | |
13 std::stringstream buffer; | |
14 buffer << std::setprecision(std::numeric_limits<double>::digits10) << value; | |
15 std::string result = buffer.str(); | |
16 if (result.find_last_of(".") == std::string::npos && | |
17 result.find_last_of("e") == std::string::npos) { | |
18 result += ".0"; | |
19 } | |
20 return result; | |
21 } | |
22 | |
23 std::string to_string(int32_t value) { | |
24 std::stringstream buffer; | |
25 buffer << value; | |
26 return buffer.str(); | |
27 } | |
28 | |
29 std::string to_string(uint32_t value) { | |
30 std::stringstream buffer; | |
31 buffer << value; | |
32 return buffer.str(); | |
33 } | |
34 | |
35 std::string to_string(int64_t value) { | |
36 std::stringstream buffer; | |
37 buffer << value; | |
38 return buffer.str(); | |
39 } | |
40 | |
41 std::string to_string(uint64_t value) { | |
42 std::stringstream buffer; | |
43 buffer << value; | |
44 return buffer.str(); | |
45 } | |
46 | |
12 int stoi(std::string s) { | 47 int stoi(std::string s) { |
dogben
2016/09/30 15:00:51
stoi and stol are used in the parser, but they don
| |
48 if (s.size() > 2 && s[0] == '0' && s[1] == 'x') { | |
49 char* p; | |
50 int result = strtoul(s.substr(2).c_str(), &p, 16); | |
51 ASSERT(*p == 0); | |
52 return result; | |
53 } | |
13 return atoi(s.c_str()); | 54 return atoi(s.c_str()); |
14 } | 55 } |
15 | 56 |
16 double stod(std::string s) { | 57 double stod(std::string s) { |
17 return atof(s.c_str()); | 58 return atof(s.c_str()); |
18 } | 59 } |
19 | 60 |
20 long stol(std::string s) { | 61 long stol(std::string s) { |
62 if (s.size() > 2 && s[0] == '0' && s[1] == 'x') { | |
63 char* p; | |
64 int result = strtoul(s.substr(2).c_str(), &p, 16); | |
dogben
2016/09/30 15:00:51
s/int/long/
| |
65 ASSERT(*p == 0); | |
66 return result; | |
67 } | |
21 return atol(s.c_str()); | 68 return atol(s.c_str()); |
22 } | 69 } |
23 | 70 |
24 void sksl_abort() { | 71 void sksl_abort() { |
25 #ifdef SKIA | 72 #ifdef SKIA |
26 sk_abort_no_print(); | 73 sk_abort_no_print(); |
27 exit(1); | 74 exit(1); |
28 #else | 75 #else |
29 abort(); | 76 abort(); |
30 #endif | 77 #endif |
31 } | 78 } |
32 | 79 |
33 } // namespace | 80 } // namespace |
OLD | NEW |