Searched refs:TypeName (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_builtin_vars.h46 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \
47 __attribute__((device)) TypeName() __DELETE; \
48 __attribute__((device)) TypeName(const TypeName &) __DELETE; \
49 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \
50 __attribute__((device)) TypeName *operator&() const __DELETE
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DQualTypeNames.h66 namespace TypeName { namespace in namespace:clang
90 } // end namespace TypeName
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-defines.h138 /// \def DISALLOW_COPY_AND_ASSIGN(TypeName)
141 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \
142 TypeName(const TypeName &) = delete; \
143 const TypeName &operator=(const TypeName &) = delete
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp94 StringRef TypeName; local
97 TypeName = TypeIndex::simpleTypeName(TI);
99 TypeName = Types.getTypeName(TI);
102 if (!TypeName.empty())
103 Printer.printHex(FieldName, TypeName, TI.getIndex());
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslpredef.c726 char *TypeName; local
744 TypeName = "Integer";
750 TypeName = "String";
756 TypeName = "Buffer";
763 TypeName = "Package";
784 TypeName = "Reference";
791 TypeName = UtGetOpName (Op->Asl.ParseOpcode);
812 PredefinedName, TypeName, StringBuffer);
817 PredefinedName, TypeName, PackageIndex, StringBuffer);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DInheritViz.cpp79 std::string TypeName = Type.getAsString(); local
80 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName);
85 if (TypeName != CanonType.getAsString()) {
H A DQualTypeNames.cpp20 namespace TypeName { namespace in namespace:clang
219 return TypeName::createNestedNameSpecifier(
226 return TypeName::createNestedNameSpecifier(
248 return TypeName::createNestedNameSpecifier(Ctx, TD,
252 return TypeName::createNestedNameSpecifier(Ctx, TDD->getDecl(),
471 } // end namespace TypeName
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.h68 StringRef getValueType(Type *Ty, StringRef TypeName) const;
93 StringRef TypeName = "", StringRef BaseTypeName = "",
136 ValueType getValueType(Type *Ty, StringRef TypeName) const;
163 StringRef Name = "", StringRef TypeName = "",
H A DAMDGPUHSAMetadataStreamer.cpp130 ValueType MetadataStreamerV2::getValueType(Type *Ty, StringRef TypeName) const {
133 auto Signed = !TypeName.startswith("u");
154 return getValueType(Ty->getPointerElementType(), TypeName);
156 return getValueType(Ty->getVectorElementType(), TypeName);
320 StringRef TypeName; local
323 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString();
358 PointeeAlign, Name, TypeName, BaseTypeName, AccQual, TypeQual);
364 StringRef TypeName,
371 Arg.mTypeName = TypeName;
576 StringRef MetadataStreamerV3::getValueType(Type *Ty, StringRef TypeName) cons
361 emitKernelArg(const DataLayout &DL, Type *Ty, ValueKind ValueKind, unsigned PointeeAlign, StringRef Name, StringRef TypeName, StringRef BaseTypeName, StringRef AccQual, StringRef TypeQual) argument
742 StringRef TypeName; local
785 emitKernelArg(const DataLayout &DL, Type *Ty, StringRef ValueKind, unsigned &Offset, msgpack::ArrayDocNode Args, unsigned PointeeAlign, StringRef Name, StringRef TypeName, StringRef BaseTypeName, StringRef AccQual, StringRef TypeQual) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp61 << TypeName(DTI.getMostDerivedTypeName())
65 << TypeName(DTI.getMostDerivedTypeName())
70 << TypeName(DTI.getMostDerivedTypeName())
77 << DTI.getOffset() << TypeName(DTI.getMostDerivedTypeName())
78 << TypeName(DTI.getSubobjectTypeName())
143 << TypeName(DTI.getMostDerivedTypeName());
H A Dubsan_diag.h116 class TypeName { class in namespace:__ubsan
119 TypeName(const char *Name) : Name(Name) {} function in class:__ubsan::TypeName
163 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {}
214 Diag &operator<<(TypeName TN) { return AddArg(TN); }
259 bool IsVptrCheckSuppressed(const char *TypeName);
H A Dubsan_value.h93 char TypeName[1]; member in class:__ubsan::TypeDescriptor
110 const char *getTypeName() const { return TypeName; }
H A Dubsan_diag.cpp412 bool __ubsan::IsVptrCheckSuppressed(const char *TypeName) { argument
416 return suppression_ctx->Match(TypeName, kVptrCheck, &s);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp158 bool maybeParseSectionType(StringRef &TypeName);
391 bool ELFAsmParser::maybeParseSectionType(StringRef &TypeName) { argument
406 TypeName = getTok().getString();
408 } else if (getParser().parseIdentifier(TypeName))
492 StringRef TypeName;
551 if (maybeParseSectionType(TypeName))
555 if (TypeName.empty()) {
584 if (TypeName.empty()) {
598 if (TypeName == "init_array")
600 else if (TypeName
[all...]
H A DWasmAsmParser.cpp189 auto TypeName = Lexer->getTok().getString();
190 if (TypeName == "function")
192 else if (TypeName == "global")
194 else if (TypeName == "object")
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.cpp245 std::string TypeName; member in class:__anon2921::CustomDfaEmitter
248 CustomDfaEmitter(const UniqueVector<ActionTuple> &Actions, StringRef TypeName) argument
249 : Actions(Actions), TypeName(TypeName) {}
374 void CustomDfaEmitter::printActionType(raw_ostream &OS) { OS << TypeName; } local
H A DDAGISelMatcher.h658 StringRef TypeName; member in class:llvm::CheckValueTypeMatcher
661 : Matcher(CheckValueType), TypeName(type_name) {}
663 StringRef getTypeName() const { return TypeName; }
672 return cast<CheckValueTypeMatcher>(M)->TypeName == TypeName;
H A DFastISelEmitter.cpp791 std::string TypeName = getName(VT);
792 OS << " case " << TypeName << ": return fastEmit_"
793 << getLegalCName(Opcode) << "_" << getLegalCName(TypeName) << "_";
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DConsumed.h98 /// \param TypeName -- The name of the unconsumable type.
100 StringRef TypeName) {}
99 warnReturnTypestateForUnconsumableType(SourceLocation Loc, StringRef TypeName) argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.h69 bool IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size);
H A DLinePrinter.cpp270 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size) { argument
271 if (IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp63 LLVM_YAML_STRONG_TYPEDEF(StringRef, TypeName)
65 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single)
67 StringRef ScalarTraits<TypeName>::input(StringRef S, void *V, TypeName &T) {
71 void ScalarTraits<TypeName>::output(const TypeName &T, void *V,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFAbstractMemberAccess.cpp699 std::string TypeName; local
734 TypeName = Ty->getName();
785 TypeName = CTy->getName();
796 assert(TypeName.size());
838 AccessKey = "llvm." + TypeName + ":" + std::to_string(InfoKind) + ":" +
H A DBTFDebug.cpp114 uint32_t OffsetInBits, StringRef TypeName)
115 : Name(TypeName) {
1243 StringRef TypeName = Fixup.first; local
1249 if (StructType->getName() == TypeName) {
1256 auto FwdTypeEntry = std::make_unique<BTFTypeFwd>(TypeName, IsUnion);
113 BTFTypeInt(uint32_t Encoding, uint32_t SizeInBits, uint32_t OffsetInBits, StringRef TypeName) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DAMDGPUMetadata.h158 constexpr char TypeName[] = "TypeName"; member in namespace:llvm::AMDGPU::HSAMD::AccessQualifier::AddressSpaceQualifier::ValueKind::ValueType::Kernel::Arg::Key

Completed in 167 milliseconds

12