Home
last modified time | relevance | path

Searched refs:IsEmpty (Results 1 – 25 of 105) sorted by relevance

12345

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86AvoidTrailingCall.cpp109 bool IsEmpty = LastRealInstr == MBB.rend(); in runOnMachineFunction() local
110 bool IsCall = !IsEmpty && isCallInstruction(*LastRealInstr); in runOnMachineFunction()
111 if (IsEmpty || IsCall) { in runOnMachineFunction()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAranges.h40 bool IsEmpty() const { return m_aranges.IsEmpty(); } in IsEmpty() function
H A DDWARFCompileUnit.cpp112 if (!func_aranges.IsEmpty()) in LookupAddress()
H A DDWARFDebugInfoEntry.cpp375 if (ranges.IsEmpty()) { in GetDIENamesAndRanges()
390 if (ranges.IsEmpty() || name == nullptr || mangled == nullptr) { in GetDIENamesAndRanges()
399 return !ranges.IsEmpty(); in GetDIENamesAndRanges()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/
H A DConstString.h111 explicit operator bool() const { return !IsEmpty(); }
194 return (IsEmpty() ? value_if_empty : m_string);
304 bool IsEmpty() const { return m_string == nullptr || m_string[0] == '\0'; } in IsEmpty() function
/freebsd-13.1/contrib/googletest/googletest/test/
H A Dgoogletest-filepath-test.cc77 EXPECT_FALSE(original_dir.IsEmpty());
100 EXPECT_TRUE(FilePath("").IsEmpty()); in TEST()
104 EXPECT_FALSE(FilePath("a").IsEmpty()); in TEST()
105 EXPECT_FALSE(FilePath(".").IsEmpty()); in TEST()
106 EXPECT_FALSE(FilePath("a/b").IsEmpty()); in TEST()
107 EXPECT_FALSE(FilePath("a\\b\\").IsEmpty()); in TEST()
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-more-matchers.h61 MATCHER(IsEmpty, negation ? "isn't empty" : "is empty") {
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp245 if (contexts.IsEmpty()) { in GetPrintForDebuggerAddr()
248 if (contexts.IsEmpty()) in GetPrintForDebuggerAddr()
465 if (sc_list.IsEmpty()) in CalculateHasNewLiteralsAndIndexing()
468 return !sc_list.IsEmpty(); in CalculateHasNewLiteralsAndIndexing()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandHistory.h29 bool IsEmpty() const;
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DCXXFunctionPointer.cpp40 if (target && !target->GetSectionLoadList().IsEmpty()) { in CXXFunctionPointerSummaryProvider()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp144 module_spec.GetObjectName().IsEmpty() ? "" : "(", in Module()
145 module_spec.GetObjectName().IsEmpty() in Module()
148 module_spec.GetObjectName().IsEmpty() ? "" : ")"); in Module()
255 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in Module()
256 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""), in Module()
257 m_object_name.IsEmpty() ? "" : ")"); in Module()
285 m_file.GetPath().c_str(), m_object_name.IsEmpty() ? "" : "(", in ~Module()
286 m_object_name.IsEmpty() ? "" : m_object_name.AsCString(""), in ~Module()
287 m_object_name.IsEmpty() ? "" : ")"); in ~Module()
H A DFileSpecList.cpp67 bool compare_filename_only = file_spec.GetDirectory().IsEmpty(); in FindFileIndex()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DSectionLoadList.h37 bool IsEmpty() const;
H A DSectionLoadHistory.h37 bool IsEmpty() const;
H A DPathMappingList.h45 bool IsEmpty() const { return m_pairs.empty(); } in IsEmpty() function
/freebsd-13.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-filepath.h114 bool IsEmpty() const { return pathname_.empty(); } in IsEmpty() function
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DPragma.h118 bool IsEmpty() const { return Handlers.empty(); } in IsEmpty() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.cpp196 if (target.GetSectionLoadList().IsEmpty()) in FindLibCppStdFunctionCallableInfo()
348 if (target_sp->GetSectionLoadList().IsEmpty()) in GetStepThroughTrampolinePlan()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointSiteList.h155 bool IsEmpty() const { in IsEmpty() function
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DFileSpecList.h159 bool IsEmpty() const { return m_files.empty(); } in IsEmpty() function
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DBlock.cpp80 if (!m_ranges.IsEmpty()) { in Dump()
159 if (!m_ranges.IsEmpty()) { in DumpAddressRanges()
307 if (m_ranges.IsEmpty()) in GetStartAddress()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopNestAnalysis.cpp217 auto IsEmpty = [](const BasicBlock *BB) { in skipEmptyBlockUntil() local
225 while (BB && BB != End && IsEmpty(BB) && !Visited.count(BB) && in skipEmptyBlockUntil()
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandHistory.cpp21 bool CommandHistory::IsEmpty() const { in IsEmpty() function in CommandHistory
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h55 bool HasCategory() { return !GetCategory().IsEmpty(); } in HasCategory()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/
H A DDebug.h52 bool IsEmpty() const { return m_actions.empty(); } in IsEmpty() function

12345