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

123456789

/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/skia/experimental/svg/model/
H A DSkSVGTypes.h96 SkSVGPaint() : fType(Type::kInherit), fColor(SK_ColorBLACK) {}
97 explicit SkSVGPaint(Type t) : fType(t), fColor(SK_ColorBLACK) {}
98 explicit SkSVGPaint(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {}
100 : fType(Type::kIRI), fColor(SK_ColorBLACK), fIRI(iri) {}
106 return fType == other.fType && fColor == other.fColor && fIRI == other.fIRI;
110 Type type() const { return fType; }
111 const SkSVGColorType& color() const { SkASSERT(fType == Type::kColor); return fColor; }
112 const SkString& iri() const { SkASSERT(fType == Type::kIRI); return fIRI; }
115 Type fType; member in class:SkSVGPaint
146 Type fType; member in class:SkSVGClip
171 Type fType; member in class:SkSVGLineCap
195 Type fType; member in class:SkSVGLineJoin
219 Type fType; member in class:SkSVGSpreadMethod
242 Type fType; member in class:SkSVGFillRule
[all...]
/external/icu/icu4c/source/i18n/
H A Dfmtable_cnv.cpp38 fType = kString;
H A Dfmtable.cpp104 fType = kLong;
124 fType = kDate;
134 fType = kDouble;
153 fType = kInt64;
172 fType = kString;
183 fType = kString;
190 fType = kObject;
197 : UObject(), fType(kArray)
200 fType = kArray;
228 fType
[all...]
H A Dvalueformatter.cpp36 switch (fType) {
57 switch (fType) {
85 switch (fType) {
110 switch (fType) {
127 switch (fType) {
153 switch (fType) {
178 switch (fType) {
203 fType = kFixedDecimal;
215 fType = kScientificNotation;
/external/skia/src/gpu/
H A DGrDefaultGeoProcFactory.h69 explicit Color(GrColor color) : fType(kPremulGrColorUniform_Type), fColor(color) {}
70 Color(Type type) : fType(type), fColor(GrColor_ILLEGAL) {
74 Type fType; member in struct:GrDefaultGeoProcFactory::Color
84 explicit Coverage(uint8_t coverage) : fType(kUniform_Type), fCoverage(coverage) {}
85 Coverage(Type type) : fType(type), fCoverage(0xff) {
89 Type fType; member in struct:GrDefaultGeoProcFactory::Coverage
100 LocalCoords(Type type) : fType(type), fMatrix(nullptr) {}
101 LocalCoords(Type type, const SkMatrix* matrix) : fType(type), fMatrix(matrix) {
106 Type fType; member in struct:GrDefaultGeoProcFactory::LocalCoords
/external/skia/src/sksl/ir/
H A DSkSLFieldAccess.h29 : INHERITED(base->fPosition, kFieldAccess_Kind, *base->fType.fields()[fieldIndex].fType)
35 return fBase->description() + "." + fBase->fType.fields()[fFieldIndex].fName;
H A DSkSLField.h26 : INHERITED(position, kField_Kind, owner.fType.fields()[fieldIndex].fName)
31 return fOwner.description() + "." + fOwner.fType.fields()[fFieldIndex].fName;
H A DSkSLTernaryExpression.h22 : INHERITED(position, kTernary_Kind, ifTrue->fType)
26 ASSERT(fIfTrue->fType == fIfFalse->fType);
H A DSkSLVariable.h34 , fType(type)
40 return fModifiers.description() + fType.fName + " " + fName;
44 const Type& fType; member in struct:SkSL::Variable
H A DSkSLFunctionDeclaration.h52 if (fParameters[i]->fType != f.fParameters[i]->fType) {
76 if (fParameters[i]->fType.kind() == Type::kGeneric_Kind) {
77 std::vector<const Type*> types = fParameters[i]->fType.coercibleTypes();
80 if (arguments[i]->fType.canCoerceTo(*types[j])) {
91 outParameterTypes->push_back(&fParameters[i]->fType);
/external/skia/include/private/
H A DSkShadowParams.h32 fType - Decides which algorithm to use to draw shadows.
47 ShadowType fType; member in struct:SkShadowParams
H A DGrGLSL.h149 bool isOnes() const { return kOnes_ExprType == fType; }
150 bool isZeros() const { return kZeros_ExprType == fType; }
153 if (kZeros_ExprType == fType) {
155 } else if (kOnes_ExprType == fType) {
163 return kFullExpr_ExprType != fType || !fExpr.isEmpty();
171 : fType(kFullExpr_ExprType) {
179 fType = kZeros_ExprType;
181 fType = kOnes_ExprType;
183 fType = kFullExpr_ExprType;
193 fType
270 ExprType fType; member in class:GrGLSLExpr
[all...]
/external/skia/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/include/core/
H A DSkLights.h30 : fType(other.fType)
39 : fType(other.fType)
61 LightType type() const { return fType; }
64 SkASSERT(kDirectional_LightType == fType);
68 SkASSERT(kPoint_LightType == fType);
72 SkASSERT(kPoint_LightType == fType);
92 fType = b.fType;
116 LightType fType; member in class:SkLights::Light
[all...]
/external/skia/src/sksl/ast/
H A DSkSLASTParameter.h27 , fType(std::move(type))
32 SkString result = fModifiers.description() + fType->description() + " " + fName;
40 const std::unique_ptr<ASTType> fType; member in struct:SkSL::ASTParameter
/external/skia/src/gpu/vk/
H A DGrVkDescriptorPool.h36 SkDebugf("GrVkDescriptorPool: %d, type %d (%d refs)\n", fDescPool, fType,
44 VkDescriptorType fType; member in class:GrVkDescriptorPool
/external/skia/bench/
H A DChecksumBench.cpp26 ChecksumType fType; member in class:ComputeChecksumBench
29 ComputeChecksumBench(ChecksumType type) : fType(type) {
42 switch (fType) {
51 switch (fType) {
/external/skia/src/core/
H A DSkColorSpace_A2B.h73 : fType(Type::kGammaNamed)
82 : fType(Type::kGammas)
95 : fType(Type::kCLUT)
103 : fType(Type::kMatrix)
116 Type type() const { return fType; }
119 SkASSERT(Type::kGammaNamed == fType);
124 SkASSERT(Type::kGammas == fType);
129 SkASSERT(Type::kCLUT == fType);
134 SkASSERT(Type::kMatrix == fType);
143 Type fType; member in class:SkColorSpace_A2B::Element
[all...]
H A DSkNormalBevelSource.h16 : fType(type)
46 SkNormalSource::BevelType fType; member in class:SkNormalBevelSourceImpl
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRBBINode.java69 int fType; // enum NodeType field in class:RBBINode
112 fType = t;
132 fType = other.fType;
159 if (fType == RBBINode.varRef) {
163 } else if (fType == RBBINode.uset) {
200 if (fType == varRef) {
227 Assert.assrt(fType != setRef);
230 if (fLeftChild.fType == setRef) {
242 if (fRightChild.fType
[all...]
/external/icu/icu4c/source/common/
H A Drbbinode.cpp54 fType = t;
84 fType = other.fType;
118 switch (this->fType) {
152 if (fType == RBBINode::varRef) {
156 } else if (fType == RBBINode::uset) {
196 if (fType == varRef) {
227 U_ASSERT(fType != setRef);
230 if (fLeftChild->fType==setRef) {
243 if (fRightChild->fType
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRBBINode.java68 int fType; // enum NodeType field in class:RBBINode
111 fType = t;
131 fType = other.fType;
158 if (fType == RBBINode.varRef) {
162 } else if (fType == RBBINode.uset) {
199 if (fType == varRef) {
226 Assert.assrt(fType != setRef);
229 if (fLeftChild.fType == setRef) {
241 if (fRightChild.fType
[all...]
/external/skia/include/gpu/
H A DGrShaderVar.h43 : fType(kFloat_GrSLType)
52 : fType(type)
64 : fType(type)
76 : fType(type)
87 : fType(type)
97 : fType(that.fType)
120 fType = type;
144 fType = type;
169 fType
321 GrSLType fType; member in class:GrShaderVar
[all...]

Completed in 553 milliseconds

123456789