Home
last modified time | relevance | path

Searched refs:getTypeName (Results 1 – 25 of 145) sorted by relevance

123456

/third_party/skia/tests/
DFlattenDrawableTest.cpp50 const char* getTypeName() const override { return "IntDrawable"; } in getTypeName() function in IntDrawable
81 const char* getTypeName() const override { return "PaintDrawable"; } in getTypeName() function in PaintDrawable
112 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc()
117 SkASSERT(!strcmp("PaintDrawable", paintDrawable->getTypeName())); in CreateProc()
128 const char* getTypeName() const override { return "CompoundDrawable"; } in getTypeName() function in CompoundDrawable
165 SkASSERT(!strcmp("CompoundDrawable", compoundDrawable->getTypeName())); in CreateProc()
170 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc()
187 const char* getTypeName() const override { return "RootDrawable"; } in getTypeName() function in RootDrawable
226 REPORTER_ASSERT(r, !strcmp("RootDrawable", out->getTypeName())); in DEF_TEST()
242 REPORTER_ASSERT(r, !strcmp("IntDrawable", generic->getTypeName())); in DEF_TEST()
[all …]
/third_party/flutter/skia/tests/
DFlattenDrawableTest.cpp49 const char* getTypeName() const override { return "IntDrawable"; } in getTypeName() function in IntDrawable
82 const char* getTypeName() const override { return "PaintDrawable"; } in getTypeName() function in PaintDrawable
113 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc()
118 SkASSERT(!strcmp("PaintDrawable", paintDrawable->getTypeName())); in CreateProc()
129 const char* getTypeName() const override { return "CompoundDrawable"; } in getTypeName() function in CompoundDrawable
166 SkASSERT(!strcmp("CompoundDrawable", compoundDrawable->getTypeName())); in CreateProc()
171 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc()
188 const char* getTypeName() const override { return "RootDrawable"; } in getTypeName() function in RootDrawable
227 REPORTER_ASSERT(r, !strcmp("RootDrawable", out->getTypeName())); in DEF_TEST()
243 REPORTER_ASSERT(r, !strcmp("IntDrawable", generic->getTypeName())); in DEF_TEST()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DRecordName.cpp82 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord()
96 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord()
135 StringRef Ret = Types.getTypeName(Proc.getReturnType()); in visitKnownRecord()
136 StringRef Params = Types.getTypeName(Proc.getArgumentList()); in visitKnownRecord()
143 StringRef Ret = Types.getTypeName(MF.getReturnType()); in visitKnownRecord()
144 StringRef Class = Types.getTypeName(MF.getClassType()); in visitKnownRecord()
145 StringRef Params = Types.getTypeName(MF.getArgumentList()); in visitKnownRecord()
165 StringRef Pointee = Types.getTypeName(Ptr.getReferentType()); in visitKnownRecord()
166 StringRef Class = Types.getTypeName(MI.getContainingType()); in visitKnownRecord()
169 Name.append(Types.getTypeName(Ptr.getReferentType())); in visitKnownRecord()
[all …]
/third_party/skia/include/core/
DSkFlattenable.h52 virtual const char* getTypeName() const = 0;
101 const char* getTypeName() const override { return #type; }
110 const char* getTypeName() const override { return #type; }
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dno-base-to-string.ts102 if (ignoredTypeNames.includes(util.getTypeName(typeChecker, type))) {
168 if (util.getTypeName(typeChecker, leftType) === 'string') {
170 } else if (util.getTypeName(typeChecker, rightType) === 'string') {
Dprefer-regexp-exec.ts6 getTypeName,
41 return getTypeName(typeChecker, objectType) === 'string';
Drequire-array-sort-compare.ts58 arg => util.getTypeName(checker, arg) === 'string',
/third_party/flutter/skia/include/core/
DSkFlattenable.h56 virtual const char* getTypeName() const = 0;
104 const char* getTypeName() const override { return #type; }
/third_party/typescript_eslint/packages/eslint-plugin/src/util/
Dtypes.ts78 export function getTypeName( function
101 return getTypeName(
115 .map(value => getTypeName(typeChecker, value))
126 .map(value => getTypeName(typeChecker, value))
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
DTypeRegistry.java76 return find(getTypeName(typeUrl)); in getDescriptorForTypeUrl()
85 private static String getTypeName(String typeUrl) throws InvalidProtocolBufferException { in getTypeName() method in TypeRegistry
/third_party/node/lib/internal/source_map/
Dprepare_stack_trace.js85 const originalName = `${t.getTypeName() !== 'global' ?
86 `${t.getTypeName()}.` : ''}${fnName ? fnName : '<anonymous>'}`;
/third_party/skia/src/sksl/codegen/
DSkSLGLSLCodeGenerator.cpp81 String GLSLCodeGenerator::getTypeName(const Type& type) { in getTypeName() function in SkSL::GLSLCodeGenerator
121 String baseTypeName = this->getTypeName(type.componentType()); in getTypeName()
167 this->write(this->getTypeName(type)); in writeType()
241 this->getTypeName(absExpr.type()) + " " + tmpVar1 + ";\n"; in writeMinAbsHack()
243 this->getTypeName(otherExpr.type()) + " " + tmpVar2 + ";\n"; in writeMinAbsHack()
416 String typeName = this->getTypeName(type); in writeTransposeHack()
418 String transposed = this->getTypeName(base.toCompound(fContext, in writeTransposeHack()
714 if ((this->getTypeName(c.type()) == this->getTypeName(argument.type()) || in writeCastConstructor()
864 this->getTypeName(left.type()) + " " + tempMatrix1 + ";\n " + in writeMatrixComparisonWorkaround()
866 this->getTypeName(right.type()) + " " + tempMatrix2 + ";\n"; in writeMatrixComparisonWorkaround()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
DvkStrUtil.hpp35 const char* getTypeName (void);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUHSAMetadataStreamer.cpp162 std::string MetadataStreamerV2::getTypeName(Type *Ty, bool Signed) const { in getTypeName() function in llvm::AMDGPU::HSAMD::MetadataStreamerV2
166 return (Twine('u') + getTypeName(Ty, true)).str(); in getTypeName()
192 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
291 Attrs.mVecTypeHint = getTypeName( in emitKernelAttrs()
608 std::string MetadataStreamerV3::getTypeName(Type *Ty, bool Signed) const { in getTypeName() function in llvm::AMDGPU::HSAMD::MetadataStreamerV3
612 return (Twine('u') + getTypeName(Ty, true)).str(); in getTypeName()
638 return (Twine(getTypeName(ElTy, Signed)) + Twine(NumElements)).str(); in getTypeName()
705 getTypeName( in emitKernelAttrs()
DAMDGPUHSAMetadataStreamer.h70 std::string getTypeName(Type *Ty, bool Signed) const;
138 std::string getTypeName(Type *Ty, bool Signed) const;
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DOutputGLSLBase.cpp433 out << getTypeName(type); in writeVariableType()
488 out << getTypeName(type) << "("; in writeConstantUnion()
527 out << getTypeName(type); in writeConstructorTriplet()
533 out << getTypeName(type) << "("; in writeConstructorTriplet()
1105 ImmutableString TOutputGLSLBase::getTypeName(const TType &type) in getTypeName() function in sh::TOutputGLSLBase
1170 out << getTypeName(fieldType) << " " << hashFieldName(field); in declareStruct()
1289 out << getTypeName(fieldType) << " " << hashFieldName(field); in declareInterfaceBlock()
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DOutputGLSLBase.cpp372 out << getTypeName(type); in writeVariableType()
423 out << getTypeName(type) << "("; in writeConstantUnion()
462 out << getTypeName(type); in writeConstructorTriplet()
468 out << getTypeName(type) << "("; in writeConstructorTriplet()
1193 ImmutableString TOutputGLSLBase::getTypeName(const TType &type) in getTypeName() function in sh::TOutputGLSLBase
1254 out << getTypeName(*field->type()) << " " << hashFieldName(field); in declareStruct()
1339 out << getTypeName(*field->type()) << " " << hashFieldName(field); in declareInterfaceBlock()
/third_party/flutter/skia/tools/lua/
Dxfer-counter.lua19 local modeName = xferMode:getTypeName()
/third_party/skia/src/effects/
DSk2DPathEffect.cpp152 const char* getTypeName() const override { return "SkLine2DPathEffect"; } in getTypeName() function in SkLine2DPathEffectImpl
184 const char* getTypeName() const override { return "SkPath2DPathEffect"; } in getTypeName() function in SkPath2DPathEffectImpl
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeTableCollection.h28 StringRef getTypeName(TypeIndex Index) override;
DTypeCollection.h29 virtual StringRef getTypeName(TypeIndex Index) = 0;
DAppendingTypeTableBuilder.h45 StringRef getTypeName(TypeIndex Index) override;
/third_party/flutter/skia/src/sksl/
DSkSLGLSLCodeGenerator.cpp82 String GLSLCodeGenerator::getTypeName(const Type& type) { in getTypeName() function in SkSL::GLSLCodeGenerator
128 String result = this->getTypeName(type.componentType()) + "["; in getTypeName()
187 this->write(this->getTypeName(type)); in writeType()
254 this->getTypeName(absExpr.fType) + " " + tmpVar1 + ";\n"; in writeMinAbsHack()
256 this->getTypeName(otherExpr.fType) + " " + tmpVar2 + ";\n"; in writeMinAbsHack()
426 String type = this->getTypeName(mat.fType); in writeTransposeHack()
428 String transposed = this->getTypeName(base.toCompound(fContext, in writeTransposeHack()
714 (this->getTypeName(c.fType) == this->getTypeName(c.fArguments[0]->fType) || in writeFunctionCall()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DTypeName.h27 inline StringRef getTypeName() { in getTypeName() function
/third_party/vk-gl-cts/modules/gles2/performance/
Des2pTextureFormatTests.cpp77 …string descriptionBase = string(glu::getTextureFormatName(format)) + ", " + glu::getTypeName(data… in init()

123456