Searched refs:fType (Results 1 - 25 of 327) sorted by relevance

1234567891011>>

/external/skia/tools/gpu/gl/debug/
H A DGrShaderObj.h22 , 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 member in class:GrShaderObj
/external/skqp/tools/gpu/gl/debug/
H A DGrShaderObj.h22 , 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 member in class:GrShaderObj
/external/skia/src/views/
H A DSkEvent.cpp12 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/
H A DSkEvent.cpp12 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/skia/experimental/svg/model/
H A DSkSVGTypes.h97 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; member in class:SkSVGPaint
147 Type fType; member in class:SkSVGClip
172 Type fType; member in class:SkSVGLineCap
196 Type fType; member in class:SkSVGLineJoin
220 Type fType; member in class:SkSVGSpreadMethod
248 Type fType; member in class:SkSVGFillRule
272 Type fType; member in class:SkSVGVisibility
302 Type fType; member in class:SkSVGDashArray
[all...]
/external/skqp/experimental/svg/model/
H A DSkSVGTypes.h97 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; member in class:SkSVGPaint
147 Type fType; member in class:SkSVGClip
172 Type fType; member in class:SkSVGLineCap
196 Type fType; member in class:SkSVGLineJoin
220 Type fType; member in class:SkSVGSpreadMethod
248 Type fType; member in class:SkSVGFillRule
272 Type fType; member in class:SkSVGVisibility
302 Type fType; member in class:SkSVGDashArray
[all...]
/external/icu/icu4c/source/i18n/
H A Dfmtable_cnv.cpp38 fType = kString;
/external/skia/src/sksl/ir/
H A DSkSLConstructor.h35 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
[all...]
H A DSkSLField.h26 : INHERITED(offset, kField_Kind, owner.fType.fields()[fieldIndex].fName)
31 return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
H A DSkSLFieldAccess.h29 : INHERITED(base->fOffset, kFieldAccess_Kind, *base->fType.fields()[fieldIndex].fType)
39 return fBase->description() + "." + fBase->fType.fields()[fFieldIndex].fName;
H A DSkSLTernaryExpression.h22 : INHERITED(offset, kTernary_Kind, ifTrue->fType)
26 ASSERT(fIfTrue->fType == fIfFalse->fType);
H A DSkSLVariable.h36 , fType(type)
51 return fModifiers.description() + fType.fName + " " + fName;
59 const Type& fType; member in struct:SkSL::Variable
/external/skqp/src/sksl/ir/
H A DSkSLConstructor.h35 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
[all...]
H A DSkSLField.h26 : INHERITED(offset, kField_Kind, owner.fType.fields()[fieldIndex].fName)
31 return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
H A DSkSLFieldAccess.h29 : INHERITED(base->fOffset, kFieldAccess_Kind, *base->fType.fields()[fieldIndex].fType)
39 return fBase->description() + "." + fBase->fType.fields()[fFieldIndex].fName;
H A DSkSLTernaryExpression.h22 : INHERITED(offset, kTernary_Kind, ifTrue->fType)
26 ASSERT(fIfTrue->fType == fIfFalse->fType);
/external/skia/src/gpu/
H A DGrDefaultGeoProcFactory.h71 : fType(kPremulGrColorUniform_Type)
76 : fType(type)
83 Type fType; member in struct:GrDefaultGeoProcFactory::Color
98 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {}
99 Coverage(Type type) : fType(type), fCoverage(0xff) {
103 Type fType; member in struct:GrDefaultGeoProcFactory::Coverage
114 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
115 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
120 Type fType; member in struct:GrDefaultGeoProcFactory::LocalCoords
/external/skqp/src/gpu/
H A DGrDefaultGeoProcFactory.h71 : fType(kPremulGrColorUniform_Type)
76 : fType(type)
83 Type fType; member in struct:GrDefaultGeoProcFactory::Color
98 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {}
99 Coverage(Type type) : fType(type), fCoverage(0xff) {
103 Type fType; member in struct:GrDefaultGeoProcFactory::Coverage
114 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
115 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
120 Type fType; member in struct:GrDefaultGeoProcFactory::LocalCoords
/external/skia/src/pdf/
H A DSkJpegInfo.h19 } fType; member in struct:SkJFIFInfo
/external/skqp/src/pdf/
H A DSkJpegInfo.h19 } fType; member in struct:SkJFIFInfo
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMErrorImpl.java46 private String fType; field in class:DOMErrorImpl
76 fType = type;
89 fType = type;
105 fType = type;
155 return fType;
171 fType = null;
/external/skia/src/gpu/gl/
H A DGrGLProgramDataManager.cpp31 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
[all...]
/external/skqp/src/gpu/gl/
H A DGrGLProgramDataManager.cpp31 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
[all...]
/external/skia/src/sksl/ast/
H A DSkSLASTParameter.h27 , fType(std::move(type))
32 String result = fModifiers.description() + fType->description() + " " + fName;
40 const std::unique_ptr<ASTType> fType; member in struct:SkSL::ASTParameter
/external/skqp/src/sksl/ast/
H A DSkSLASTParameter.h27 , fType(std::move(type))
32 String result = fModifiers.description() + fType->description() + " " + fName;
40 const std::unique_ptr<ASTType> fType; member in struct:SkSL::ASTParameter

Completed in 2094 milliseconds

1234567891011>>