Home
last modified time | relevance | path

Searched refs:IsDefined (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Object/
H A DRecordStreamer.cpp158 bool IsDefined = false; in flushSymverDirectives() local
179 IsDefined = true; in flushSymverDirectives()
188 if (Attr == MCSA_Invalid || !IsDefined) { in flushSymverDirectives()
206 IsDefined = IsDefined || !GV->isDeclarationForLinker(); in flushSymverDirectives()
217 const char *Separator = IsDefined ? "@@" : "@"; in flushSymverDirectives()
225 if (IsDefined) in flushSymverDirectives()
H A DWasmObjectFile.cpp490 bool IsDefined = (Info.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0; in parseLinkingSectionSymtab() local
496 IsDefined != isDefinedFunctionIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
499 if (IsDefined) { in parseLinkingSectionSymtab()
521 IsDefined != isDefinedGlobalIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
524 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
528 if (IsDefined) { in parseLinkingSectionSymtab()
549 if (IsDefined) { in parseLinkingSectionSymtab()
579 IsDefined != isDefinedEventIndex(Info.ElementIndex)) in parseLinkingSectionSymtab()
582 if (!IsDefined && (Info.Flags & wasm::WASM_SYMBOL_BINDING_MASK) == in parseLinkingSectionSymtab()
586 if (IsDefined) { in parseLinkingSectionSymtab()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86FixupBWInsts.cpp245 bool IsDefined = false; in getSuperRegDestIfDead() local
253 IsDefined = true; in getSuperRegDestIfDead()
264 if (!IsDefined) in getSuperRegDestIfDead()
/freebsd-12.1/contrib/llvm/lib/TableGen/
H A DTGLexer.h186 bool IsDefined; member
H A DTGLexer.cpp728 {Kind, !IfdefEntry.IsDefined, SMLoc::getFromPointer(TokStart)}); in lexPreprocessor()
994 if (!I->IsDefined) in prepIsProcessingEnabled()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DCompilerType.h96 bool IsDefined() const;
H A DTypeSystem.h152 virtual bool IsDefined(lldb::opaque_compiler_type_t type) = 0;
H A DClangASTContext.h567 bool IsDefined(lldb::opaque_compiler_type_t type) override;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp215 bool CompilerType::IsDefined() const { in IsDefined() function in CompilerType
217 return m_type_system->IsDefined(m_type); in IsDefined()
H A DType.cpp546 if (!m_compiler_type.IsDefined()) { in ResolveClangType()
H A DClangASTContext.cpp3651 bool ClangASTContext::IsDefined(lldb::opaque_compiler_type_t type) { in IsDefined() function in ClangASTContext
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DDeclObjC.h440 bool isDefined() const { return ObjCMethodDeclBits.IsDefined; } in isDefined()
441 void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; } in setDefined()
H A DDeclBase.h1572 uint64_t IsDefined : 1; variable