Home
last modified time | relevance | path

Searched refs:HasName (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmWriter.cpp28 bool HasName = S.SectionType == WASM_SEC_CUSTOM; in createSectionHeader() local
30 if (HasName) in createSectionHeader()
38 if (HasName) { in createSectionHeader()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h107 bool HasName = V.hasName(); in transferNodesFromList() local
108 if (OldST && HasName) in transferNodesFromList()
111 if (NewST && HasName) in transferNodesFromList()
H A DValue.cpp55 SubclassData(0), NumUserOperands(0), IsUsedByMD(false), HasName(false), in Value()
282 if (!HasName) return nullptr; in getValueName()
295 assert(HasName == Ctx.pImpl->ValueNames.count(this) && in setValueName()
299 if (HasName) in setValueName()
301 HasName = false; in setValueName()
305 HasName = true; in setValueName()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h83 unsigned HasName : 1; variable
170 HasName = !!Name; in MCSymbol()
192 assert(HasName && "Name is required"); in getNameEntryPtr()
206 if (!HasName) in getName()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectDynamicValue.cpp54 if (m_dynamic_type_info.HasName()) in GetTypeName()
71 if (m_dynamic_type_info.HasName()) in GetQualifiedTypeName()
82 if (m_dynamic_type_info.HasName()) in GetDisplayTypeName()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp102 bool HasName; member in __anonc019d7680111::FieldEncoding
105 FieldEncoding(bool b, SmallStringEnc &e) : HasName(b), Enc(e.c_str()) {} in FieldEncoding()
108 if (HasName != rhs.HasName) return HasName; in operator <()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaModule.cpp943 bool HasName = false; in checkExportedDecl() local
947 HasName = (bool)ND->getDeclName(); in checkExportedDecl()
948 if (HasName && ND->getFormalLinkage() == Linkage::Internal) { in checkExportedDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.cpp1138 bool EHBlock, bool HasName) { in emitPPA1Flags() argument
1185 if (HasName) in emitPPA1Flags()
1345 bool HasName = in emitPPA1() local
1350 TargetHasVector && SavedVRMask != 0, NeedEmitEHBlock, HasName); in emitPPA1()
1416 if (HasName) in emitPPA1()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DValue.h112 unsigned HasName : 1;
261 bool hasName() const { return HasName; } in hasName()
118 unsigned HasName : 1; global() variable
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h771 bool HasName() const;
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp913 bool TypeAndOrName::HasName() const { return (bool)m_type_name; } in HasName() function in TypeAndOrName