Home
last modified time | relevance | path

Searched refs:typeName (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DRawPtrRefMemberChecker.cpp42 virtual const char *typeName() const = 0;
317 Os << (IsPtr ? "raw pointer" : "reference") << " to " << typeName() << " "; in printPointer()
332 const char *typeName() const final { return "ref-countable type"; } in typeName() function in __anonc7fb0b0d0111::NoUncountedMemberChecker
349 const char *typeName() const final { return "CheckedPtr capable type"; } in typeName() function in __anonc7fb0b0d0111::NoUncheckedPtrMemberChecker
369 const char *typeName() const final { return "retainable type"; } in typeName() function in __anonc7fb0b0d0111::NoUnretainedMemberChecker
378 Os << typeName() << " "; in printPointer()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp673 auto declareSpecialization = [&](const Twine &typeName, StringRef code) { in emitPackUnpackOptionalTemplate() argument
676 << classPrefix << "OptionalValue<" << typeName in emitPackUnpackOptionalTemplate()
679 << (info.IsReader ? "std::optional<" : "") << typeName in emitPackUnpackOptionalTemplate()
681 << (info.IsReader ? "" : "std::optional<") << typeName in emitPackUnpackOptionalTemplate()
696 StringRef typeName = type.getCXXTypeName(); in emitPackUnpackOptionalTemplate() local
697 declareSpecialization(typeName, code); in emitPackUnpackOptionalTemplate()
699 declareSpecialization("const " + typeName, code); in emitPackUnpackOptionalTemplate()
H A DMveEmitter.cpp480 virtual std::string typeName() const { return "Value *"; } in typeName() function in __anon819a2c470111::Result
570 std::string typeName() const override { in typeName() function in __anon819a2c470111::BuiltinArgResult
571 return AddressType ? "Address" : Result::typeName(); in typeName()
713 std::string typeName() const override { in typeName() function in __anon819a2c470111::AddressResult
769 std::string typeName() const override { in typeName() function in __anon819a2c470111::TypeResult
882 std::string Type = V->typeName(); in genCode()
883 OS << V->typeName(); in genCode()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp249 StreamString typeName; in PrintDecl() local
277 typeName << type_name_str.c_str(); in PrintDecl()
305 ConstString type_name_cstr(typeName.GetString()); in PrintDecl()
323 if (!typeName.Empty()) in PrintDecl()
324 m_stream->Printf("(%s) ", typeName.GetData()); in PrintDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td12 class PropertyType<string typeName = ""> {
14 string CXXName = !if(!ne(typeName, ""), typeName, NAME);
36 class EnumPropertyType<string typeName = ""> : PropertyType<typeName> {}
57 class DefaultValuePropertyType<string typeName = ""> : PropertyType<typeName> {
66 class CountPropertyType<string typeName = ""> : PropertyType<typeName> {
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenTypes.cpp96 llvm::SmallString<256> typeName; in getRecordTypeName() local
97 llvm::raw_svector_ostream outStream(typeName); in getRecordTypeName()
115 return builder.getUniqueRecordName(std::string(typeName)); in getRecordTypeName()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h178 LLVM_ABI StringRef typeName() const;
225 LLVM_ABI StringRef typeName() const;
335 LLVM_ABI StringRef typeName() const;
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp460 StringRef typeName = (*Operands)[operandIndex].Rec->getName(); in handleOperand() local
462 OperandEncoding encoding = encodingFromString(typeName, OpSize); in handleOperand()
467 typeFromString(typeName, HasREX_W, OpSize); in handleOperand()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaPPC.cpp307 #define PPC_VECTOR_TYPE(typeName, Id, size) \ in DecodePPCMMATypeFromStr() argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp2478 auto typeName = Ty.getUnqualifiedType().getAsString(Policy); in GenKernelArgMetadata() local
2481 StringRef typeNameRef = typeName; in GenKernelArgMetadata()
2489 return typeName; in GenKernelArgMetadata()
2501 std::string typeName = getTypeSpelling(pointeeTy) + "*"; in GenKernelArgMetadata() local
2504 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenKernelArgMetadata()
2527 std::string typeName = getTypeSpelling(ty); in GenKernelArgMetadata() local
2535 removeImageAccessQualifier(typeName); in GenKernelArgMetadata()
2539 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenKernelArgMetadata()
H A DCGObjCGNU.cpp2676 llvm::Constant *typeName = in GetEHType() local
2682 fields.add(typeName); in GetEHType()
H A DCGDebugInfo.cpp5577 SmallString<36> typeName; in EmitDeclareOfBlockLiteralArgVariable() local
5578 llvm::raw_svector_ostream(typeName) in EmitDeclareOfBlockLiteralArgVariable()
5584 DBuilder.createStructType(tunit, typeName.str(), tunit, line, in EmitDeclareOfBlockLiteralArgVariable()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3302 StringRef MachOAbstractFixupEntry::typeName() const { return "unknown"; } in typeName() function in MachOAbstractFixupEntry
3759 StringRef MachORebaseEntry::typeName() const { in typeName() function in MachORebaseEntry
4305 StringRef MachOBindEntry::typeName() const { in typeName() function in MachOBindEntry
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp10371 Address, Entry.typeName().str().c_str()); in printMachORebaseTable()
10422 << left_justify(Entry.typeName(), 8) << " " in printMachOBindTable()
10480 << left_justify(Entry.typeName(), 8) << " " in printMachOWeakBindTable()