Home
last modified time | relevance | path

Searched refs:getTypeName (Results 1 - 25 of 118) sorted by relevance

12345

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp82 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord()
96 Name.append(Types.getTypeName(Indices[I]));
135 StringRef Ret = Types.getTypeName(Proc.getReturnType());
136 StringRef Params = Types.getTypeName(Proc.getArgumentList());
143 StringRef Ret = Types.getTypeName(MF.getReturnType());
144 StringRef Class = Types.getTypeName(MF.getClassType());
145 StringRef Params = Types.getTypeName(MF.getArgumentList());
165 StringRef Pointee = Types.getTypeName(Ptr.getReferentType());
166 StringRef Class = Types.getTypeName(MI.getContainingType());
169 Name.append(Types.getTypeName(Pt
[all...]
H A DTypeTableCollection.cpp42 StringRef TypeTableCollection::getTypeName(TypeIndex Index) { in getTypeName() function in TypeTableCollection
H A DAppendingTypeTableBuilder.cpp56 StringRef AppendingTypeTableBuilder::getTypeName(TypeIndex Index) { in getTypeName() function in AppendingTypeTableBuilder
H A DGlobalTypeTableBuilder.cpp59 StringRef GlobalTypeTableBuilder::getTypeName(TypeIndex Index) { in getTypeName() function in GlobalTypeTableBuilder
H A DTypeIndex.cpp99 TypeName = Types.getTypeName(TI); in printTypeIndex()
/third_party/skia/tests/
H A DFlattenDrawableTest.cpp50 const char* getTypeName() const override { return "IntDrawable"; }
81 const char* getTypeName() const override { return "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"; }
165 SkASSERT(!strcmp("CompoundDrawable", compoundDrawable->getTypeName())); in CreateProc()
170 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc()
187 const char* getTypeName() const override { return "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/skia/include/core/
H A DSkFlattenable.h52 virtual const char* getTypeName() const = 0;
101 const char* getTypeName() const override { return #type; }
110 const char* getTypeName() const override { return #type; }
H A DSkDrawable.h129 const char* getTypeName() const override { return nullptr; }
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DTypeRegistry.java76 return find(getTypeName(typeUrl)); in getDescriptorForTypeUrl()
85 private static String getTypeName(String typeUrl) throws InvalidProtocolBufferException { in getTypeName() method in TypeRegistry
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A 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/glslang/glslang/MachineIndependent/
H A DlinkValidate.cpp382 return symbol->getType().getTypeName(); in getNameForIdMap()
569 if (block->getType().getTypeName() == unitBlock->getType().getTypeName() && in mergeGlobalUniformBlocks()
584 if (block->getType().getTypeName() != unitBlock->getType().getTypeName() || in mergeBlockDefinitions()
721 isSameSymbol = symbol->getType().getTypeName() == unitSymbol->getType().getTypeName(); in mergeLinkerObjects()
895 infoSink.info << " Block: " << symbol.getType().getTypeName() << "\n"; in mergeErrorCheck()
907 infoSink.info << " " << StageName(getStage()) << " stage: Block: " << symbol.getType().getTypeName() << ", Member: " in mergeErrorCheck()
909 infoSink.info << " " << StageName(unitStage) << " stage: Block: " << unitSymbol.getType().getTypeName() << ", Membe in mergeErrorCheck()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h70 std::string getTypeName(Type *Ty, bool Signed) const;
138 std::string getTypeName(Type *Ty, bool Signed) const;
H A 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()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/
H A DvkStrUtil.hpp35 const char* getTypeName (void);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeTableCollection.h28 StringRef getTypeName(TypeIndex Index) override;
H A DTypeCollection.h29 virtual StringRef getTypeName(TypeIndex Index) = 0;
H A DAppendingTypeTableBuilder.h45 StringRef getTypeName(TypeIndex Index) override;
H A DMergingTypeTableBuilder.h54 StringRef getTypeName(TypeIndex Index) override;
H A DLazyRandomTypeCollection.h76 StringRef getTypeName(TypeIndex Index) override;
/third_party/skia/src/effects/
H A DSk2DPathEffect.cpp152 const char* getTypeName() const override { return "SkLine2DPathEffectImpl"; }
184 const char* getTypeName() const override { return "SkPath2DPathEffectImpl"; }
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DTypeName.h27 inline StringRef getTypeName() { in getTypeName() function
41 StringRef Key = "getTypeName<"; in getTypeName()
/third_party/skia/src/sksl/codegen/
H A 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(lef in writeMatrixComparisonWorkaround()
[all...]
/third_party/vk-gl-cts/modules/gles2/performance/
H A Des2pTextureCountTests.cpp78 string description = string(glu::getTextureFormatName(format)) + ", " + glu::getTypeName(dataType); in init()
H A Des2pTextureFormatTests.cpp77 string descriptionBase = string(glu::getTextureFormatName(format)) + ", " + glu::getTypeName(dataType); in init()
/third_party/skia/src/gpu/
H A DGrTestUtils.h80 const char* getTypeName() const override { return nullptr; }

Completed in 14 milliseconds

12345