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

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/gpu/gl/debug/
GrShaderObj.h 22 , fType(GR_GL_VERTEX_SHADER) {}
24 void setType(GrGLenum type) { fType = type; }
25 GrGLenum getType() { return fType; }
31 GrGLenum fType; // either GR_GL_VERTEX_SHADER or GR_GL_FRAGMENT_SHADER
  /external/skqp/tools/gpu/gl/debug/
GrShaderObj.h 22 , fType(GR_GL_VERTEX_SHADER) {}
24 void setType(GrGLenum type) { fType = type; }
25 GrGLenum getType() { return fType; }
31 GrGLenum fType; // either GR_GL_VERTEX_SHADER or GR_GL_FRAGMENT_SHADER
  /external/skia/experimental/svg/model/
SkSVGTypes.h 97 SkSVGPaint() : fType(Type::kInherit), fColor(SK_ColorBLACK) {}
98 explicit SkSVGPaint(Type t) : fType(t), fColor(SK_ColorBLACK) {}
99 explicit SkSVGPaint(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {}
101 : fType(Type::kIRI), fColor(SK_ColorBLACK), fIRI(iri) {}
107 return fType == other.fType && fColor == other.fColor && fIRI == other.fIRI;
111 Type type() const { return fType; }
112 const SkSVGColorType& color() const { SkASSERT(fType == Type::kColor); return fColor; }
113 const SkString& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; }
116 Type fType;
    [all...]
  /external/skqp/experimental/svg/model/
SkSVGTypes.h 97 SkSVGPaint() : fType(Type::kInherit), fColor(SK_ColorBLACK) {}
98 explicit SkSVGPaint(Type t) : fType(t), fColor(SK_ColorBLACK) {}
99 explicit SkSVGPaint(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {}
101 : fType(Type::kIRI), fColor(SK_ColorBLACK), fIRI(iri) {}
107 return fType == other.fType && fColor == other.fColor && fIRI == other.fIRI;
111 Type type() const { return fType; }
112 const SkSVGColorType& color() const { SkASSERT(fType == Type::kColor); return fColor; }
113 const SkString& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; }
116 Type fType;
    [all...]
  /external/skia/src/views/
SkEvent.cpp 12 fType = nullptr;
23 setType(src.fType);
32 sk_free(fType);
37 return strncmp(fType, type, typeLen) == 0 && fType[typeLen] == 0;
42 fType = (char*) sk_malloc_throw(typeLen + 1);
43 memcpy(fType, type, typeLen);
44 fType[typeLen] = 0;
  /external/skqp/src/views/
SkEvent.cpp 12 fType = nullptr;
23 setType(src.fType);
32 sk_free(fType);
37 return strncmp(fType, type, typeLen) == 0 && fType[typeLen] == 0;
42 fType = (char*) sk_malloc_throw(typeLen + 1);
43 memcpy(fType, type, typeLen);
44 fType[typeLen] = 0;
  /external/icu/icu4c/source/i18n/
fmtable_cnv.cpp 38 fType = kString;
  /external/skia/src/sksl/ir/
SkSLConstructor.h 35 if (fType == *irGenerator.fContext.fFloat_Type ||
36 fType == *irGenerator.fContext.fHalf_Type) {
42 } else if (fType == *irGenerator.fContext.fUInt_Type ||
43 fType == *irGenerator.fContext.fUShort_Type) {
49 &fType));
65 String result = fType.description() + "(";
86 ASSERT(other.fKind == Expression::kConstructor_Kind && other.fType == fType);
88 if (c.fType.kind() == Type::kVector_Kind) {
89 for (int i = 0; i < fType.columns(); i++)
    [all...]
SkSLField.h 26 : INHERITED(offset, kField_Kind, owner.fType.fields()[fieldIndex].fName)
31 return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
SkSLExpression.h 50 , fType(std::move(type)) {}
105 return fType.coercionCost(target);
109 const Type& fType;
SkSLFieldAccess.h 29 : INHERITED(base->fOffset, kFieldAccess_Kind, *base->fType.fields()[fieldIndex].fType)
39 return fBase->description() + "." + fBase->fType.fields()[fFieldIndex].fName;
SkSLTernaryExpression.h 22 : INHERITED(offset, kTernary_Kind, ifTrue->fType)
26 ASSERT(fIfTrue->fType == fIfFalse->fType);
SkSLVariable.h 36 , fType(type)
51 return fModifiers.description() + fType.fName + " " + fName;
59 const Type& fType;
  /external/skqp/src/sksl/ir/
SkSLConstructor.h 35 if (fType == *irGenerator.fContext.fFloat_Type ||
36 fType == *irGenerator.fContext.fHalf_Type) {
42 } else if (fType == *irGenerator.fContext.fUInt_Type ||
43 fType == *irGenerator.fContext.fUShort_Type) {
49 &fType));
65 String result = fType.description() + "(";
86 ASSERT(other.fKind == Expression::kConstructor_Kind && other.fType == fType);
88 if (c.fType.kind() == Type::kVector_Kind) {
89 for (int i = 0; i < fType.columns(); i++)
    [all...]
SkSLField.h 26 : INHERITED(offset, kField_Kind, owner.fType.fields()[fieldIndex].fName)
31 return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
SkSLExpression.h 50 , fType(std::move(type)) {}
105 return fType.coercionCost(target);
109 const Type& fType;
  /external/skia/src/gpu/
GrDefaultGeoProcFactory.h 71 : fType(kPremulGrColorUniform_Type)
76 : fType(type)
83 Type fType;
98 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {}
99 Coverage(Type type) : fType(type), fCoverage(0xff) {
103 Type fType;
114 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
115 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
120 Type fType;
  /external/skqp/src/gpu/
GrDefaultGeoProcFactory.h 71 : fType(kPremulGrColorUniform_Type)
76 : fType(type)
83 Type fType;
98 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {}
99 Coverage(Type type) : fType(type), fCoverage(0xff) {
103 Type fType;
114 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
115 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
120 Type fType;
  /external/skia/src/pdf/
SkJpegInfo.h 19 } fType;
  /external/skqp/src/pdf/
SkJpegInfo.h 19 } fType;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMErrorImpl.java 46 private String fType;
76 fType = type;
89 fType = type;
105 fType = type;
155 return fType;
171 fType = null;
  /external/skia/src/gpu/gl/
GrGLProgramDataManager.cpp 31 uniform.fType = builderUniform.fVariable.getType();
47 pathProcVarying.fType = builderPathProcVarying.fVariable.getType();
66 SkASSERT(uni.fType == kInt_GrSLType || uni.fType == kShort_GrSLType);
77 SkASSERT(uni.fType == kInt_GrSLType || uni.fType == kShort_GrSLType);
87 SkASSERT(uni.fType == kFloat_GrSLType || uni.fType == kHalf_GrSLType);
98 SkASSERT(uni.fType == kFloat_GrSLType || uni.fType == kHalf_GrSLType)
    [all...]
  /external/skqp/src/gpu/gl/
GrGLProgramDataManager.cpp 31 uniform.fType = builderUniform.fVariable.getType();
47 pathProcVarying.fType = builderPathProcVarying.fVariable.getType();
66 SkASSERT(uni.fType == kInt_GrSLType || uni.fType == kShort_GrSLType);
77 SkASSERT(uni.fType == kInt_GrSLType || uni.fType == kShort_GrSLType);
87 SkASSERT(uni.fType == kFloat_GrSLType || uni.fType == kHalf_GrSLType);
98 SkASSERT(uni.fType == kFloat_GrSLType || uni.fType == kHalf_GrSLType)
    [all...]
  /external/skia/src/sksl/ast/
SkSLASTParameter.h 27 , fType(std::move(type))
32 String result = fModifiers.description() + fType->description() + " " + fName;
40 const std::unique_ptr<ASTType> fType;
  /external/skqp/src/sksl/ast/
SkSLASTParameter.h 27 , fType(std::move(type))
32 String result = fModifiers.description() + fType->description() + " " + fName;
40 const std::unique_ptr<ASTType> fType;

Completed in 999 milliseconds

1 2 3 4 5 6 7 8 91011>>