HomeSort by relevance Sort by last modified time
    Searched refs:SkString (Results 1 - 25 of 960) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/skdiff/
skdiff_html.h 12 class SkString;
17 const SkString& baseDir,
18 const SkString& comparisonDir,
19 const SkString& outputDir);
skdiff_utils.h 15 class SkString;
31 bool write_bitmap(const SkString& path, const SkBitmap& bitmap);
36 SkString filename_to_diff_filename(const SkString& filename);
41 SkString filename_to_white_filename(const SkString& filename);
49 const SkString& outputDir,
50 const SkString& filename);
  /external/skia/experimental/svg/model/
SkSVGIDMapper.h 14 class SkString;
17 using SkSVGIDMapper = SkTHashMap<SkString, sk_sp<SkSVGNode>>;
  /external/skia/include/utils/
SkParsePath.h 15 class SkString;
20 static void ToSVGString(const SkPath&, SkString*);
  /external/skia/dm/
DMJsonWriter.h 11 #include "SkString.h"
26 SkString name; // E.g. "ninepatch-stretch", "desk_gws.skp"
27 SkString config; // "gpu", "8888", "serialize", "pipe"
28 SkString sourceType; // "gm", "skp", "image"
29 SkString sourceOptions; // "image", "codec", "subset", "scanline"
30 SkString md5; // In ASCII, so 32 bytes long.
31 SkString ext; // Extension of file we wrote: "png", "pdf", ...
  /external/skia/src/core/
SkStringUtils.h 13 class SkString;
21 void SkAddFlagToString(SkString* string, bool flag,
30 void SkAppendScalar(SkString*, SkScalar, SkScalarAsStringType);
32 static inline void SkAppendScalarDec(SkString* str, SkScalar value) {
36 static inline void SkAppendScalarHex(SkString* str, SkScalar value) {
41 SkString SkTabString(const SkString& string, int tabCnt);
  /external/skia/tools/debugger/
SkObjectParser.h 12 #include "SkString.h"
26 static SkString* BitmapToString(const SkBitmap& bitmap);
32 static SkString* ImageToString(const SkImage* image);
38 static SkString* BoolToString(bool doAA);
43 static SkString* CustomTextToString(const char* text);
51 static SkString* IntToString(int x, const char* text);
56 static SkString* IRectToString(const SkIRect& rect);
62 static SkString* MatrixToString(const SkMatrix& matrix);
68 static SkString* PaintToString(const SkPaint& paint);
74 static SkString* PathToString(const SkPath& path)
    [all...]
  /external/skia/src/utils/
SkOSPath.h 11 #include "SkString.h"
32 static SkString Join(const char* rootPath, const char* relativePath);
39 * @return SkString The basename of the file - anything beyond the
42 static SkString Basename(const char* fullPath);
49 * @return SkString The dir containing the file - anything preceding the
52 static SkString Dirname(const char* fullPath);
SkOSPath.cpp 10 SkString SkOSPath::Join(const char *rootPath, const char *relativePath) {
11 SkString result(rootPath);
19 SkString SkOSPath::Basename(const char* fullPath) {
21 return SkString();
29 return SkString(filename);
32 SkString SkOSPath::Dirname(const char* fullPath) {
34 return SkString();
38 return SkString();
44 return SkString(fullPath, end - fullPath);
  /external/skia/src/sksl/ast/
SkSLASTPrecision.h 25 SkString description() const {
27 case Modifiers::kLowp_Flag: return SkString("precision lowp float;");
28 case Modifiers::kMediump_Flag: return SkString("precision mediump float;");
29 case Modifiers::kHighp_Flag: return SkString("precision highp float;");
32 return SkString("<error>");
35 return SkString("<error>");
SkSLASTNode.h 11 #include "SkString.h"
22 virtual SkString description() const = 0;
SkSLASTBreakStatement.h 22 SkString description() const override {
23 return SkString("break;");
SkSLASTContinueStatement.h 22 SkString description() const override {
23 return SkString("continue;");
SkSLASTDiscardStatement.h 22 SkString description() const override {
23 return SkString("discard;");
  /external/skia/src/gpu/vk/
GrVkExtensions.h 12 #include "SkString.h"
21 GrVkExtensions() : fInstanceExtensionStrings(new SkTArray<SkString>)
22 , fDeviceExtensionStrings(new SkTArray<SkString>)
23 , fInstanceLayerStrings(new SkTArray<SkString>)
24 , fDeviceLayerStrings(new SkTArray<SkString>) {}
40 std::unique_ptr<SkTArray<SkString>> fInstanceExtensionStrings;
41 std::unique_ptr<SkTArray<SkString>> fDeviceExtensionStrings;
42 std::unique_ptr<SkTArray<SkString>> fInstanceLayerStrings;
43 std::unique_ptr<SkTArray<SkString>> fDeviceLayerStrings;
  /external/skia/tools/
random_parse_path.h 11 #include "SkString.h"
15 SkString MakeRandomParsePathPiece(SkRandom* rand);
picture_utils.h 14 class SkString;
28 void replace_char(SkString* str, const char oldChar, const char newChar);
49 bool write_bitmap_to_disk(const SkBitmap& bm, const SkString& dirPath,
50 const char *subdirOrNull, const SkString& baseName);
  /external/skia/src/sksl/
SkSLToken.h 134 static SkString OperatorName(Kind kind) {
136 case Token::PLUS: return SkString("+");
137 case Token::MINUS: return SkString("-");
138 case Token::STAR: return SkString("*");
139 case Token::SLASH: return SkString("/");
140 case Token::PERCENT: return SkString("%");
141 case Token::SHL: return SkString("<<");
142 case Token::SHR: return SkString(">>");
143 case Token::LOGICALNOT: return SkString("!");
144 case Token::LOGICALAND: return SkString("&&")
    [all...]
SkSLContext.h 22 : fInvalid_Type(new Type(SkString("<INVALID>")))
23 , fVoid_Type(new Type(SkString("void")))
24 , fDouble_Type(new Type(SkString("double"), true))
25 , fDVec2_Type(new Type(SkString("dvec2"), *fDouble_Type, 2))
26 , fDVec3_Type(new Type(SkString("dvec3"), *fDouble_Type, 3))
27 , fDVec4_Type(new Type(SkString("dvec4"), *fDouble_Type, 4))
28 , fFloat_Type(new Type(SkString("float"), true, { fDouble_Type.get() }))
29 , fVec2_Type(new Type(SkString("vec2"), *fFloat_Type, 2))
30 , fVec3_Type(new Type(SkString("vec3"), *fFloat_Type, 3))
31 , fVec4_Type(new Type(SkString("vec4"), *fFloat_Type, 4)
    [all...]
SkSLErrorReporter.h 23 this->error(position, SkString(msg));
26 virtual void error(Position position, SkString msg) = 0;
SkSLUtil.cpp 20 SkString to_string(double value) {
30 SkString result(buffer);
39 SkString to_string(int32_t value) {
43 SkString to_string(uint32_t value) {
47 SkString to_string(int64_t value) {
51 SkString to_string(uint64_t value) {
55 int stoi(SkString s) {
65 double stod(SkString s) {
74 long stol(SkString s) {
97 SkString operator+(const SkString& s, const char* c)
    [all...]
  /external/skia/src/sksl/ir/
SkSLBreakStatement.h 23 SkString description() const override {
24 return SkString("break;");
SkSLContinueStatement.h 23 SkString description() const override {
24 return SkString("continue;");
SkSLDiscardStatement.h 23 SkString description() const override {
24 return SkString("discard;");
  /external/skia/include/gpu/gl/
GrGLSLPrettyPrint.h 10 #include "SkString.h"
13 SkString PrettyPrintGLSL(const char** strings,

Completed in 240 milliseconds

1 2 3 4 5 6 7 8 91011>>