Searched refs:IsDefined (Results 1 - 17 of 17) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/Object/
H A DRecordStreamer.cpp153 bool IsDefined = false; local
174 IsDefined = true;
183 if (Attr == MCSA_Invalid || !IsDefined) {
201 IsDefined = IsDefined || !GV->isDeclarationForLinker();
212 const char *Separator = IsDefined ? "@@" : "@";
220 if (IsDefined)
H A DWasmObjectFile.cpp637 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; local
643 IsDefined != isDefinedFunctionIndex(Info.ElementIndex))
646 if (IsDefined) {
669 IsDefined != isDefinedGlobalIndex(Info.ElementIndex))
672 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) ==
676 if (IsDefined) {
699 IsDefined != isDefinedTableNumber(Info.ElementIndex))
702 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) ==
706 if (IsDefined) {
728 if (IsDefined) {
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp259 bool IsDefined = false;
267 IsDefined = true;
278 if (!IsDefined)
/freebsd-current/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp777 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)});
1042 if (!I.IsDefined)
H A DTGLexer.h286 // with an inverted IsDefined value.
301 bool IsDefined; member in struct:llvm::TGLexer::PreprocessorControlDesc
478 // controls on the stack have their IsDefined member set to true.
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/
H A DJITLink.h114 Addressable(orc::ExecutorAddr Address, bool IsDefined) argument
115 : Address(Address), IsDefined(IsDefined), IsAbsolute(false) {}
118 : Address(Address), IsDefined(false), IsAbsolute(true) {
119 assert(!(IsDefined && IsAbsolute) &&
134 bool isDefined() const { return static_cast<bool>(IsDefined); }
139 assert(!IsDefined && "Cannot change the Absolute flag on a defined block");
144 uint64_t IsDefined : 1;
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h144 bool IsDefined() const;
H A DTypeSystem.h158 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
/freebsd-current/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp231 bool CompilerType::IsDefined() const { function in class:CompilerType
234 return type_system_sp->IsDefined(m_type);
H A DType.cpp699 if (!m_compiler_type.IsDefined()) {
/freebsd-current/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DMasmParser.cpp6526 bool IsDefined = false; local
6529 IsDefined =
6531 if (!IsDefined) {
6537 IsDefined = true;
6539 IsDefined = true;
6542 IsDefined = (Sym && !Sym->isUndefined(false));
6554 if (IsDefined == ExpectDefined)
/freebsd-current/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h452 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; }
453 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; }
H A DDeclBase.h1869 uint64_t IsDefined : 1;
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h648 bool IsDefined(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3405 bool TypeSystemClang::IsDefined(lldb::opaque_compiler_type_t type) { function in class:TypeSystemClang
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1668 bool IsDefined = false; member in struct:__anon2291::AMDGPUAsmParser::OperandInfoTy
7226 Op.IsDefined = true;
7236 Stream.IsDefined = true;
7268 if (Strict && (msgRequiresOp(Msg.Id, getSTI()) != Op.IsDefined)) {
7269 if (Op.IsDefined) {
7281 Stream.IsDefined) {
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp212 // inside type_sp and only looks at IsDefined(), so it never calls
216 if (pcm_type.IsDefined())

Completed in 417 milliseconds