Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp680 auto declareSpecialization = [&](const Twine &typeName, in emitPackUnpackOptionalTemplate()
683 "struct " << classPrefix << "OptionalValue<" << typeName << "> {\n" in emitPackUnpackOptionalTemplate()
684 " static " << (info.IsReader ? "Optional<" : "") << typeName in emitPackUnpackOptionalTemplate()
686 << (info.IsReader ? "" : "Optional<") << typeName in emitPackUnpackOptionalTemplate()
698 StringRef typeName = type.getCXXTypeName(); in emitPackUnpackOptionalTemplate() local
699 declareSpecialization(typeName, code); in emitPackUnpackOptionalTemplate()
701 declareSpecialization("const " + typeName, code); in emitPackUnpackOptionalTemplate()
H A DMveEmitter.cpp486 virtual std::string typeName() const { return "Value *"; } in typeName() function in __anonb7c02cfb0111::Result
576 std::string typeName() const override { in typeName() function in __anonb7c02cfb0111::BuiltinArgResult
577 return AddressType ? "Address" : Result::typeName(); in typeName()
717 std::string typeName() const override { in typeName() function in __anonb7c02cfb0111::AddressResult
772 std::string typeName() const override { in typeName() function in __anonb7c02cfb0111::TypeResult
885 std::string Type = V->typeName(); in genCode()
886 OS << V->typeName(); in genCode()
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp234 StreamString typeName; in PrintDecl() local
260 typeName << type_name_str.c_str(); in PrintDecl()
288 ConstString type_name_cstr(typeName.GetString()); in PrintDecl()
301 if (!typeName.Empty()) in PrintDecl()
302 m_stream->Printf("(%s) ", typeName.GetData()); in PrintDecl()
/freebsd-13.1/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-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DX86RecognizableInstr.cpp386 StringRef typeName = (*Operands)[operandIndex].Rec->getName(); in handleOperand() local
388 OperandEncoding encoding = encodingFromString(std::string(typeName), OpSize); in handleOperand()
393 typeFromString(std::string(typeName), HasREX_WPrefix, OpSize); in handleOperand()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DMachO.h174 StringRef typeName() const;
220 StringRef typeName() const;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenModule.cpp1620 auto typeName = Ty.getUnqualifiedType().getAsString(Policy); in GenOpenCLArgMetadata() local
1623 StringRef typeNameRef = typeName; in GenOpenCLArgMetadata()
1631 return typeName; in GenOpenCLArgMetadata()
1643 std::string typeName = getTypeSpelling(pointeeTy) + "*"; in GenOpenCLArgMetadata() local
1646 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenOpenCLArgMetadata()
1669 std::string typeName = getTypeSpelling(ty); in GenOpenCLArgMetadata() local
1677 removeImageAccessQualifier(typeName); in GenOpenCLArgMetadata()
1681 argTypeNames.push_back(llvm::MDString::get(VMContext, typeName)); in GenOpenCLArgMetadata()
H A DCGDebugInfo.cpp4673 SmallString<36> typeName; in EmitDeclareOfBlockLiteralArgVariable() local
4674 llvm::raw_svector_ostream(typeName) in EmitDeclareOfBlockLiteralArgVariable()
4680 DBuilder.createStructType(tunit, typeName.str(), tunit, line, in EmitDeclareOfBlockLiteralArgVariable()
H A DCGObjCGNU.cpp2455 llvm::Constant *typeName = in GetEHType() local
2461 fields.add(typeName); in GetEHType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp3423 StringRef MachORebaseEntry::typeName() const { in typeName() function in MachORebaseEntry
3967 StringRef MachOBindEntry::typeName() const { in typeName() function in MachOBindEntry
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp10330 Address, Entry.typeName().str().c_str()); in printMachORebaseTable()
10379 << left_justify(Entry.typeName(), 8) << " " in printMachOBindTable()
10437 << left_justify(Entry.typeName(), 8) << " " in printMachOWeakBindTable()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3235 #define PPC_VECTOR_TYPE(typeName, Id, size) \ in DecodePPCMMATypeFromStr() argument