| /freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/ |
| H A D | __clang_cuda_builtin_vars.h | 60 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \ argument 61 __attribute__((device)) TypeName() __DELETE; \ 62 __attribute__((device)) TypeName(const TypeName &) __DELETE; \ 63 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \ 64 __attribute__((device)) TypeName *operator&() const __DELETE
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-defines.h | 160 #define DISALLOW_COPY_AND_ASSIGN(TypeName) \ argument 161 TypeName(const TypeName &) = delete; \ 162 const TypeName &operator=(const TypeName &) = delete
|
| /freebsd-12.1/contrib/compiler-rt/lib/ubsan/ |
| H A D | ubsan_handlers_cxx.cc | 62 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 66 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 71 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 78 << DTI.getOffset() << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 79 << TypeName(DTI.getSubobjectTypeName()) in HandleDynamicTypeCacheMiss() 144 << TypeName(DTI.getMostDerivedTypeName()); in __ubsan_handle_cfi_bad_type()
|
| H A D | ubsan_diag.h | 117 class TypeName { 120 TypeName(const char *Name) : Name(Name) {} in TypeName() function 164 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {} in Arg() 215 Diag &operator<<(TypeName TN) { return AddArg(TN); } 263 bool IsVptrCheckSuppressed(const char *TypeName);
|
| H A D | ubsan_value.h | 94 char TypeName[1]; variable 111 const char *getTypeName() const { return TypeName; } in getTypeName()
|
| H A D | ubsan_diag.cc | 405 bool __ubsan::IsVptrCheckSuppressed(const char *TypeName) { in IsVptrCheckSuppressed() argument 409 return suppression_ctx->Match(TypeName, kVptrCheck, &s); in IsVptrCheckSuppressed()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 95 StringRef TypeName; in printTypeIndex() local 98 TypeName = TypeIndex::simpleTypeName(TI); in printTypeIndex() 100 TypeName = Types.getTypeName(TI); in printTypeIndex() 103 if (!TypeName.empty()) in printTypeIndex() 104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
|
| /freebsd-12.1/sys/contrib/dev/acpica/compiler/ |
| H A D | aslpredef.c | 726 char *TypeName; in ApCheckObjectType() local 744 TypeName = "Integer"; in ApCheckObjectType() 750 TypeName = "String"; in ApCheckObjectType() 756 TypeName = "Buffer"; in ApCheckObjectType() 763 TypeName = "Package"; in ApCheckObjectType() 784 TypeName = "Reference"; in ApCheckObjectType() 791 TypeName = UtGetOpName (Op->Asl.ParseOpcode); in ApCheckObjectType() 812 PredefinedName, TypeName, AslGbl_StringBuffer); in ApCheckObjectType() 817 PredefinedName, TypeName, PackageIndex, AslGbl_StringBuffer); in ApCheckObjectType()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | ELFAsmParser.cpp | 407 TypeName = getTok().getString(); in maybeParseSectionType() 493 StringRef TypeName; in ParseSectionArguments() local 556 if (TypeName.empty()) { in ParseSectionArguments() 585 if (TypeName.empty()) { in ParseSectionArguments() 599 if (TypeName == "init_array") in ParseSectionArguments() 601 else if (TypeName == "fini_array") in ParseSectionArguments() 605 else if (TypeName == "nobits") in ParseSectionArguments() 607 else if (TypeName == "progbits") in ParseSectionArguments() 609 else if (TypeName == "note") in ParseSectionArguments() 611 else if (TypeName == "unwind") in ParseSectionArguments() [all …]
|
| H A D | WasmAsmParser.cpp | 125 auto TypeName = Lexer->getTok().getString(); in parseDirectiveType() local 126 if (TypeName == "function") in parseDirectiveType() 128 else if (TypeName == "global") in parseDirectiveType()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUHSAMetadataStreamer.cpp | 134 auto Signed = !TypeName.startswith("u"); in getValueType() 155 return getValueType(Ty->getPointerElementType(), TypeName); in getValueType() 157 return getValueType(Ty->getVectorElementType(), TypeName); in getValueType() 336 StringRef TypeName; in emitKernelArg() local 380 StringRef TypeName, in emitKernelArg() argument 387 Arg.mTypeName = TypeName; in emitKernelArg() 590 auto Signed = !TypeName.startswith("u"); in getValueType() 613 return getValueType(Ty->getVectorElementType(), TypeName); in getValueType() 780 StringRef TypeName; in emitKernelArg() local 827 StringRef TypeName, in emitKernelArg() argument [all …]
|
| H A D | AMDGPUHSAMetadataStreamer.h | 69 StringRef getValueType(Type *Ty, StringRef TypeName) const; 96 StringRef TypeName = "", StringRef BaseTypeName = "", 139 ValueType getValueType(Type *Ty, StringRef TypeName) const; 166 StringRef Name = "", StringRef TypeName = "",
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | InheritViz.cpp | 80 std::string TypeName = Type.getAsString(); in WriteNode() local 81 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName); in WriteNode() 86 if (TypeName != CanonType.getAsString()) { in WriteNode()
|
| H A D | QualTypeNames.cpp | 23 namespace TypeName { namespace 222 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier() 229 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier() 251 return TypeName::createNestedNameSpecifier(Ctx, TD, in getFullyQualifiedNestedNameSpecifier() 255 return TypeName::createNestedNameSpecifier(Ctx, TDD->getDecl(), in getFullyQualifiedNestedNameSpecifier()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/Instrumentation/ |
| H A D | EfficiencySanitizer.cpp | 323 GlobalVariable *&TypeName, GlobalVariable *&Offset, in createCacheFragAuxGV() argument 329 TypeName = new GlobalVariable(M, TypeNameArrayTy, true, in createCacheFragAuxGV() 357 TypeName->setInitializer(ConstantArray::get(TypeNameArrayTy, TypeNameVec)); in createCacheFragAuxGV() 432 GlobalVariable *TypeName = nullptr, *Offset = nullptr, *Size = nullptr; in createCacheFragInfoGV() local 434 createCacheFragAuxGV(M, DL, StructTy, TypeName, Offset, Size); in createCacheFragInfoGV() 454 TypeName == nullptr in createCacheFragInfoGV() 456 : ConstantExpr::getPointerCast(TypeName, Int8PtrPtrTy), in createCacheFragInfoGV()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | QualTypeNames.h | 65 namespace TypeName {
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 64 LLVM_YAML_STRONG_TYPEDEF(StringRef, TypeName) in LLVM_YAML_IS_SEQUENCE_VECTOR() 66 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single) in LLVM_YAML_IS_SEQUENCE_VECTOR() 68 StringRef ScalarTraits<TypeName>::input(StringRef S, void *V, TypeName &T) { in LLVM_YAML_IS_SEQUENCE_VECTOR() 72 void ScalarTraits<TypeName>::output(const TypeName &T, void *V, in output()
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | DAGISelMatcher.h | 632 StringRef TypeName; variable 635 : Matcher(CheckValueType), TypeName(type_name) {} in CheckValueTypeMatcher() 637 StringRef getTypeName() const { return TypeName; } in getTypeName() 646 return cast<CheckValueTypeMatcher>(M)->TypeName == TypeName; in isEqualImpl()
|
| H A D | FastISelEmitter.cpp | 792 std::string TypeName = getName(VT); in printFunctionDefinitions() local 793 OS << " case " << TypeName << ": return fastEmit_" in printFunctionDefinitions() 794 << getLegalCName(Opcode) << "_" << getLegalCName(TypeName) << "_"; in printFunctionDefinitions()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | LinePrinter.cpp | 272 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size) { in IsTypeExcluded() argument 273 if (IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters)) in IsTypeExcluded()
|
| H A D | LinePrinter.h | 70 bool IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size);
|
| /freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/AsmParser/ |
| H A D | WebAssemblyAsmParser.cpp | 574 auto TypeName = expectIdent(); in ParseDirective() local 575 if (TypeName.empty()) in ParseDirective() 577 auto Type = parseType(TypeName); in ParseDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ |
| H A D | Consumed.h | 101 StringRef TypeName) {} in warnReturnTypestateForUnconsumableType() argument
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | AMDGPUMetadata.h | 157 constexpr char TypeName[] = "TypeName"; variable
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | BasicObjCFoundationChecks.cpp | 781 StringRef TypeName = GetReceiverInterfaceName(msg); in checkPreObjCMessage() local 782 if (!TypeName.empty()) in checkPreObjCMessage() 783 os << "Argument to '" << TypeName << "' method '"; in checkPreObjCMessage()
|